Class ResponseLaybuyCustomer
A customer entity as returned by the Laybuy API.
Inherited Members
Namespace: Yort.Laybuy.InStore
Assembly: Yort.Laybuy.InStore.dll
Syntax
public class ResponseLaybuyCustomer : LaybuyCustomerBaseProperties
| 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 | 
CustomerId
The unique id Laybuy knows this customer as.
Declaration
[JsonProperty("customerId")]
public long? CustomerId { get; set; }Property Value
| Type | Description | 
|---|---|
| Nullable<Int64> | 
Remarks
This value is normally returned from Laybuy, and not provided as an input to it.
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 |