/** * 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 SendNotificationRequestDto */ export interface SendNotificationRequestDto { /** * 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 SendNotificationRequestDto */ 'templateSlug': string; /** * Subject of the email. * @type {string} * @memberof SendNotificationRequestDto */ 'emailSubject'?: string; /** * Payload is used by the template engine to replace all template variables with proper data. For more information, please go to https://github.com/flosch/pongo2. * @type {object} * @memberof SendNotificationRequestDto */ 'payload'?: object; }