Class OrderManagementShippingInfo
Inheritance
System.Object
OrderManagementShippingInfo
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 OrderManagementShippingInfo
Properties
| Improve this Doc View SourceReturnShippingCompany
Name of the shipping company for the return shipment (as specific as possible). Maximum 100 characters. Example: 'DHL US' and not only 'DHL'
Declaration
[JsonProperty(PropertyName = "return_shipping_company")]
public string ReturnShippingCompany { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ReturnTrackingNumber
Tracking number for the return shipment. Maximum 100 characters.
Declaration
[JsonProperty(PropertyName = "return_tracking_number")]
public string ReturnTrackingNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ReturnTrackingUri
URL where the customer can track the return shipment. Maximum 1024 characters.
Declaration
[JsonProperty(PropertyName = "return_tracking_uri")]
public string ReturnTrackingUri { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ShippingCompany
Name of the shipping company (as specific as possible). Maximum 100 characters. Example: 'DHL US' and not only 'DHL'
Declaration
[JsonProperty(PropertyName = "shipping_company")]
public string ShippingCompany { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ShippingMethod
Shipping method. Allowed values matches (PickUpStore|Home|BoxReg|BoxUnreg|PickUpPoint|Own)
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty(PropertyName = "shipping_method")]
public OrderManagementShippingMethod ShippingMethod { get; set; }
Property Value
Type | Description |
---|---|
OrderManagementShippingMethod |
TrackingNumber
Tracking number for the shipment. Maximum 100 characters.
Declaration
[JsonProperty(PropertyName = "tracking_number")]
public string TrackingNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TrackingUri
URI where the customer can track their shipment. Maximum 1024 characters.
Declaration
[JsonProperty(PropertyName = "tracking_uri")]
public string TrackingUri { get; set; }
Property Value
Type | Description |
---|---|
System.String |