Class GuestPortalDto
GuestPortalDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "GuestPortalDto")]
public class GuestPortalDto : IValidatableObject
Constructors
View SourceGuestPortalDto()
Initializes a new instance of the GuestPortalDto class.
Declaration
[JsonConstructor]
protected GuestPortalDto()
GuestPortalDto(Guid, Guid, Guid, string, string, string, DateTime, DateTime, string)
Initializes a new instance of the GuestPortalDto class.
Declaration
public GuestPortalDto(Guid id = default, Guid domainId = default, Guid userId = default, string name = null, string description = null, string linkHelp = null, DateTime createdAt = default, DateTime updatedAt = default, string loginUrl = null)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | id (required). |
Guid | domainId | domainId. |
Guid | userId | userId (required). |
string | name | name. |
string | description | description. |
string | linkHelp | linkHelp. |
DateTime | createdAt | createdAt (required). |
DateTime | updatedAt | updatedAt (required). |
string | loginUrl | loginUrl (required). |
Properties
View SourceCreatedAt
Gets or Sets CreatedAt
Declaration
[DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Description
Gets or Sets Description
Declaration
[DataMember(Name = "description", EmitDefaultValue = false)]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
DomainId
Gets or Sets DomainId
Declaration
[DataMember(Name = "domainId", EmitDefaultValue = false)]
public Guid DomainId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid |
LinkHelp
Gets or Sets LinkHelp
Declaration
[DataMember(Name = "linkHelp", EmitDefaultValue = false)]
public string LinkHelp { get; set; }
Property Value
Type | Description |
---|---|
string |
LoginUrl
Gets or Sets LoginUrl
Declaration
[DataMember(Name = "loginUrl", IsRequired = true, EmitDefaultValue = true)]
public string LoginUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or Sets Name
Declaration
[DataMember(Name = "name", EmitDefaultValue = false)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
UpdatedAt
Gets or Sets UpdatedAt
Declaration
[DataMember(Name = "updatedAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime UpdatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
UserId
Gets or Sets UserId
Declaration
[DataMember(Name = "userId", IsRequired = true, EmitDefaultValue = true)]
public Guid UserId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
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 |