Class ShippingAddress
Shipping address for rover devices.
Inherited Members
Namespace: Oci.RoverService.Models
Assembly: OCI.DotNetSDK.Rover.dll
Syntax
public class ShippingAddress
Properties
Address1
Declaration
[Required(ErrorMessage = "Address1 is required.")]
[JsonProperty(PropertyName = "address1")]
public string Address1 { get; set; }
Property Value
Type | Description |
---|---|
string | Address line 1. |
Remarks
Required
Address2
Declaration
[JsonProperty(PropertyName = "address2")]
public string Address2 { get; set; }
Property Value
Type | Description |
---|---|
string | Address line 2. |
Address3
Declaration
[JsonProperty(PropertyName = "address3")]
public string Address3 { get; set; }
Property Value
Type | Description |
---|---|
string | Address line 3. |
Address4
Declaration
[JsonProperty(PropertyName = "address4")]
public string Address4 { get; set; }
Property Value
Type | Description |
---|---|
string | Address line 4. |
Addressee
Declaration
[Required(ErrorMessage = "Addressee is required.")]
[JsonProperty(PropertyName = "addressee")]
public string Addressee { get; set; }
Property Value
Type | Description |
---|---|
string | Addressee in shipping address. |
Remarks
Required
CareOf
Declaration
[JsonProperty(PropertyName = "careOf")]
public string CareOf { get; set; }
Property Value
Type | Description |
---|---|
string | CareOf for shipping address. |
CityOrLocality
Declaration
[Required(ErrorMessage = "CityOrLocality is required.")]
[JsonProperty(PropertyName = "cityOrLocality")]
public string CityOrLocality { get; set; }
Property Value
Type | Description |
---|---|
string | city or locality for shipping address. |
Remarks
Required
Country
Declaration
[Required(ErrorMessage = "Country is required.")]
[JsonProperty(PropertyName = "country")]
public string Country { get; set; }
Property Value
Type | Description |
---|---|
string | country for shipping address. |
Remarks
Required
Declaration
[JsonProperty(PropertyName = "email")]
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string | recipient email address. |
PhoneNumber
Declaration
[Required(ErrorMessage = "PhoneNumber is required.")]
[JsonProperty(PropertyName = "phoneNumber")]
public string PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
string | recipient phone number. |
Remarks
Required
StateOrRegion
Declaration
[Required(ErrorMessage = "StateOrRegion is required.")]
[JsonProperty(PropertyName = "stateOrRegion")]
public string StateOrRegion { get; set; }
Property Value
Type | Description |
---|---|
string | state or region for shipping address. |
Remarks
Required
Zipcode
Declaration
[Required(ErrorMessage = "Zipcode is required.")]
[JsonProperty(PropertyName = "zipcode")]
public string Zipcode { get; set; }
Property Value
Type | Description |
---|---|
string | zipcode for shipping address. |
Remarks
Required