Search Results for

    Show / Hide Table of Contents

    Class SpfMechanismResult

    SpfMechanismResult

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

    Constructors

    View Source

    SpfMechanismResult()

    Initializes a new instance of the SpfMechanismResult class.

    Declaration
    [JsonConstructor]
    protected SpfMechanismResult()
    View Source

    SpfMechanismResult(string, string, string)

    Initializes a new instance of the SpfMechanismResult class.

    Declaration
    public SpfMechanismResult(string kind = null, string value = null, string qualifier = null)
    Parameters
    Type Name Description
    string kind

    kind (required).

    string value

    value.

    string qualifier

    qualifier.

    Properties

    View Source

    Kind

    Gets or Sets Kind

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

    Qualifier

    Gets or Sets Qualifier

    Declaration
    [DataMember(Name = "qualifier", EmitDefaultValue = false)]
    public string Qualifier { get; set; }
    Property Value
    Type Description
    string
    View Source

    Value

    Gets or Sets Value

    Declaration
    [DataMember(Name = "value", EmitDefaultValue = false)]
    public string Value { 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.