Search Results for

    Show / Hide Table of Contents

    Class CheckEmailBodyResults

    CheckEmailBodyResults

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

    Constructors

    View Source

    CheckEmailBodyResults()

    Initializes a new instance of the CheckEmailBodyResults class.

    Declaration
    [JsonConstructor]
    protected CheckEmailBodyResults()
    View Source

    CheckEmailBodyResults(bool, List<LinkIssue>, List<ImageIssue>, List<SpellingIssue>)

    Initializes a new instance of the CheckEmailBodyResults class.

    Declaration
    public CheckEmailBodyResults(bool hasIssues = false, List<LinkIssue> linkIssues = null, List<ImageIssue> imageIssues = null, List<SpellingIssue> spellingIssues = null)
    Parameters
    Type Name Description
    bool hasIssues

    hasIssues (required).

    List<LinkIssue> linkIssues

    linkIssues (required).

    List<ImageIssue> imageIssues

    imageIssues (required).

    List<SpellingIssue> spellingIssues

    spellingIssues (required).

    Properties

    View Source

    HasIssues

    Gets or Sets HasIssues

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

    ImageIssues

    Gets or Sets ImageIssues

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

    LinkIssues

    Gets or Sets LinkIssues

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

    SpellingIssues

    Gets or Sets SpellingIssues

    Declaration
    [DataMember(Name = "spellingIssues", IsRequired = true, EmitDefaultValue = true)]
    public List<SpellingIssue> SpellingIssues { get; set; }
    Property Value
    Type Description
    List<SpellingIssue>

    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.