/** * 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 { FrameworkAttributeInterface } from './frameworkAttributeInterface'; import { QuoteDataAddressExtensionInterface } from './quoteDataAddressExtensionInterface'; /** * Interface AddressInterface */ export interface QuoteDataAddressInterface { /** * Id */ id?: number; /** * Region name */ region: string; /** * Region id */ regionId: number; /** * Region code */ regionCode: string; /** * Country id */ 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; /** * Customer id */ customerId?: number; /** * Billing/shipping email */ email: string; /** * Same as billing flag */ sameAsBilling?: number; /** * Customer address id */ customerAddressId?: number; /** * Save in address book flag */ saveInAddressBook?: number; extensionAttributes?: QuoteDataAddressExtensionInterface; /** * Custom attributes values. */ customAttributes?: Array; }