Search Results for

    Show / Hide Table of Contents

    Class TemplateProjection

    Email template data

    Inheritance
    object
    TemplateProjection
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "TemplateProjection")]
    public class TemplateProjection : IValidatableObject

    Constructors

    View Source

    TemplateProjection()

    Initializes a new instance of the TemplateProjection class.

    Declaration
    [JsonConstructor]
    protected TemplateProjection()
    View Source

    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 Source

    CreatedAt

    Gets or Sets CreatedAt

    Declaration
    [DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
    public DateTime CreatedAt { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    Id

    Gets or Sets Id

    Declaration
    [DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    Name

    Gets or Sets Name

    Declaration
    [DataMember(Name = "name", IsRequired = true, EmitDefaultValue = true)]
    public string Name { get; set; }
    Property Value
    Type Description
    string
    View Source

    UpdatedAt

    Gets or Sets UpdatedAt

    Declaration
    [DataMember(Name = "updatedAt", IsRequired = true, EmitDefaultValue = true)]
    public DateTime UpdatedAt { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    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 Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.