Search Results for

    Show / Hide Table of Contents

    Class TenantReputationFindingsDto

    TenantReputationFindingsDto

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

    Constructors

    View Source

    TenantReputationFindingsDto()

    Initializes a new instance of the TenantReputationFindingsDto class.

    Declaration
    [JsonConstructor]
    protected TenantReputationFindingsDto()
    View Source

    TenantReputationFindingsDto(DateTime, Guid, List<TenantReputationFindingDto>)

    Initializes a new instance of the TenantReputationFindingsDto class.

    Declaration
    public TenantReputationFindingsDto(DateTime generatedAt = default, Guid userId = default, List<TenantReputationFindingDto> findings = null)
    Parameters
    Type Name Description
    DateTime generatedAt

    generatedAt (required).

    Guid userId

    userId (required).

    List<TenantReputationFindingDto> findings

    findings (required).

    Properties

    View Source

    Findings

    Gets or Sets Findings

    Declaration
    [DataMember(Name = "findings", IsRequired = true, EmitDefaultValue = true)]
    public List<TenantReputationFindingDto> Findings { get; set; }
    Property Value
    Type Description
    List<TenantReputationFindingDto>
    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

    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.