Class OrderManagementCapture
Inheritance
System.Object
OrderManagementCapture
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 OrderManagementCapture
Properties
| Improve this Doc View SourceBillingAddress
Billing address for the capture.
Declaration
[JsonProperty(PropertyName = "billing_address")]
public OrderManagementAddressInfo BillingAddress { get; set; }
Property Value
Type | Description |
---|---|
OrderManagementAddressInfo |
CapturedAmount
The captured amount in minor units.
Declaration
[JsonProperty(PropertyName = "captured_amount")]
public int CapturedAmount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
CapturedAt
The time of the capture. Specified in ISO 8601.
Declaration
[JsonProperty(PropertyName = "captured_at")]
public string CapturedAt { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CaptureId
The capture id. Generated when the capture is created.
Declaration
[JsonProperty(PropertyName = "capture_id")]
public string CaptureId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Description
Description of the capture shown to the customer.
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
KlarnaReference
Customer friendly reference id, used as a reference when communicating with the customer.
Declaration
[JsonProperty(PropertyName = "klarna_reference")]
public string KlarnaReference { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OrderLines
List of order lines for the capture shown to the customer.
Declaration
[JsonProperty(PropertyName = "order_lines")]
public ICollection<OrderLine> OrderLines { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<OrderLine> |
RefundedAmount
Refunded amount for this capture in minor units.
Declaration
[JsonProperty(PropertyName = "refunded_amount")]
public int RefundedAmount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ShippingAddress
Shipping address for the capture
Declaration
[JsonProperty(PropertyName = "shipping_address")]
public OrderManagementAddressInfo ShippingAddress { get; set; }
Property Value
Type | Description |
---|---|
OrderManagementAddressInfo |
ShippingInfo
Shipping information for this capture.
Declaration
[JsonProperty(PropertyName = "shipping_info")]
public ICollection<OrderManagementShippingInfo> ShippingInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<OrderManagementShippingInfo> |