/** * 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 { SalesDataOrderAddressExtensionInterface } from './salesDataOrderAddressExtensionInterface'; /** * Order address interface. An order is a document that a web store issues to a customer. Magento generates a sales order that lists the product items, billing and shipping addresses, and shipping and payment methods. A corresponding external document, known as a purchase order, is emailed to the customer. */ export interface SalesDataOrderAddressInterface { /** * Address type. */ addressType: string; /** * City. */ city: string; /** * Company. */ company?: string; /** * Country ID. */ countryId: string; /** * Country address ID. */ customerAddressId?: number; /** * Customer ID. */ customerId?: number; /** * Email address. */ email?: string; /** * Order address ID. */ entityId?: number; /** * Fax number. */ fax?: string; /** * First name. */ firstname: string; /** * Last name. */ lastname: string; /** * Middle name. */ middlename?: string; /** * Parent ID. */ parentId?: number; /** * Postal code. */ postcode: string; /** * Prefix. */ prefix?: string; /** * Region. */ region?: string; /** * Region code. */ regionCode?: string; /** * Region ID. */ regionId?: number; /** * Array of any street values. Otherwise, null. */ street?: Array; /** * Suffix. */ suffix?: string; /** * Telephone number. */ telephone: string; /** * VAT ID. */ vatId?: string; /** * VAT-is-valid flag value. */ vatIsValid?: number; /** * VAT request date. */ vatRequestDate?: string; /** * VAT request ID. */ vatRequestId?: string; /** * VAT-request-success flag value. */ vatRequestSuccess?: number; extensionAttributes?: SalesDataOrderAddressExtensionInterface; }