Search Results for

    Show / Hide Table of Contents

    Class EmailBlacklistIpResult

    Blacklist lookup results for a single IP address

    Inheritance
    object
    EmailBlacklistIpResult
    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 = "EmailBlacklistIpResult")]
    public class EmailBlacklistIpResult : IValidatableObject

    Constructors

    View Source

    EmailBlacklistIpResult()

    Initializes a new instance of the EmailBlacklistIpResult class.

    Declaration
    [JsonConstructor]
    protected EmailBlacklistIpResult()
    View Source

    EmailBlacklistIpResult(string, string, List<EmailBlacklistListingResult>)

    Initializes a new instance of the EmailBlacklistIpResult class.

    Declaration
    public EmailBlacklistIpResult(string ipAddress = null, string source = null, List<EmailBlacklistListingResult> listings = null)
    Parameters
    Type Name Description
    string ipAddress

    ipAddress (required).

    string source

    source (required).

    List<EmailBlacklistListingResult> listings

    listings (required).

    Properties

    View Source

    IpAddress

    Gets or Sets IpAddress

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

    Listings

    Gets or Sets Listings

    Declaration
    [DataMember(Name = "listings", IsRequired = true, EmitDefaultValue = true)]
    public List<EmailBlacklistListingResult> Listings { get; set; }
    Property Value
    Type Description
    List<EmailBlacklistListingResult>
    View Source

    Source

    Gets or Sets Source

    Declaration
    [DataMember(Name = "source", IsRequired = true, EmitDefaultValue = true)]
    public string Source { 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.