Show / Hide Table of Contents

Class BillToAddress

Address details model

Inheritance
object
BillToAddress
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OspgatewayService.Models
Assembly: OCI.DotNetSDK.Ospgateway.dll
Syntax
public class BillToAddress

Properties

AddressLine1

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

Address line 1

AddressLine2

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

Address line 2

AddressLine3

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

Address line 3

AddressLine4

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

Address line 4

City

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

Name of the city

CompanyName

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

Name of the customer company

ContactName

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

Name of the contact person

Country

Declaration
[JsonProperty(PropertyName = "country")]
public Country Country { get; set; }
Property Value
Type Description
Country

County

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

County name

PostalCode

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

ZIP no

Province

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

Name of the province

State

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

Name of the state

StreetName

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

Street name

StreetNumber

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

House no

In this article
Back to top