Class UpdateCampaignProbeOptions
Update options for a campaign probe
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "UpdateCampaignProbeOptions")]
public class UpdateCampaignProbeOptions : IValidatableObject
Constructors
View SourceUpdateCampaignProbeOptions(string, bool?, long?, bool?)
Initializes a new instance of the UpdateCampaignProbeOptions class.
Declaration
public UpdateCampaignProbeOptions(string name = null, bool? enabled = null, long? intervalSeconds = null, bool? schedulingEnabled = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | Optional display name. |
| bool? | enabled | Enable or disable SES monitor ingestion for this probe. |
| long? | intervalSeconds | Scheduled run interval in seconds. |
| bool? | schedulingEnabled | Enable or disable scheduled campaign probe runs. Direct run-now remains available.. |
Properties
View SourceEnabled
Enable or disable SES monitor ingestion for this probe
Declaration
[DataMember(Name = "enabled", EmitDefaultValue = true)]
public bool? Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Enable or disable SES monitor ingestion for this probe |
IntervalSeconds
Scheduled run interval in seconds
Declaration
[DataMember(Name = "intervalSeconds", EmitDefaultValue = true)]
public long? IntervalSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| long? | Scheduled run interval in seconds |
Name
Optional display name
Declaration
[DataMember(Name = "name", EmitDefaultValue = true)]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Optional display name |
SchedulingEnabled
Enable or disable scheduled campaign probe runs. Direct run-now remains available.
Declaration
[DataMember(Name = "schedulingEnabled", EmitDefaultValue = true)]
public bool? SchedulingEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Enable or disable scheduled campaign probe runs. Direct run-now remains available. |
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 |