Class LatitiudePayShippingLine
Represents a shipping charge as part of a LatitudePayCreatePosPurchaseRequest.
Inherited Members
Namespace: Yort.LatitudePay.InStore
Assembly: Yort.LatitudePay.InStore.dll
Syntax
public class LatitiudePayShippingLine
Properties
| Improve this Doc View SourceCarrier
Gets or sets the name of carrier providing shipping services.
Declaration
[JsonProperty("carrier")]
public string Carrier { get; set; }
Property Value
Type | Description |
---|---|
String | The carrier name. |
Price
Gets or sets the price charged to the customer for this shipping service on this payment plan.
Declaration
[JsonProperty("price")]
public LatitudePayMoney Price { get; set; }
Property Value
Type | Description |
---|---|
LatitudePayMoney | The shipping price. |
TaxIncluded
Gets or sets a value indicating whether tax is included in the Price property.
Declaration
[JsonProperty("taxIncluded")]
public bool TaxIncluded { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|