| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 | # Represents a customer mailing address.## For example, a customer's default address and an order's billing address are both mailling addresses.type MailingAddress implements Node {    # The first line of the address. Typically the street address or PO Box number.    address1: String    # The second line of the address. Typically the number of the apartment, suite, or unit.    address2: String    # The name of the city, district, village, or town.    city: String    # The name of the customer's company or organization.    company: String    # Whether the address coordinates are valid.    coordinatesValidated: Boolean!    # The name of the country.    country: String    # The two-letter code for the country of the address.    #    # For example, US.    countryCodeV2: CountryCode    # The first name of the customer.    #    # formatted(withName: Boolean = false withCompany: Boolean = true): [String!]!    # A formatted version of the address, customized by the provided arguments.    firstName: String    # A comma-separated list of the values for city, province, and country.    formattedArea: String    # A globally-unique identifier.    id: ID!    # The last name of the customer.    lastName: String    # The latitude coordinate of the customer address.    latitude: Float    # The longitude coordinate of the customer address.    longitude: Float    # The full name of the customer, based on firstName and lastName.    name: String    # A unique phone number for the customer.    #    # Formatted using E.164 standard. For example, +16135551111.    phone: String    # The region of the address, such as the province, state, or district.    province: String    # The two-letter code for the region.    #    # For example, ON.    provinceCode: String    # The zip or postal code of the address.    zip: String}# The fields used to create or update a mailing address.input MailingAddressInput {    # The first line of the address. Typically the street address or PO Box number.    address1: String    # The second line of the address. Typically the number of the apartment, suite, or unit.    address2: String    # The name of the city, district, village, or town.    city: String    # The name of the customer's company or organization.    company: String    # The two-letter code for the country of the address.    countryCode: CountryCode    # The first name of the customer.    firstName: String    # The last name of the customer.    lastName: String    # A unique phone number for the customer.    #    # Formatted using E.164 standard. For example, +16135551111.    phone: String    # The code for the region of the address, such as the province, state, or district.    # For example QC for Quebec, Canada.    provinceCode: String    # The zip or postal code of the address.    zip: String}
 |