wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 555 B
TypeScript
import { AbstractCustomerAddressActive } from "./AbstractCustomerAddressActive";
declare class CustomerAddressCreate extends AbstractCustomerAddressActive {
/**
* The customer that the object belongs to.
*/
'customer': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { CustomerAddressCreate };