Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

/**
 * Autogenerated by Thrift Compiler (0.7.0)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 */
package in.shop2020.warehouse;

import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class TransferInvoiceScan implements org.apache.thrift.TBase<TransferInvoiceScan, TransferInvoiceScan._Fields>, java.io.Serializable, Cloneable {
  private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TransferInvoiceScan");

  private static final org.apache.thrift.protocol.TField SHIPMENT_REFERENCE_FIELD_DESC = new org.apache.thrift.protocol.TField("shipmentReference", org.apache.thrift.protocol.TType.STRING, (short)1);
  private static final org.apache.thrift.protocol.TField TRANSFER_LOT_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("transferLotId", org.apache.thrift.protocol.TType.I64, (short)2);
  private static final org.apache.thrift.protocol.TField SOURCE_FIELD_DESC = new org.apache.thrift.protocol.TField("source", org.apache.thrift.protocol.TType.STRING, (short)3);
  private static final org.apache.thrift.protocol.TField QUANTITY_FIELD_DESC = new org.apache.thrift.protocol.TField("quantity", org.apache.thrift.protocol.TType.I64, (short)4);
  private static final org.apache.thrift.protocol.TField INVENTORY_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("inventoryType", org.apache.thrift.protocol.TType.STRING, (short)5);
  private static final org.apache.thrift.protocol.TField DATE_FIELD_DESC = new org.apache.thrift.protocol.TField("date", org.apache.thrift.protocol.TType.I64, (short)6);
  private static final org.apache.thrift.protocol.TField SCANNED_QUANTITY_FIELD_DESC = new org.apache.thrift.protocol.TField("scannedQuantity", org.apache.thrift.protocol.TType.I64, (short)7);

  private String shipmentReference; // required
  private long transferLotId; // required
  private String source; // required
  private long quantity; // required
  private String inventoryType; // required
  private long date; // required
  private long scannedQuantity; // required

  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
  public enum _Fields implements org.apache.thrift.TFieldIdEnum {
    SHIPMENT_REFERENCE((short)1, "shipmentReference"),
    TRANSFER_LOT_ID((short)2, "transferLotId"),
    SOURCE((short)3, "source"),
    QUANTITY((short)4, "quantity"),
    INVENTORY_TYPE((short)5, "inventoryType"),
    DATE((short)6, "date"),
    SCANNED_QUANTITY((short)7, "scannedQuantity");

    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();

    static {
      for (_Fields field : EnumSet.allOf(_Fields.class)) {
        byName.put(field.getFieldName(), field);
      }
    }

    /**
     * Find the _Fields constant that matches fieldId, or null if its not found.
     */
    public static _Fields findByThriftId(int fieldId) {
      switch(fieldId) {
        case 1: // SHIPMENT_REFERENCE
          return SHIPMENT_REFERENCE;
        case 2: // TRANSFER_LOT_ID
          return TRANSFER_LOT_ID;
        case 3: // SOURCE
          return SOURCE;
        case 4: // QUANTITY
          return QUANTITY;
        case 5: // INVENTORY_TYPE
          return INVENTORY_TYPE;
        case 6: // DATE
          return DATE;
        case 7: // SCANNED_QUANTITY
          return SCANNED_QUANTITY;
        default:
          return null;
      }
    }

    /**
     * Find the _Fields constant that matches fieldId, throwing an exception
     * if it is not found.
     */
    public static _Fields findByThriftIdOrThrow(int fieldId) {
      _Fields fields = findByThriftId(fieldId);
      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
      return fields;
    }

    /**
     * Find the _Fields constant that matches name, or null if its not found.
     */
    public static _Fields findByName(String name) {
      return byName.get(name);
    }

    private final short _thriftId;
    private final String _fieldName;

    _Fields(short thriftId, String fieldName) {
      _thriftId = thriftId;
      _fieldName = fieldName;
    }

    public short getThriftFieldId() {
      return _thriftId;
    }

    public String getFieldName() {
      return _fieldName;
    }
  }

  // isset id assignments
  private static final int __TRANSFERLOTID_ISSET_ID = 0;
  private static final int __QUANTITY_ISSET_ID = 1;
  private static final int __DATE_ISSET_ID = 2;
  private static final int __SCANNEDQUANTITY_ISSET_ID = 3;
  private BitSet __isset_bit_vector = new BitSet(4);

  public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
  static {
    Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
    tmpMap.put(_Fields.SHIPMENT_REFERENCE, new org.apache.thrift.meta_data.FieldMetaData("shipmentReference", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
    tmpMap.put(_Fields.TRANSFER_LOT_ID, new org.apache.thrift.meta_data.FieldMetaData("transferLotId", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
    tmpMap.put(_Fields.SOURCE, new org.apache.thrift.meta_data.FieldMetaData("source", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
    tmpMap.put(_Fields.QUANTITY, new org.apache.thrift.meta_data.FieldMetaData("quantity", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
    tmpMap.put(_Fields.INVENTORY_TYPE, new org.apache.thrift.meta_data.FieldMetaData("inventoryType", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
    tmpMap.put(_Fields.DATE, new org.apache.thrift.meta_data.FieldMetaData("date", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
    tmpMap.put(_Fields.SCANNED_QUANTITY, new org.apache.thrift.meta_data.FieldMetaData("scannedQuantity", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
    metaDataMap = Collections.unmodifiableMap(tmpMap);
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TransferInvoiceScan.class, metaDataMap);
  }

  public TransferInvoiceScan() {
  }

  public TransferInvoiceScan(
    String shipmentReference,
    long transferLotId,
    String source,
    long quantity,
    String inventoryType,
    long date,
    long scannedQuantity)
  {
    this();
    this.shipmentReference = shipmentReference;
    this.transferLotId = transferLotId;
    setTransferLotIdIsSet(true);
    this.source = source;
    this.quantity = quantity;
    setQuantityIsSet(true);
    this.inventoryType = inventoryType;
    this.date = date;
    setDateIsSet(true);
    this.scannedQuantity = scannedQuantity;
    setScannedQuantityIsSet(true);
  }

  /**
   * Performs a deep copy on <i>other</i>.
   */
  public TransferInvoiceScan(TransferInvoiceScan other) {
    __isset_bit_vector.clear();
    __isset_bit_vector.or(other.__isset_bit_vector);
    if (other.isSetShipmentReference()) {
      this.shipmentReference = other.shipmentReference;
    }
    this.transferLotId = other.transferLotId;
    if (other.isSetSource()) {
      this.source = other.source;
    }
    this.quantity = other.quantity;
    if (other.isSetInventoryType()) {
      this.inventoryType = other.inventoryType;
    }
    this.date = other.date;
    this.scannedQuantity = other.scannedQuantity;
  }

  public TransferInvoiceScan deepCopy() {
    return new TransferInvoiceScan(this);
  }

  @Override
  public void clear() {
    this.shipmentReference = null;
    setTransferLotIdIsSet(false);
    this.transferLotId = 0;
    this.source = null;
    setQuantityIsSet(false);
    this.quantity = 0;
    this.inventoryType = null;
    setDateIsSet(false);
    this.date = 0;
    setScannedQuantityIsSet(false);
    this.scannedQuantity = 0;
  }

  public String getShipmentReference() {
    return this.shipmentReference;
  }

  public void setShipmentReference(String shipmentReference) {
    this.shipmentReference = shipmentReference;
  }

  public void unsetShipmentReference() {
    this.shipmentReference = null;
  }

  /** Returns true if field shipmentReference is set (has been assigned a value) and false otherwise */
  public boolean isSetShipmentReference() {
    return this.shipmentReference != null;
  }

  public void setShipmentReferenceIsSet(boolean value) {
    if (!value) {
      this.shipmentReference = null;
    }
  }

  public long getTransferLotId() {
    return this.transferLotId;
  }

  public void setTransferLotId(long transferLotId) {
    this.transferLotId = transferLotId;
    setTransferLotIdIsSet(true);
  }

  public void unsetTransferLotId() {
    __isset_bit_vector.clear(__TRANSFERLOTID_ISSET_ID);
  }

  /** Returns true if field transferLotId is set (has been assigned a value) and false otherwise */
  public boolean isSetTransferLotId() {
    return __isset_bit_vector.get(__TRANSFERLOTID_ISSET_ID);
  }

  public void setTransferLotIdIsSet(boolean value) {
    __isset_bit_vector.set(__TRANSFERLOTID_ISSET_ID, value);
  }

  public String getSource() {
    return this.source;
  }

  public void setSource(String source) {
    this.source = source;
  }

  public void unsetSource() {
    this.source = null;
  }

  /** Returns true if field source is set (has been assigned a value) and false otherwise */
  public boolean isSetSource() {
    return this.source != null;
  }

  public void setSourceIsSet(boolean value) {
    if (!value) {
      this.source = null;
    }
  }

  public long getQuantity() {
    return this.quantity;
  }

  public void setQuantity(long quantity) {
    this.quantity = quantity;
    setQuantityIsSet(true);
  }

  public void unsetQuantity() {
    __isset_bit_vector.clear(__QUANTITY_ISSET_ID);
  }

  /** Returns true if field quantity is set (has been assigned a value) and false otherwise */
  public boolean isSetQuantity() {
    return __isset_bit_vector.get(__QUANTITY_ISSET_ID);
  }

  public void setQuantityIsSet(boolean value) {
    __isset_bit_vector.set(__QUANTITY_ISSET_ID, value);
  }

  public String getInventoryType() {
    return this.inventoryType;
  }

  public void setInventoryType(String inventoryType) {
    this.inventoryType = inventoryType;
  }

  public void unsetInventoryType() {
    this.inventoryType = null;
  }

  /** Returns true if field inventoryType is set (has been assigned a value) and false otherwise */
  public boolean isSetInventoryType() {
    return this.inventoryType != null;
  }

  public void setInventoryTypeIsSet(boolean value) {
    if (!value) {
      this.inventoryType = null;
    }
  }

  public long getDate() {
    return this.date;
  }

  public void setDate(long date) {
    this.date = date;
    setDateIsSet(true);
  }

  public void unsetDate() {
    __isset_bit_vector.clear(__DATE_ISSET_ID);
  }

  /** Returns true if field date is set (has been assigned a value) and false otherwise */
  public boolean isSetDate() {
    return __isset_bit_vector.get(__DATE_ISSET_ID);
  }

  public void setDateIsSet(boolean value) {
    __isset_bit_vector.set(__DATE_ISSET_ID, value);
  }

  public long getScannedQuantity() {
    return this.scannedQuantity;
  }

  public void setScannedQuantity(long scannedQuantity) {
    this.scannedQuantity = scannedQuantity;
    setScannedQuantityIsSet(true);
  }

  public void unsetScannedQuantity() {
    __isset_bit_vector.clear(__SCANNEDQUANTITY_ISSET_ID);
  }

  /** Returns true if field scannedQuantity is set (has been assigned a value) and false otherwise */
  public boolean isSetScannedQuantity() {
    return __isset_bit_vector.get(__SCANNEDQUANTITY_ISSET_ID);
  }

  public void setScannedQuantityIsSet(boolean value) {
    __isset_bit_vector.set(__SCANNEDQUANTITY_ISSET_ID, value);
  }

  public void setFieldValue(_Fields field, Object value) {
    switch (field) {
    case SHIPMENT_REFERENCE:
      if (value == null) {
        unsetShipmentReference();
      } else {
        setShipmentReference((String)value);
      }
      break;

    case TRANSFER_LOT_ID:
      if (value == null) {
        unsetTransferLotId();
      } else {
        setTransferLotId((Long)value);
      }
      break;

    case SOURCE:
      if (value == null) {
        unsetSource();
      } else {
        setSource((String)value);
      }
      break;

    case QUANTITY:
      if (value == null) {
        unsetQuantity();
      } else {
        setQuantity((Long)value);
      }
      break;

    case INVENTORY_TYPE:
      if (value == null) {
        unsetInventoryType();
      } else {
        setInventoryType((String)value);
      }
      break;

    case DATE:
      if (value == null) {
        unsetDate();
      } else {
        setDate((Long)value);
      }
      break;

    case SCANNED_QUANTITY:
      if (value == null) {
        unsetScannedQuantity();
      } else {
        setScannedQuantity((Long)value);
      }
      break;

    }
  }

  public Object getFieldValue(_Fields field) {
    switch (field) {
    case SHIPMENT_REFERENCE:
      return getShipmentReference();

    case TRANSFER_LOT_ID:
      return Long.valueOf(getTransferLotId());

    case SOURCE:
      return getSource();

    case QUANTITY:
      return Long.valueOf(getQuantity());

    case INVENTORY_TYPE:
      return getInventoryType();

    case DATE:
      return Long.valueOf(getDate());

    case SCANNED_QUANTITY:
      return Long.valueOf(getScannedQuantity());

    }
    throw new IllegalStateException();
  }

  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
  public boolean isSet(_Fields field) {
    if (field == null) {
      throw new IllegalArgumentException();
    }

    switch (field) {
    case SHIPMENT_REFERENCE:
      return isSetShipmentReference();
    case TRANSFER_LOT_ID:
      return isSetTransferLotId();
    case SOURCE:
      return isSetSource();
    case QUANTITY:
      return isSetQuantity();
    case INVENTORY_TYPE:
      return isSetInventoryType();
    case DATE:
      return isSetDate();
    case SCANNED_QUANTITY:
      return isSetScannedQuantity();
    }
    throw new IllegalStateException();
  }

  @Override
  public boolean equals(Object that) {
    if (that == null)
      return false;
    if (that instanceof TransferInvoiceScan)
      return this.equals((TransferInvoiceScan)that);
    return false;
  }

  public boolean equals(TransferInvoiceScan that) {
    if (that == null)
      return false;

    boolean this_present_shipmentReference = true && this.isSetShipmentReference();
    boolean that_present_shipmentReference = true && that.isSetShipmentReference();
    if (this_present_shipmentReference || that_present_shipmentReference) {
      if (!(this_present_shipmentReference && that_present_shipmentReference))
        return false;
      if (!this.shipmentReference.equals(that.shipmentReference))
        return false;
    }

    boolean this_present_transferLotId = true;
    boolean that_present_transferLotId = true;
    if (this_present_transferLotId || that_present_transferLotId) {
      if (!(this_present_transferLotId && that_present_transferLotId))
        return false;
      if (this.transferLotId != that.transferLotId)
        return false;
    }

    boolean this_present_source = true && this.isSetSource();
    boolean that_present_source = true && that.isSetSource();
    if (this_present_source || that_present_source) {
      if (!(this_present_source && that_present_source))
        return false;
      if (!this.source.equals(that.source))
        return false;
    }

    boolean this_present_quantity = true;
    boolean that_present_quantity = true;
    if (this_present_quantity || that_present_quantity) {
      if (!(this_present_quantity && that_present_quantity))
        return false;
      if (this.quantity != that.quantity)
        return false;
    }

    boolean this_present_inventoryType = true && this.isSetInventoryType();
    boolean that_present_inventoryType = true && that.isSetInventoryType();
    if (this_present_inventoryType || that_present_inventoryType) {
      if (!(this_present_inventoryType && that_present_inventoryType))
        return false;
      if (!this.inventoryType.equals(that.inventoryType))
        return false;
    }

    boolean this_present_date = true;
    boolean that_present_date = true;
    if (this_present_date || that_present_date) {
      if (!(this_present_date && that_present_date))
        return false;
      if (this.date != that.date)
        return false;
    }

    boolean this_present_scannedQuantity = true;
    boolean that_present_scannedQuantity = true;
    if (this_present_scannedQuantity || that_present_scannedQuantity) {
      if (!(this_present_scannedQuantity && that_present_scannedQuantity))
        return false;
      if (this.scannedQuantity != that.scannedQuantity)
        return false;
    }

    return true;
  }

  @Override
  public int hashCode() {
    return 0;
  }

  public int compareTo(TransferInvoiceScan other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;
    TransferInvoiceScan typedOther = (TransferInvoiceScan)other;

    lastComparison = Boolean.valueOf(isSetShipmentReference()).compareTo(typedOther.isSetShipmentReference());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetShipmentReference()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.shipmentReference, typedOther.shipmentReference);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetTransferLotId()).compareTo(typedOther.isSetTransferLotId());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetTransferLotId()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transferLotId, typedOther.transferLotId);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetSource()).compareTo(typedOther.isSetSource());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetSource()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.source, typedOther.source);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetQuantity()).compareTo(typedOther.isSetQuantity());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetQuantity()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.quantity, typedOther.quantity);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetInventoryType()).compareTo(typedOther.isSetInventoryType());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetInventoryType()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.inventoryType, typedOther.inventoryType);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetDate()).compareTo(typedOther.isSetDate());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetDate()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.date, typedOther.date);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetScannedQuantity()).compareTo(typedOther.isSetScannedQuantity());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetScannedQuantity()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.scannedQuantity, typedOther.scannedQuantity);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    return 0;
  }

  public _Fields fieldForId(int fieldId) {
    return _Fields.findByThriftId(fieldId);
  }

  public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
    org.apache.thrift.protocol.TField field;
    iprot.readStructBegin();
    while (true)
    {
      field = iprot.readFieldBegin();
      if (field.type == org.apache.thrift.protocol.TType.STOP) { 
        break;
      }
      switch (field.id) {
        case 1: // SHIPMENT_REFERENCE
          if (field.type == org.apache.thrift.protocol.TType.STRING) {
            this.shipmentReference = iprot.readString();
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 2: // TRANSFER_LOT_ID
          if (field.type == org.apache.thrift.protocol.TType.I64) {
            this.transferLotId = iprot.readI64();
            setTransferLotIdIsSet(true);
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 3: // SOURCE
          if (field.type == org.apache.thrift.protocol.TType.STRING) {
            this.source = iprot.readString();
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 4: // QUANTITY
          if (field.type == org.apache.thrift.protocol.TType.I64) {
            this.quantity = iprot.readI64();
            setQuantityIsSet(true);
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 5: // INVENTORY_TYPE
          if (field.type == org.apache.thrift.protocol.TType.STRING) {
            this.inventoryType = iprot.readString();
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 6: // DATE
          if (field.type == org.apache.thrift.protocol.TType.I64) {
            this.date = iprot.readI64();
            setDateIsSet(true);
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 7: // SCANNED_QUANTITY
          if (field.type == org.apache.thrift.protocol.TType.I64) {
            this.scannedQuantity = iprot.readI64();
            setScannedQuantityIsSet(true);
          } else { 
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
          }
          break;
        default:
          org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
      }
      iprot.readFieldEnd();
    }
    iprot.readStructEnd();
    validate();
  }

  public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
    validate();

    oprot.writeStructBegin(STRUCT_DESC);
    if (this.shipmentReference != null) {
      oprot.writeFieldBegin(SHIPMENT_REFERENCE_FIELD_DESC);
      oprot.writeString(this.shipmentReference);
      oprot.writeFieldEnd();
    }
    oprot.writeFieldBegin(TRANSFER_LOT_ID_FIELD_DESC);
    oprot.writeI64(this.transferLotId);
    oprot.writeFieldEnd();
    if (this.source != null) {
      oprot.writeFieldBegin(SOURCE_FIELD_DESC);
      oprot.writeString(this.source);
      oprot.writeFieldEnd();
    }
    oprot.writeFieldBegin(QUANTITY_FIELD_DESC);
    oprot.writeI64(this.quantity);
    oprot.writeFieldEnd();
    if (this.inventoryType != null) {
      oprot.writeFieldBegin(INVENTORY_TYPE_FIELD_DESC);
      oprot.writeString(this.inventoryType);
      oprot.writeFieldEnd();
    }
    oprot.writeFieldBegin(DATE_FIELD_DESC);
    oprot.writeI64(this.date);
    oprot.writeFieldEnd();
    oprot.writeFieldBegin(SCANNED_QUANTITY_FIELD_DESC);
    oprot.writeI64(this.scannedQuantity);
    oprot.writeFieldEnd();
    oprot.writeFieldStop();
    oprot.writeStructEnd();
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder("TransferInvoiceScan(");
    boolean first = true;

    sb.append("shipmentReference:");
    if (this.shipmentReference == null) {
      sb.append("null");
    } else {
      sb.append(this.shipmentReference);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("transferLotId:");
    sb.append(this.transferLotId);
    first = false;
    if (!first) sb.append(", ");
    sb.append("source:");
    if (this.source == null) {
      sb.append("null");
    } else {
      sb.append(this.source);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("quantity:");
    sb.append(this.quantity);
    first = false;
    if (!first) sb.append(", ");
    sb.append("inventoryType:");
    if (this.inventoryType == null) {
      sb.append("null");
    } else {
      sb.append(this.inventoryType);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("date:");
    sb.append(this.date);
    first = false;
    if (!first) sb.append(", ");
    sb.append("scannedQuantity:");
    sb.append(this.scannedQuantity);
    first = false;
    sb.append(")");
    return sb.toString();
  }

  public void validate() throws org.apache.thrift.TException {
    // check for required fields
  }

  private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
    try {
      write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
    } catch (org.apache.thrift.TException te) {
      throw new java.io.IOException(te);
    }
  }

  private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
    try {
      // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
      __isset_bit_vector = new BitSet(1);
      read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
    } catch (org.apache.thrift.TException te) {
      throw new java.io.IOException(te);
    }
  }

}