/** * Represents a parameter associated with a company. * @export * @class CustomerSupplierModel */ export declare class CustomerSupplierModel { /** * @type {number} * @memberof CustomerSupplierModel */ id?: number | undefined; /** * @type {number} * @memberof CustomerSupplierModel */ companyId?: number | undefined; /** * @type {string} * @memberof CustomerSupplierModel */ customerCode: string; }