wallee
Version:
TypeScript/JavaScript client for wallee
16 lines (15 loc) • 434 B
TypeScript
import { AbstractCustomerActive } from "./AbstractCustomerActive";
declare class CustomerCreate extends AbstractCustomerActive {
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { CustomerCreate };