Class DeliverabilityPollStatusResultDto
Polling response for deliverability test progress
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DeliverabilityPollStatusResultDto")]
public class DeliverabilityPollStatusResultDto : IValidatableObject
Constructors
View SourceDeliverabilityPollStatusResultDto()
Initializes a new instance of the DeliverabilityPollStatusResultDto class.
Declaration
[JsonConstructor]
protected DeliverabilityPollStatusResultDto()
DeliverabilityPollStatusResultDto(DeliverabilityTestDto, bool, long, DateTime?)
Initializes a new instance of the DeliverabilityPollStatusResultDto class.
Declaration
public DeliverabilityPollStatusResultDto(DeliverabilityTestDto test = null, bool cached = false, long cacheWindowSeconds = 0, DateTime? nextRefreshAt = null)
Parameters
| Type | Name | Description |
|---|---|---|
| DeliverabilityTestDto | test | test (required). |
| bool | cached | cached (required). |
| long | cacheWindowSeconds | cacheWindowSeconds (required). |
| DateTime? | nextRefreshAt | nextRefreshAt. |
Properties
View SourceCacheWindowSeconds
Gets or Sets CacheWindowSeconds
Declaration
[DataMember(Name = "cacheWindowSeconds", IsRequired = true, EmitDefaultValue = true)]
public long CacheWindowSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Cached
Gets or Sets Cached
Declaration
[DataMember(Name = "cached", IsRequired = true, EmitDefaultValue = true)]
public bool Cached { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
NextRefreshAt
Gets or Sets NextRefreshAt
Declaration
[DataMember(Name = "nextRefreshAt", EmitDefaultValue = true)]
public DateTime? NextRefreshAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
Test
Gets or Sets Test
Declaration
[DataMember(Name = "test", IsRequired = true, EmitDefaultValue = true)]
public DeliverabilityTestDto Test { get; set; }
Property Value
| Type | Description |
|---|---|
| DeliverabilityTestDto |
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 |