UNPKG

wallee

Version:
50 lines (49 loc) 1.3 kB
import { Customer } from "./Customer"; import { CustomerAddressType } from "./CustomerAddressType"; import { CustomerPostalAddress } from "./CustomerPostalAddress"; declare class CustomerAddress { /** * The actual postal address. */ 'address'?: CustomerPostalAddress; /** * Whether the address is for billing or shipping or both. */ 'addressType'?: CustomerAddressType; /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * The customer that the object belongs to. */ 'customer'?: Customer; /** * Whether this is the customer's default address. */ 'defaultAddress'?: boolean; /** * A unique identifier for the object. */ 'id'?: number; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { CustomerAddress };