Class CampaignProbeRunDueResult
CampaignProbeRunDueResult
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "CampaignProbeRunDueResult")]
public class CampaignProbeRunDueResult : IValidatableObject
Constructors
View SourceCampaignProbeRunDueResult()
Initializes a new instance of the CampaignProbeRunDueResult class.
Declaration
[JsonConstructor]
protected CampaignProbeRunDueResult()
CampaignProbeRunDueResult(TriggerSourceEnum, int, int, int, int, DateTime)
Initializes a new instance of the CampaignProbeRunDueResult class.
Declaration
public CampaignProbeRunDueResult(CampaignProbeRunDueResult.TriggerSourceEnum triggerSource = (CampaignProbeRunDueResult.TriggerSourceEnum)0, int runCount = 0, int dueProbeCount = 0, int skippedCount = 0, int requestedMaxRuns = 0, DateTime executedAt = default)
Parameters
| Type | Name | Description |
|---|---|---|
| CampaignProbeRunDueResult.TriggerSourceEnum | triggerSource | triggerSource (required). |
| int | runCount | runCount (required). |
| int | dueProbeCount | dueProbeCount (required). |
| int | skippedCount | skippedCount (required). |
| int | requestedMaxRuns | requestedMaxRuns (required). |
| DateTime | executedAt | executedAt (required). |
Properties
View SourceDueProbeCount
Gets or Sets DueProbeCount
Declaration
[DataMember(Name = "dueProbeCount", IsRequired = true, EmitDefaultValue = true)]
public int DueProbeCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ExecutedAt
Gets or Sets ExecutedAt
Declaration
[DataMember(Name = "executedAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime ExecutedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
RequestedMaxRuns
Gets or Sets RequestedMaxRuns
Declaration
[DataMember(Name = "requestedMaxRuns", IsRequired = true, EmitDefaultValue = true)]
public int RequestedMaxRuns { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
RunCount
Gets or Sets RunCount
Declaration
[DataMember(Name = "runCount", IsRequired = true, EmitDefaultValue = true)]
public int RunCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
SkippedCount
Gets or Sets SkippedCount
Declaration
[DataMember(Name = "skippedCount", IsRequired = true, EmitDefaultValue = true)]
public int SkippedCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
TriggerSource
Gets or Sets TriggerSource
Declaration
[DataMember(Name = "triggerSource", IsRequired = true, EmitDefaultValue = true)]
public CampaignProbeRunDueResult.TriggerSourceEnum TriggerSource { get; set; }
Property Value
| Type | Description |
|---|---|
| CampaignProbeRunDueResult.TriggerSourceEnum |
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 |