Class EmailBlacklistListingResult
Blacklist lookup result for a single zone
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "EmailBlacklistListingResult")]
public class EmailBlacklistListingResult : IValidatableObject
Constructors
View SourceEmailBlacklistListingResult()
Initializes a new instance of the EmailBlacklistListingResult class.
Declaration
[JsonConstructor]
protected EmailBlacklistListingResult()
EmailBlacklistListingResult(string, bool, List<string>, List<string>)
Initializes a new instance of the EmailBlacklistListingResult class.
Declaration
public EmailBlacklistListingResult(string zone = null, bool listed = false, List<string> responseCodes = null, List<string> responseMessages = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | zone | zone (required). |
| bool | listed | listed (required). |
| List<string> | responseCodes | responseCodes (required). |
| List<string> | responseMessages | responseMessages (required). |
Properties
View SourceListed
Gets or Sets Listed
Declaration
[DataMember(Name = "listed", IsRequired = true, EmitDefaultValue = true)]
public bool Listed { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
ResponseCodes
Gets or Sets ResponseCodes
Declaration
[DataMember(Name = "responseCodes", IsRequired = true, EmitDefaultValue = true)]
public List<string> ResponseCodes { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
ResponseMessages
Gets or Sets ResponseMessages
Declaration
[DataMember(Name = "responseMessages", IsRequired = true, EmitDefaultValue = true)]
public List<string> ResponseMessages { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Zone
Gets or Sets Zone
Declaration
[DataMember(Name = "zone", IsRequired = true, EmitDefaultValue = true)]
public string Zone { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |