Search Results for

    Show / Hide Table of Contents

    Class GuestPortalDto

    GuestPortalDto

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

    Constructors

    View Source

    GuestPortalDto()

    Initializes a new instance of the GuestPortalDto class.

    Declaration
    [JsonConstructor]
    protected GuestPortalDto()
    View Source

    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 Source

    CreatedAt

    Gets or Sets CreatedAt

    Declaration
    [DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
    public DateTime CreatedAt { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    Description

    Gets or Sets Description

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

    DomainId

    Gets or Sets DomainId

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

    Id

    Gets or Sets Id

    Declaration
    [DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    LinkHelp

    Gets or Sets LinkHelp

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

    LoginUrl

    Gets or Sets LoginUrl

    Declaration
    [DataMember(Name = "loginUrl", IsRequired = true, EmitDefaultValue = true)]
    public string LoginUrl { get; set; }
    Property Value
    Type Description
    string
    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

    UpdatedAt

    Gets or Sets UpdatedAt

    Declaration
    [DataMember(Name = "updatedAt", IsRequired = true, EmitDefaultValue = true)]
    public DateTime UpdatedAt { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    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 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.