Search Results for

    Show / Hide Table of Contents

    Class ReputationItemProjection

    ReputationItemProjection

    Inheritance
    object
    ReputationItemProjection
    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 = "ReputationItemProjection")]
    public class ReputationItemProjection : IValidatableObject

    Constructors

    View Source

    ReputationItemProjection()

    Initializes a new instance of the ReputationItemProjection class.

    Declaration
    [JsonConstructor]
    protected ReputationItemProjection()
    View Source

    ReputationItemProjection(DateTime, string, ReputationTypeEnum, Guid, SeverityEnum, string)

    Initializes a new instance of the ReputationItemProjection class.

    Declaration
    public ReputationItemProjection(DateTime createdAt = default, string recipient = null, ReputationItemProjection.ReputationTypeEnum reputationType = (ReputationItemProjection.ReputationTypeEnum)0, Guid id = default, ReputationItemProjection.SeverityEnum severity = (ReputationItemProjection.SeverityEnum)0, string source = null)
    Parameters
    Type Name Description
    DateTime createdAt

    createdAt (required).

    string recipient

    recipient.

    ReputationItemProjection.ReputationTypeEnum reputationType

    reputationType (required).

    Guid id

    id (required).

    ReputationItemProjection.SeverityEnum severity

    severity (required).

    string source

    source.

    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

    Recipient

    Gets or Sets Recipient

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

    ReputationType

    Gets or Sets ReputationType

    Declaration
    [DataMember(Name = "reputationType", IsRequired = true, EmitDefaultValue = true)]
    public ReputationItemProjection.ReputationTypeEnum ReputationType { get; set; }
    Property Value
    Type Description
    ReputationItemProjection.ReputationTypeEnum
    View Source

    Severity

    Gets or Sets Severity

    Declaration
    [DataMember(Name = "severity", IsRequired = true, EmitDefaultValue = true)]
    public ReputationItemProjection.SeverityEnum Severity { get; set; }
    Property Value
    Type Description
    ReputationItemProjection.SeverityEnum
    View Source

    Source

    Gets or Sets Source

    Declaration
    [DataMember(Name = "source", EmitDefaultValue = false)]
    public string Source { get; set; }
    Property Value
    Type Description
    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.