/** * Represents a customer to whom you sell products and/or services. * @export * @class LinkCustomersModel */ export declare class LinkCustomersModel { /** * @type {string[]} * @memberof LinkCustomersModel */ customers?: string[] | undefined; }