UNPKG

wallee

Version:
20 lines (19 loc) 555 B
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 };