/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type NotificationTemplateData = { /** * Title of the message */ message_title?: string | null; /** * * This would be the body of the message. Some context are available to use in the system. * * e.g * * ``` * This is a sample message to {{username}}. * * Available accessors are * - site_name * - site_url * - site_logo_url * - username * and * ``` * * */ message_body: string; };