Raw.PostAddress

Raw.PostAddress

Shipping address

postAddress#1e8caaeb street_line1:string street_line2:string city:string state:string country_iso2:string post_code:string = PostAddress;
export namespace Raw {
  export class PostAddress {
    constructor(params: {
      streetLine1: string;
      streetLine2: string;
      city: string;
      state: string;
      countryIso2: string;
      postCode: string;
    }) {}
  }
}
🚫

This is a types constructor, you can’t use it as method when call invoke.

Layer: 185
Constructor ID: 0x1e8caaeb

Property

  • streetLine1 : string

    First line for the address

  • streetLine2 : string

    Second line for the address

  • city : string

    City

  • state : string

    State, if applicable (empty otherwise)

  • countryIso2 : string

    Iso 3166-1 alpha-2 country code

  • postCode : string

    Address post code