Class DeliverabilityEntityResultDto
Entity-level deliverability result
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DeliverabilityEntityResultDto")]
public class DeliverabilityEntityResultDto : IValidatableObject
Constructors
View SourceDeliverabilityEntityResultDto()
Initializes a new instance of the DeliverabilityEntityResultDto class.
Declaration
[JsonConstructor]
protected DeliverabilityEntityResultDto()
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 SourceEntityId
Gets or Sets EntityId
Declaration
[DataMember(Name = "entityId", IsRequired = true, EmitDefaultValue = true)]
public Guid EntityId { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
EntityLabel
Gets or Sets EntityLabel
Declaration
[DataMember(Name = "entityLabel", IsRequired = true, EmitDefaultValue = true)]
public string EntityLabel { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EvaluatedAt
Gets or Sets EvaluatedAt
Declaration
[DataMember(Name = "evaluatedAt", EmitDefaultValue = true)]
public DateTime? EvaluatedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
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> |
Matched
Gets or Sets Matched
Declaration
[DataMember(Name = "matched", IsRequired = true, EmitDefaultValue = true)]
public bool Matched { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
MatchedExpectationCount
Gets or Sets MatchedExpectationCount
Declaration
[DataMember(Name = "matchedExpectationCount", IsRequired = true, EmitDefaultValue = true)]
public int MatchedExpectationCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
PhoneCountry
Gets or Sets PhoneCountry
Declaration
[DataMember(Name = "phoneCountry", EmitDefaultValue = true)]
public DeliverabilityEntityResultDto.PhoneCountryEnum? PhoneCountry { get; set; }
Property Value
| Type | Description |
|---|---|
| DeliverabilityEntityResultDto.PhoneCountryEnum? |
PhoneVariant
Gets or Sets PhoneVariant
Declaration
[DataMember(Name = "phoneVariant", EmitDefaultValue = true)]
public DeliverabilityEntityResultDto.PhoneVariantEnum? PhoneVariant { get; set; }
Property Value
| Type | Description |
|---|---|
| DeliverabilityEntityResultDto.PhoneVariantEnum? |
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 SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |