UNPKG

wallee

Version:
25 lines (24 loc) 715 B
import { CustomerAddressType } from "./CustomerAddressType"; import { CustomerPostalAddressCreate } from "./CustomerPostalAddressCreate"; declare class AbstractCustomerAddressActive { /** * The actual postal address. */ 'address'?: CustomerPostalAddressCreate; /** * Whether the address is for billing or shipping or both. */ 'addressType'?: CustomerAddressType; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { AbstractCustomerAddressActive };