Search Results for

    Show / Hide Table of Contents

    Class TenantReputationStatusSummaryDto

    TenantReputationStatusSummaryDto

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

    Constructors

    View Source

    TenantReputationStatusSummaryDto()

    Initializes a new instance of the TenantReputationStatusSummaryDto class.

    Declaration
    [JsonConstructor]
    protected TenantReputationStatusSummaryDto()
    View Source

    TenantReputationStatusSummaryDto(DateTime, Guid, List<TenantReputationStatusRowDto>)

    Initializes a new instance of the TenantReputationStatusSummaryDto class.

    Declaration
    public TenantReputationStatusSummaryDto(DateTime generatedAt = default, Guid userId = default, List<TenantReputationStatusRowDto> rows = null)
    Parameters
    Type Name Description
    DateTime generatedAt

    generatedAt (required).

    Guid userId

    userId (required).

    List<TenantReputationStatusRowDto> rows

    rows (required).

    Properties

    View Source

    GeneratedAt

    Gets or Sets GeneratedAt

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

    Rows

    Gets or Sets Rows

    Declaration
    [DataMember(Name = "rows", IsRequired = true, EmitDefaultValue = true)]
    public List<TenantReputationStatusRowDto> Rows { get; set; }
    Property Value
    Type Description
    List<TenantReputationStatusRowDto>
    View Source

    UserId

    Gets or Sets UserId

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

    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.