Class PurchaseOrder
PurchaseOrder
Inheritance
System.Object
PurchaseOrder
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: KuberWMS.Models
Assembly: KuberWMS.dll
Syntax
public class PurchaseOrder
Constructors
PurchaseOrder()
Initializes a new instance of the Purchase
Declaration
public PurchaseOrder()
Properties
_Client
Gets or Sets Client
Declaration
[JsonProperty("client")]
public string _Client { get; }
Property Value
Type | Description |
---|---|
System. |
Details
Gets or Sets PoDetails
Declaration
[JsonProperty("po_details")]
public List<PurchaseOrderDetail> Details { get; set; }
Property Value
Type | Description |
---|---|
System. |
ExpectedOn
Gets or Sets ExpectedOn
Declaration
[JsonProperty("expected_on")]
public DateTime? ExpectedOn { get; set; }
Property Value
Type | Description |
---|---|
System. |
Id
Gets or Sets Id
Declaration
[JsonProperty("id")]
public int? Id { get; }
Property Value
Type | Description |
---|---|
System. |
Notes
Notes related to this purchase order.
Declaration
[JsonProperty("notes")]
public string Notes { get; set; }
Property Value
Type | Description |
---|---|
System. |
Notes related to this purchase order. |
PoNumber
WMS Generated Purchase Order number
Declaration
[JsonProperty("po_number")]
public string PoNumber { get; }
Property Value
Type | Description |
---|---|
System. |
WMS Generated Purchase Order number |
Status
The current status of this purchase order. Cannot be modified directly
Declaration
[JsonProperty("status")]
public string Status { get; set; }
Property Value
Type | Description |
---|---|
System. |
The current status of this purchase order. Cannot be modified directly |
Supplier
Gets or Sets Supplier
Declaration
[JsonProperty("supplier")]
public string Supplier { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
ToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System. |
JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
String presentation of the object |
Overrides
System.Object.ToString()