/* tslint:disable */ /* eslint-disable */ /** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface LinkLeadPartnerRequestDto */ export interface LinkLeadPartnerRequestDto { /** * The code of the partner with which the lead will be linked. Either this field or \'partnerNumber\' must be passed (\'partnerNumber\' is preferred). * @type {string} * @memberof LinkLeadPartnerRequestDto */ 'partnerCode'?: string; /** * The number of the partner with which the lead will be linked. Either this field or \'partnerCode\' must be passed (this is preferred). * @type {string} * @memberof LinkLeadPartnerRequestDto */ 'partnerNumber'?: string; /** * The code of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleSlug\' must be passed (\'partnerRoleSlug\' is preferred). * @type {string} * @memberof LinkLeadPartnerRequestDto */ 'partnerRoleCode'?: string; /** * The slug of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleCode\' must be passed (this is preferred). * @type {string} * @memberof LinkLeadPartnerRequestDto */ 'partnerRoleSlug'?: string; /** * The date of the start of linking with a partner. * @type {string} * @memberof LinkLeadPartnerRequestDto */ 'startDate': string; }