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
- citystring
- Gets or sets the city. 
- countrystring
- Gets or sets the country. 
- line1string
- Gets or sets the line1. 
- line2string
- Gets or sets the line2. 
- postalCodestring
- Gets or sets the postal code. 
- statestring
- Gets or sets the state. 
Properties
City
Gets or sets the city.
[DataMember(Name = "city", EmitDefaultValue = false)]
public string City { get; set; }Property Value
Country
Gets or sets the country.
[DataMember(Name = "country", EmitDefaultValue = false)]
public string Country { get; set; }Property Value
Line1
Gets or sets the line1.
[DataMember(Name = "line1", EmitDefaultValue = false)]
public string Line1 { get; set; }Property Value
Line2
Gets or sets the line2.
[DataMember(Name = "line2", EmitDefaultValue = false)]
public string Line2 { get; set; }Property Value
PostalCode
Gets or sets the postal code.
[DataMember(Name = "postalCode", EmitDefaultValue = false)]
public string PostalCode { get; set; }Property Value
State
Gets or sets the state.
[DataMember(Name = "state", EmitDefaultValue = false)]
public string State { get; set; }Property Value
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()Returns
- string
- JSON string presentation of the object.