Class InboxExistsDto
Result of email exists query
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "InboxExistsDto")]
public class InboxExistsDto : IValidatableObject
Constructors
View SourceInboxExistsDto()
Initializes a new instance of the InboxExistsDto class.
Declaration
[JsonConstructor]
protected InboxExistsDto()
InboxExistsDto(bool, bool?, bool?)
Initializes a new instance of the InboxExistsDto class.
Declaration
public InboxExistsDto(bool exists = false, bool? softBounce = null, bool? hardBounce = null)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | exists | exists (required). |
| bool? | softBounce | Inbox is full or simulating a soft bounce via inbox replier or rulesets. |
| bool? | hardBounce | Inbox is blocking receiving emails or simulating a hard bounce via inbox replier or rulesets. |
Properties
View SourceExists
Gets or Sets Exists
Declaration
[DataMember(Name = "exists", IsRequired = true, EmitDefaultValue = true)]
public bool Exists { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
HardBounce
Inbox is blocking receiving emails or simulating a hard bounce via inbox replier or rulesets
Declaration
[DataMember(Name = "hardBounce", EmitDefaultValue = true)]
public bool? HardBounce { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Inbox is blocking receiving emails or simulating a hard bounce via inbox replier or rulesets |
SoftBounce
Inbox is full or simulating a soft bounce via inbox replier or rulesets
Declaration
[DataMember(Name = "softBounce", EmitDefaultValue = true)]
public bool? SoftBounce { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Inbox is full or simulating a soft bounce via inbox replier or rulesets |
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 |