• 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 LaybuyCustomerAddress

    Represent a billing or shipping address for a RequestLaybuyCustomer.

    Inheritance
    Object
    LaybuyCustomerAddress
    Inherited Members
    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 LaybuyCustomerAddress

    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

    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
    | Improve this Doc View Source

    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.

    | 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
    • Improve this Doc
    • View Source
    Back to top Copyright (c) 2020 Troy Willmot