/* 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 ValidatePartnerResponseClass */ export interface ValidatePartnerResponseClass { /** * True when the partner was found and all provided validation fields matched. * @type {boolean} * @memberof ValidatePartnerResponseClass */ 'isValid': boolean; /** * Describes why validation failed. Possible values: \"Partner not found with partnerNumber: [partnerNumber]\" | \"Validation failed: field \\\"[name]\\\" was not found in partner data\" | \"Validation failed: value for field \\\"[name]\\\" does not match\". Only present when isValid is false. * @type {string} * @memberof ValidatePartnerResponseClass */ 'errorMessage'?: string; }