Search Results for

    Show / Hide Table of Contents

    Class EmailBlacklistListingResult

    Blacklist lookup result for a single zone

    Inheritance
    object
    EmailBlacklistListingResult
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "EmailBlacklistListingResult")]
    public class EmailBlacklistListingResult : IValidatableObject

    Constructors

    View Source

    EmailBlacklistListingResult()

    Initializes a new instance of the EmailBlacklistListingResult class.

    Declaration
    [JsonConstructor]
    protected EmailBlacklistListingResult()
    View Source

    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 Source

    Listed

    Gets or Sets Listed

    Declaration
    [DataMember(Name = "listed", IsRequired = true, EmitDefaultValue = true)]
    public bool Listed { get; set; }
    Property Value
    Type Description
    bool
    View Source

    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>
    View Source

    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>
    View Source

    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 Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.