/** *
Contains information about an email template.
*/ export interface _TemplateMetadata { /** *The name of the template.
*/ Name?: string; /** *The time and date the template was created.
*/ CreatedTimestamp?: Date | string | number; } export interface _UnmarshalledTemplateMetadata extends _TemplateMetadata { /** *The time and date the template was created.
*/ CreatedTimestamp?: Date; }