Class CallbackShippingOptionUpdateRequest
Inheritance
System.Object
CallbackShippingOptionUpdateRequest
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)
System.Object.ToString()
Namespace: Klarna.Rest.Core.Model
Assembly: Klarna.Rest.Core.dll
Syntax
public class CallbackShippingOptionUpdateRequest
Properties
| Improve this Doc View SourceBillingCheckoutAddress
Customer's billing address
Declaration
[JsonProperty(PropertyName = "billing_address")]
public CheckoutAddressInfo BillingCheckoutAddress { get; set; }
Property Value
Type | Description |
---|---|
CheckoutAddressInfo |
Remarks
Read only
OrderAmount
Non-negative, minor units. Total total amount of the order, including tax and any discounts.
Declaration
[JsonProperty(PropertyName = "order_amount")]
public int OrderAmount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
Required
OrderLines
The applicable order lines (max 1000)
Declaration
[JsonProperty(PropertyName = "order_lines")]
public ICollection<OrderLine> OrderLines { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<OrderLine> |
Remarks
Required
OrderTaxAmount
Non-negative, minor units. The total tax amount of the order.
Declaration
[JsonProperty(PropertyName = "order_tax_amount")]
public int OrderTaxAmount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
Required
PurchaseCurrency
ISO 4217 purchase currency.
Declaration
[JsonProperty(PropertyName = "purchase_currency")]
public string PurchaseCurrency { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Required
SelectedShippingOption
Current shipping option selected by the customer.
Declaration
[JsonProperty(PropertyName = "selected_shipping_option")]
public ShippingOption SelectedShippingOption { get; set; }
Property Value
Type | Description |
---|---|
ShippingOption |
Remarks
Read only
ShippingCheckoutAddress
Customer's shipping address
Declaration
[JsonProperty(PropertyName = "shipping_address")]
public CheckoutAddressInfo ShippingCheckoutAddress { get; set; }
Property Value
Type | Description |
---|---|
CheckoutAddressInfo |
Remarks
Read only