wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 555 B
TypeScript
import { AbstractCustomerCommentActive } from "./AbstractCustomerCommentActive";
declare class CustomerCommentCreate extends AbstractCustomerCommentActive {
/**
* 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 { CustomerCommentCreate };