Show / Hide Table of Contents

Class Address

Address details model.

Inheritance
object
Address
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 Address

Properties

AddressKey

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

Address identifier.

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.

ContributorClass

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

Contributor class of the customer company.

Country

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

Country of the address.

County

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

County of the address.

DepartmentName

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

Department name of the customer company.

EmailAddress

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

Contact person email address.

FirstName

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

First name of the contact person.

InternalNumber

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

Internal number of the customer company.

JobTitle

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

Job title of the contact person.

LastName

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

Last name of the contact person.

Line1

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

Address line 1.

Line2

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

Address line 2.

Line3

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

Address line 3.

Line4

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

Address line 4.

MiddleName

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

Middle name of the contact person.

MunicipalInscription

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

Municipal Inscription.

PhoneCountryCode

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

Phone country code of the contact person.

PhoneNumber

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

Phone number of the contact person.

PostalCode

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

Post code of the address.

Province

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

Province of the address.

State

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

State of the address.

StateInscription

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

State Inscription.

StreetName

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

Street name of the address.

StreetNumber

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

Street number of the address.

In this article
Back to top