/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { CustomerDataAddressExtensionInterface } from './customerDataAddressExtensionInterface'; import { CustomerDataRegionInterface } from './customerDataRegionInterface'; import { FrameworkAttributeInterface } from './frameworkAttributeInterface'; /** * Customer address interface. */ export interface CustomerDataAddressInterface { /** * ID */ id?: number; /** * Customer ID */ customerId?: number; region?: CustomerDataRegionInterface; /** * Region ID */ regionId?: number; /** * Country code in ISO_3166-2 format */ countryId?: string; /** * Street */ street?: Array; /** * Company */ company?: string; /** * Telephone number */ telephone?: string; /** * Fax number */ fax?: string; /** * Postcode */ postcode?: string; /** * City name */ city?: string; /** * First name */ firstname?: string; /** * Last name */ lastname?: string; /** * Middle name */ middlename?: string; /** * Prefix */ prefix?: string; /** * Suffix */ suffix?: string; /** * Vat id */ vatId?: string; /** * If this address is default shipping address. */ defaultShipping?: boolean; /** * If this address is default billing address */ defaultBilling?: boolean; extensionAttributes?: CustomerDataAddressExtensionInterface; /** * Custom attributes values. */ customAttributes?: Array; }