Request

Response

    IUserAccount interface

    This interface represents the contract for the User Account. It defines the set of public members and methods that must be implemented by any class that aims to provide the functionality of the User Account.

    public interface IUserAccount
    

    Members

    namedescription
    Email { get; set; } This property represents the email of the user.
    FirstName { get; set; } This property represents the first name of the user.
    LastName { get; set; } This property represents the last name of the user.
    ThumbnailURL { get; set; } This property represents the URL to the thumbnail profile picture of the user.
    UserId { get; set; } This property represents the unique user ID.

    See Also