UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

97 lines 2.44 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * 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 CustomEmailTemplate */ export interface CustomEmailTemplate { /** * * @type {string} * @memberof CustomEmailTemplate */ id: string; /** * * @type {string} * @memberof CustomEmailTemplate */ tenantId: string; /** * * @type {string} * @memberof CustomEmailTemplate */ emailTemplateId: string; /** * * @type {string} * @memberof CustomEmailTemplate */ displayName: string; /** * * @type {Date} * @memberof CustomEmailTemplate */ createdAt: Date; /** * * @type {Date} * @memberof CustomEmailTemplate */ updatedAt: Date | null; /** * * @type {string} * @memberof CustomEmailTemplate */ updatedByUserId: string | null; /** * * @type {string} * @memberof CustomEmailTemplate */ domain?: string | null; /** * * @type {string} * @memberof CustomEmailTemplate */ ejs: string; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: { [key: string]: string; }; }} * @memberof CustomEmailTemplate */ translationOverridesByLocale: { [key: string]: { [key: string]: string; }; }; /** * * @type {any} * @memberof CustomEmailTemplate */ testData: any | null; } /** * Check if a given object implements the CustomEmailTemplate interface. */ export declare function instanceOfCustomEmailTemplate(value: object): value is CustomEmailTemplate; export declare function CustomEmailTemplateFromJSON(json: any): CustomEmailTemplate; export declare function CustomEmailTemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomEmailTemplate; export declare function CustomEmailTemplateToJSON(json: any): CustomEmailTemplate; export declare function CustomEmailTemplateToJSONTyped(value?: CustomEmailTemplate | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CustomEmailTemplate.d.ts.map