Search Results for

    Show / Hide Table of Contents

    Class DeliverabilityEntityResultDto

    Entity-level deliverability result

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

    Constructors

    View Source

    DeliverabilityEntityResultDto()

    Initializes a new instance of the DeliverabilityEntityResultDto class.

    Declaration
    [JsonConstructor]
    protected DeliverabilityEntityResultDto()
    View Source

    DeliverabilityEntityResultDto(Guid, string, bool, int, int, PhoneCountryEnum?, PhoneVariantEnum?, DateTime?, List<DeliverabilityExpectationResultDto>)

    Initializes a new instance of the DeliverabilityEntityResultDto class.

    Declaration
    public DeliverabilityEntityResultDto(Guid entityId = default, string entityLabel = null, bool matched = false, int matchedExpectationCount = 0, int totalExpectationCount = 0, DeliverabilityEntityResultDto.PhoneCountryEnum? phoneCountry = null, DeliverabilityEntityResultDto.PhoneVariantEnum? phoneVariant = null, DateTime? evaluatedAt = null, List<DeliverabilityExpectationResultDto> expectationResults = null)
    Parameters
    Type Name Description
    Guid entityId

    entityId (required).

    string entityLabel

    entityLabel (required).

    bool matched

    matched (required).

    int matchedExpectationCount

    matchedExpectationCount (required).

    int totalExpectationCount

    totalExpectationCount (required).

    DeliverabilityEntityResultDto.PhoneCountryEnum? phoneCountry

    phoneCountry.

    DeliverabilityEntityResultDto.PhoneVariantEnum? phoneVariant

    phoneVariant.

    DateTime? evaluatedAt

    evaluatedAt.

    List<DeliverabilityExpectationResultDto> expectationResults

    expectationResults (required).

    Properties

    View Source

    EntityId

    Gets or Sets EntityId

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

    EntityLabel

    Gets or Sets EntityLabel

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

    EvaluatedAt

    Gets or Sets EvaluatedAt

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

    ExpectationResults

    Gets or Sets ExpectationResults

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

    Matched

    Gets or Sets Matched

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

    MatchedExpectationCount

    Gets or Sets MatchedExpectationCount

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

    PhoneCountry

    Gets or Sets PhoneCountry

    Declaration
    [DataMember(Name = "phoneCountry", EmitDefaultValue = true)]
    public DeliverabilityEntityResultDto.PhoneCountryEnum? PhoneCountry { get; set; }
    Property Value
    Type Description
    DeliverabilityEntityResultDto.PhoneCountryEnum?
    View Source

    PhoneVariant

    Gets or Sets PhoneVariant

    Declaration
    [DataMember(Name = "phoneVariant", EmitDefaultValue = true)]
    public DeliverabilityEntityResultDto.PhoneVariantEnum? PhoneVariant { get; set; }
    Property Value
    Type Description
    DeliverabilityEntityResultDto.PhoneVariantEnum?
    View Source

    TotalExpectationCount

    Gets or Sets TotalExpectationCount

    Declaration
    [DataMember(Name = "totalExpectationCount", IsRequired = true, EmitDefaultValue = true)]
    public int TotalExpectationCount { get; set; }
    Property Value
    Type Description
    int

    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.