Class CreatePortalUserOptions
CreatePortalUserOptions
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "CreatePortalUserOptions")]
public class CreatePortalUserOptions : IValidatableObject
Constructors
View SourceCreatePortalUserOptions(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 SourceCreateInboxOptions
Gets or Sets CreateInboxOptions
Declaration
[DataMember(Name = "createInboxOptions", EmitDefaultValue = false)]
public CreateInboxDto CreateInboxOptions { get; set; }
Property Value
Type | Description |
---|---|
CreateInboxDto |
InboxId
Gets or Sets InboxId
Declaration
[DataMember(Name = "inboxId", EmitDefaultValue = false)]
public Guid InboxId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Name
Gets or Sets Name
Declaration
[DataMember(Name = "name", EmitDefaultValue = false)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Password
Gets or Sets Password
Declaration
[DataMember(Name = "password", EmitDefaultValue = false)]
public string Password { get; set; }
Property Value
Type | Description |
---|---|
string |
SkipInboxCreation
Gets or Sets SkipInboxCreation
Declaration
[DataMember(Name = "skipInboxCreation", EmitDefaultValue = true)]
public bool SkipInboxCreation { get; set; }
Property Value
Type | Description |
---|---|
bool |
Username
Gets or Sets Username
Declaration
[DataMember(Name = "username", EmitDefaultValue = false)]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | String presentation of the object |