fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
57 lines • 1.88 kB
TypeScript
/**
* 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 EmailTemplateDefinition
*/
export interface EmailTemplateDefinition {
/**
*
* @type {string}
* @memberof EmailTemplateDefinition
*/
emailTemplateId: string;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: any; }}
* @memberof EmailTemplateDefinition
*/
defaultTestData: {
[key: string]: any;
};
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: { [key: string]: string; }; }}
* @memberof EmailTemplateDefinition
*/
defaultTranslationsByLocale: {
[key: string]: {
[key: string]: string;
};
};
/**
*
* @type {string}
* @memberof EmailTemplateDefinition
*/
defaultEJS: string;
}
/**
* Check if a given object implements the EmailTemplateDefinition interface.
*/
export declare function instanceOfEmailTemplateDefinition(value: object): value is EmailTemplateDefinition;
export declare function EmailTemplateDefinitionFromJSON(json: any): EmailTemplateDefinition;
export declare function EmailTemplateDefinitionFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailTemplateDefinition;
export declare function EmailTemplateDefinitionToJSON(json: any): EmailTemplateDefinition;
export declare function EmailTemplateDefinitionToJSONTyped(value?: EmailTemplateDefinition | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=EmailTemplateDefinition.d.ts.map