Search Results for

    Show / Hide Table of Contents

    Class CreatePortalUserOptions

    CreatePortalUserOptions

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

    Constructors

    View Source

    CreatePortalUserOptions(string, string, string, bool, Guid, CreateInboxDto)

    Initializes a new instance of the CreatePortalUserOptions class.

    Declaration
    public CreatePortalUserOptions(string password = null, string name = null, string username = null, bool skipInboxCreation = false, Guid inboxId = default, CreateInboxDto createInboxOptions = null)
    Parameters
    Type Name Description
    string password

    password.

    string name

    name.

    string username

    username.

    bool skipInboxCreation

    skipInboxCreation.

    Guid inboxId

    inboxId.

    CreateInboxDto createInboxOptions

    createInboxOptions.

    Properties

    View Source

    CreateInboxOptions

    Gets or Sets CreateInboxOptions

    Declaration
    [DataMember(Name = "createInboxOptions", EmitDefaultValue = false)]
    public CreateInboxDto CreateInboxOptions { get; set; }
    Property Value
    Type Description
    CreateInboxDto
    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

    Name

    Gets or Sets Name

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

    Password

    Gets or Sets Password

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

    SkipInboxCreation

    Gets or Sets SkipInboxCreation

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

    Username

    Gets or Sets Username

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