Table of Contents

Class Address

Namespace
BoldSign.Model.IdVerification
Assembly
BoldSign.Api.dll

The address details.

[DataContract]
public class Address
Inheritance
Address
Inherited Members

Constructors

Address(string, string, string, string, string, string)

Initializes a new instance of the Address class.

public Address(string city = null, string country = null, string line1 = null, string line2 = null, string postalCode = null, string state = null)

Parameters

city string

Gets or sets the city.

country string

Gets or sets the country.

line1 string

Gets or sets the line1.

line2 string

Gets or sets the line2.

postalCode string

Gets or sets the postal code.

state string

Gets or sets the state.

Properties

City

Gets or sets the city.

[DataMember(Name = "city", EmitDefaultValue = false)]
public string City { get; set; }

Property Value

string

Country

Gets or sets the country.

[DataMember(Name = "country", EmitDefaultValue = false)]
public string Country { get; set; }

Property Value

string

Line1

Gets or sets the line1.

[DataMember(Name = "line1", EmitDefaultValue = false)]
public string Line1 { get; set; }

Property Value

string

Line2

Gets or sets the line2.

[DataMember(Name = "line2", EmitDefaultValue = false)]
public string Line2 { get; set; }

Property Value

string

PostalCode

Gets or sets the postal code.

[DataMember(Name = "postalCode", EmitDefaultValue = false)]
public string PostalCode { get; set; }

Property Value

string

State

Gets or sets the state.

[DataMember(Name = "state", EmitDefaultValue = false)]
public string State { get; set; }

Property Value

string

Methods

ToJson()

Returns the JSON string presentation of the object.

public virtual string ToJson()

Returns

string

JSON string presentation of the object.