/// <summary>
 /// Initializes a new instance of the <see cref="OrderFulfillment" /> class.
 /// </summary>
 /// <param name="Uid">Unique ID that identifies the fulfillment only within this order..</param>
 /// <param name="Type">The type of the fulfillment. See [OrderFulfillmentType](#type-orderfulfillmenttype) for possible values.</param>
 /// <param name="State">The state of the fulfillment. See [OrderFulfillmentState](#type-orderfulfillmentstate) for possible values.</param>
 /// <param name="PickupDetails">Contains details for a pickup fulfillment. Required when fulfillment type is &#x60;PICKUP&#x60;..</param>
 /// <param name="ShipmentDetails">Contains details for a shipment fulfillment. Required when fulfillment type is &#x60;SHIPMENT&#x60;.  A shipment fulfillment&#39;s relationship to fulfillment &#x60;state&#x60;: &#x60;PROPOSED&#x60;: A shipment is requested. &#x60;RESERVED&#x60;: Fulfillment accepted. Shipment processing. &#x60;PREPARED&#x60;: Shipment packaged. Shipping label created. &#x60;COMPLETED&#x60;: Package has been shipped. &#x60;CANCELED&#x60;: Shipment has been canceled. &#x60;FAILED&#x60;: Shipment has failed..</param>
 public OrderFulfillment(string Uid = default(string), string Type = default(string), string State = default(string), OrderFulfillmentPickupDetails PickupDetails = default(OrderFulfillmentPickupDetails), OrderFulfillmentShipmentDetails ShipmentDetails = default(OrderFulfillmentShipmentDetails))
 {
     this.Uid             = Uid;
     this.Type            = Type;
     this.State           = State;
     this.PickupDetails   = PickupDetails;
     this.ShipmentDetails = ShipmentDetails;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="OrderFulfillment" /> class.
 /// </summary>
 /// <param name="Uid">[beta] Unique ID that identifies the fulfillment only within this order..</param>
 /// <param name="Type">The type of the fulfillment. See [OrderFulfillmentType](#type-orderfulfillmenttype) for possible values.</param>
 /// <param name="State">The state of the fulfillment. See [OrderFulfillmentState](#type-orderfulfillmentstate) for possible values.</param>
 /// <param name="Metadata">[beta] Application-defined data attached to this fulfillment. Metadata fields are intended to store descriptive references or associations with an entity in another system or store brief information about the object. Square does not process this field; it only stores and returns it in relevant API calls. Do not use metadata to store any sensitive information (personally identifiable information, card details, etc.).  Keys written by applications must be 60 characters or less and must be in the character set &#x60;[a-zA-Z0-9_-]&#x60;. Entries may also include metadata generated by Square. These keys are prefixed with a namespace, separated from the key with a &#39;:&#39; character.  Values have a max length of 255 characters.  An application may have up to 10 entries per metadata field.  Entries written by applications are private and can only be read or modified by the same application.  See [Metadata](https://developer.squareup.com/docs/build-basics/metadata) for more information..</param>
 /// <param name="PickupDetails">Contains details for a pickup fulfillment. Required when fulfillment type is &#x60;PICKUP&#x60;..</param>
 /// <param name="ShipmentDetails">Contains details for a shipment fulfillment. Required when fulfillment type is &#x60;SHIPMENT&#x60;.  A shipment fulfillment&#39;s relationship to fulfillment &#x60;state&#x60;: &#x60;PROPOSED&#x60;: A shipment is requested. &#x60;RESERVED&#x60;: Fulfillment accepted. Shipment processing. &#x60;PREPARED&#x60;: Shipment packaged. Shipping label created. &#x60;COMPLETED&#x60;: Package has been shipped. &#x60;CANCELED&#x60;: Shipment has been canceled. &#x60;FAILED&#x60;: Shipment has failed..</param>
 public OrderFulfillment(string Uid = default(string), string Type = default(string), string State = default(string), Dictionary <string, string> Metadata = default(Dictionary <string, string>), OrderFulfillmentPickupDetails PickupDetails = default(OrderFulfillmentPickupDetails), OrderFulfillmentShipmentDetails ShipmentDetails = default(OrderFulfillmentShipmentDetails))
 {
     this.Uid             = Uid;
     this.Type            = Type;
     this.State           = State;
     this.Metadata        = Metadata;
     this.PickupDetails   = PickupDetails;
     this.ShipmentDetails = ShipmentDetails;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OrderFulfillment" /> class.
 /// </summary>
 /// <param name="Type">The type of the fulfillment. See [OrderFulfillmentType](#type-orderfulfillmenttype) for possible values.</param>
 /// <param name="State">The state of the fulfillment. See [OrderFulfillmentState](#type-orderfulfillmentstate) for possible values.</param>
 /// <param name="PickupDetails">Contains pickup-specific details. Required when fulfillment type is &#x60;PICKUP&#x60;..</param>
 public OrderFulfillment(TypeEnum?Type = default(TypeEnum?), StateEnum?State = default(StateEnum?), OrderFulfillmentPickupDetails PickupDetails = default(OrderFulfillmentPickupDetails))
 {
     this.Type          = Type;
     this.State         = State;
     this.PickupDetails = PickupDetails;
 }