Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RetrieveInventoryPhysicalCountResponse"/> class.
 /// </summary>
 /// <param name="errors">errors.</param>
 /// <param name="count">count.</param>
 public RetrieveInventoryPhysicalCountResponse(
     IList <Models.Error> errors         = null,
     Models.InventoryPhysicalCount count = null)
 {
     this.Errors = errors;
     this.Count  = count;
 }
Example #2
0
 public InventoryChange(string type = null,
                        Models.InventoryPhysicalCount physicalCount = null,
                        Models.InventoryAdjustment adjustment       = null,
                        Models.InventoryTransfer transfer           = null)
 {
     Type          = type;
     PhysicalCount = physicalCount;
     Adjustment    = adjustment;
     Transfer      = transfer;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="InventoryChange"/> class.
 /// </summary>
 /// <param name="type">type.</param>
 /// <param name="physicalCount">physical_count.</param>
 /// <param name="adjustment">adjustment.</param>
 /// <param name="transfer">transfer.</param>
 /// <param name="measurementUnit">measurement_unit.</param>
 /// <param name="measurementUnitId">measurement_unit_id.</param>
 public InventoryChange(
     string type = null,
     Models.InventoryPhysicalCount physicalCount   = null,
     Models.InventoryAdjustment adjustment         = null,
     Models.InventoryTransfer transfer             = null,
     Models.CatalogMeasurementUnit measurementUnit = null,
     string measurementUnitId = null)
 {
     this.Type              = type;
     this.PhysicalCount     = physicalCount;
     this.Adjustment        = adjustment;
     this.Transfer          = transfer;
     this.MeasurementUnit   = measurementUnit;
     this.MeasurementUnitId = measurementUnitId;
 }
Example #4
0
 public Builder PhysicalCount(Models.InventoryPhysicalCount physicalCount)
 {
     this.physicalCount = physicalCount;
     return(this);
 }
 public Builder Count(Models.InventoryPhysicalCount count)
 {
     this.count = count;
     return(this);
 }
 public Builder PhysicalCount(Models.InventoryPhysicalCount value)
 {
     physicalCount = value;
     return(this);
 }