Class GuestPortalUserCreateDto
GuestPortalUserCreateDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "GuestPortalUserCreateDto")]
public class GuestPortalUserCreateDto : IValidatableObject
Constructors
View SourceGuestPortalUserCreateDto()
Initializes a new instance of the GuestPortalUserCreateDto class.
Declaration
[JsonConstructor]
protected GuestPortalUserCreateDto()
GuestPortalUserCreateDto(GuestPortalUserDto, string)
Initializes a new instance of the GuestPortalUserCreateDto class.
Declaration
public GuestPortalUserCreateDto(GuestPortalUserDto guest = null, string password = null)
Parameters
| Type | Name | Description |
|---|---|---|
| GuestPortalUserDto | guest | guest (required). |
| string | password | password (required). |
Properties
View SourceGuest
Gets or Sets Guest
Declaration
[DataMember(Name = "guest", IsRequired = true, EmitDefaultValue = true)]
public GuestPortalUserDto Guest { get; set; }
Property Value
| Type | Description |
|---|---|
| GuestPortalUserDto |
Password
Gets or Sets Password
Declaration
[DataMember(Name = "password", IsRequired = true, EmitDefaultValue = true)]
public string Password { 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 |