Search Results for

    Show / Hide Table of Contents

    Class CreateOAuthExchangeResult

    CreateOAuthExchangeResult

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

    Constructors

    View Source

    CreateOAuthExchangeResult()

    Initializes a new instance of the CreateOAuthExchangeResult class.

    Declaration
    [JsonConstructor]
    protected CreateOAuthExchangeResult()
    View Source

    CreateOAuthExchangeResult(bool, Guid, string)

    Initializes a new instance of the CreateOAuthExchangeResult class.

    Declaration
    public CreateOAuthExchangeResult(bool success = false, Guid inboxId = default, string error = null)
    Parameters
    Type Name Description
    bool success

    success (required).

    Guid inboxId

    inboxId.

    string error

    error.

    Properties

    View Source

    Error

    Gets or Sets Error

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

    InboxId

    Gets or Sets InboxId

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

    Success

    Gets or Sets Success

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

    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.