Class TemplateProjection
Email template data
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "TemplateProjection")]
public class TemplateProjection : IValidatableObjectConstructors
View SourceTemplateProjection()
Initializes a new instance of the TemplateProjection class.
Declaration
[JsonConstructor]
protected TemplateProjection()TemplateProjection(DateTime, DateTime, List<string>, string, Guid)
Initializes a new instance of the TemplateProjection class.
Declaration
public TemplateProjection(DateTime updatedAt = default, DateTime createdAt = default, List<string> variables = null, string name = null, Guid id = default)Parameters
| Type | Name | Description | 
|---|---|---|
| DateTime | updatedAt | updatedAt (required). | 
| DateTime | createdAt | createdAt (required). | 
| List<string> | variables | variables (required). | 
| string | name | name (required). | 
| Guid | id | id (required). | 
Properties
View SourceCreatedAt
Gets or Sets CreatedAt
Declaration
[DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime CreatedAt { get; set; }Property Value
| Type | Description | 
|---|---|
| DateTime | 
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
public Guid Id { get; set; }Property Value
| Type | Description | 
|---|---|
| Guid | 
Name
Gets or Sets Name
Declaration
[DataMember(Name = "name", IsRequired = true, EmitDefaultValue = true)]
public string Name { get; set; }Property Value
| Type | Description | 
|---|---|
| string | 
UpdatedAt
Gets or Sets UpdatedAt
Declaration
[DataMember(Name = "updatedAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime UpdatedAt { get; set; }Property Value
| Type | Description | 
|---|---|
| DateTime | 
Variables
Gets or Sets Variables
Declaration
[DataMember(Name = "variables", IsRequired = true, EmitDefaultValue = true)]
public List<string> Variables { get; set; }Property Value
| Type | Description | 
|---|---|
| List<string> | 
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()Returns
| Type | Description | 
|---|---|
| string | JSON string presentation of the object | 
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()Returns
| Type | Description | 
|---|---|
| string | String presentation of the object |