Class LaybuyCustomerAddress
Represent a billing or shipping address for a RequestLaybuyCustomer.
Inherited Members
Namespace: Yort.Laybuy.InStore
Assembly: Yort.Laybuy.InStore.dll
Syntax
public class LaybuyCustomerAddress
Properties
| Improve this Doc View SourceAddress1
The first line of address for the customer.
Declaration
[JsonProperty("address1")]
public string Address1 { get; set; }
Property Value
Type | Description |
---|---|
String |
Address2
The second line of address for the customer, if any.
Declaration
[JsonProperty("address2")]
public string Address2 { get; set; }
Property Value
Type | Description |
---|---|
String |
City
The city asssociated with the customer's address.
Declaration
[JsonProperty("city")]
public string City { get; set; }
Property Value
Type | Description |
---|---|
String |
Country
The country asssociated with the customer's address.
Declaration
[JsonProperty("country")]
public string Country { get; set; }
Property Value
Type | Description |
---|---|
String |
Name
The name of the person associated with the address, the person/department receiving the bill or the goods, depending on whether this is a billing or shipping address. If not specified, the customer's name will be used.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Phone
The phone number of the contact person or department for this address.
Declaration
[JsonProperty("phone")]
public string Phone { get; set; }
Property Value
Type | Description |
---|---|
String |
Remarks
If not provided the customer's phone number is used.
Postcode
The post code asssociated with the customer's address.
Declaration
[JsonProperty("postcode")]
public string Postcode { get; set; }
Property Value
Type | Description |
---|---|
String |
State
The state asssociated with the customer's address.
Declaration
[JsonProperty("state")]
public string State { get; set; }
Property Value
Type | Description |
---|---|
String |
Suburb
The suburb asssociated with the customer's address.
Declaration
[JsonProperty("suburb")]
public string Suburb { get; set; }
Property Value
Type | Description |
---|---|
String |