Show / Hide Table of Contents

Class ShippingAddress

Inheritance
object
ShippingAddress
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DtsService.Models
Assembly: OCI.DotNetSDK.Dts.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
Remarks

Required

Address2

Declaration
[JsonProperty(PropertyName = "address2")]
public string Address2 { get; set; }
Property Value
Type Description
string

Address3

Declaration
[JsonProperty(PropertyName = "address3")]
public string Address3 { get; set; }
Property Value
Type Description
string

Address4

Declaration
[JsonProperty(PropertyName = "address4")]
public string Address4 { get; set; }
Property Value
Type Description
string

Addressee

Declaration
[Required(ErrorMessage = "Addressee is required.")]
[JsonProperty(PropertyName = "addressee")]
public string Addressee { get; set; }
Property Value
Type Description
string
Remarks

Required

CareOf

Declaration
[JsonProperty(PropertyName = "careOf")]
public string CareOf { get; set; }
Property Value
Type Description
string

CityOrLocality

Declaration
[Required(ErrorMessage = "CityOrLocality is required.")]
[JsonProperty(PropertyName = "cityOrLocality")]
public string CityOrLocality { get; set; }
Property Value
Type Description
string
Remarks

Required

Country

Declaration
[Required(ErrorMessage = "Country is required.")]
[JsonProperty(PropertyName = "country")]
public string Country { get; set; }
Property Value
Type Description
string
Remarks

Required

Email

Declaration
[JsonProperty(PropertyName = "email")]
public string Email { get; set; }
Property Value
Type Description
string

PhoneNumber

Declaration
[JsonProperty(PropertyName = "phoneNumber")]
public string PhoneNumber { get; set; }
Property Value
Type Description
string

StateOrRegion

Declaration
[Required(ErrorMessage = "StateOrRegion is required.")]
[JsonProperty(PropertyName = "stateOrRegion")]
public string StateOrRegion { get; set; }
Property Value
Type Description
string
Remarks

Required

Zipcode

Declaration
[Required(ErrorMessage = "Zipcode is required.")]
[JsonProperty(PropertyName = "zipcode")]
public string Zipcode { get; set; }
Property Value
Type Description
string
Remarks

Required

In this article
Back to top