/* 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 InitiateEmailVerificationDto */ export interface InitiateEmailVerificationDto { /** * User email * @type {string} * @memberof InitiateEmailVerificationDto */ 'email': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof InitiateEmailVerificationDto */ 'templateSlug'?: string; }