• Articles
  • Api Documentation

    Show / Hide Table of Contents
    • Yort.Laybuy.InStore
      • CancelOrderRequest
      • CancelOrderResponse
      • CreateOrderRequest
      • CreateOrderResponse
      • ILaybuyClient
      • LaybuyApiException
      • LaybuyApiResponseBase
      • LaybuyClient
      • LaybuyClientConfiguration
      • LaybuyCredentials
      • LaybuyCustomerAddress
      • LaybuyCustomerBase
      • LaybuyEnvironment
      • LaybuyItem
      • LaybuyOrderRefund
      • LaybuyOrderStatus
      • LaybuyRequestBase
      • LaybuyStatus
      • OrderRequest
      • OrderResponse
      • OrderStatusRequest
      • OrderStatusResponse
      • RefundRequest
      • RefundResponse
      • RequestLaybuyCustomer
      • ResponseLaybuyCustomer
      • StandardOriginData

    Class ResponseLaybuyCustomer

    A customer entity as returned by the Laybuy API.

    Inheritance
    Object
    LaybuyCustomerBase
    ResponseLaybuyCustomer
    Inherited Members
    LaybuyCustomerBase.FirstName
    LaybuyCustomerBase.LastName
    LaybuyCustomerBase.Email
    LaybuyCustomerBase.Phone
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Yort.Laybuy.InStore
    Assembly: Yort.Laybuy.InStore.dll
    Syntax
    public class ResponseLaybuyCustomer : LaybuyCustomerBase

    Properties

    | Improve this Doc View Source

    Address1

    The first line of address for the customer.

    Declaration
    [JsonProperty("address1")]
    public string Address1 { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Address2

    The second line of address for the customer, if any.

    Declaration
    [JsonProperty("address2")]
    public string Address2 { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    City

    The city asssociated with the customer's address.

    Declaration
    [JsonProperty("city")]
    public string City { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Country

    The country asssociated with the customer's address.

    Declaration
    [JsonProperty("country")]
    public string Country { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    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.

    | Improve this Doc View Source

    Postcode

    The post code asssociated with the customer's address.

    Declaration
    [JsonProperty("postcode")]
    public string Postcode { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    State

    The state asssociated with the customer's address.

    Declaration
    [JsonProperty("state")]
    public string State { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Suburb

    The suburb asssociated with the customer's address.

    Declaration
    [JsonProperty("suburb")]
    public string Suburb { get; set; }
    Property Value
    Type Description
    String

    See Also

    LaybuyCustomerBase
    ResponseLaybuyCustomer
    • Improve this Doc
    • View Source
    Back to top Copyright (c) 2020 Troy Willmot