/* 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. */ import { PartnerClass } from './partner-class'; import { PartnerRoleClass } from './partner-role-class'; /** * * @export * @interface PartnerLinkClass */ export interface PartnerLinkClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof PartnerLinkClass */ 'id': number; /** * Unique identifier of the partner that this object belongs to. * @type {string} * @memberof PartnerLinkClass */ 'partnerCode': string; /** * Unique identifier of the partner role that this object belongs to. * @type {string} * @memberof PartnerLinkClass */ 'partnerRoleCode': string; /** * Unique identifier of the policy that this object belongs to. * @type {string} * @memberof PartnerLinkClass */ 'policyCode'?: string; /** * Unique identifier of the lead that this object belongs to. * @type {string} * @memberof PartnerLinkClass */ 'leadCode'?: string; /** * Date from which the partner should be linked. * @type {string} * @memberof PartnerLinkClass */ 'startDate': string; /** * Date to which the partner should be linked. * @type {string} * @memberof PartnerLinkClass */ 'endDate'?: string; /** * Partner role * @type {PartnerRoleClass} * @memberof PartnerLinkClass */ 'partnerRole'?: PartnerRoleClass; /** * Partner * @type {PartnerClass} * @memberof PartnerLinkClass */ 'partner'?: PartnerClass; /** * Time at which the object was created. * @type {string} * @memberof PartnerLinkClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof PartnerLinkClass */ 'updatedAt': string; }