Search Results for

    Show / Hide Table of Contents

    Class User

    Inheritance
    System.Object
    User
    UserDetail
    UserUpdateRequest
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class User

    Properties

    EmailAddress

    Email address of the user (doubles as username).

    Declaration
    public string EmailAddress { get; set; }
    Property Value
    System.String

    FirstName

    User's first name.

    Declaration
    public string FirstName { get; set; }
    Property Value
    System.String

    Id

    User's Picturepark ID.

    Declaration
    public string Id { get; set; }
    Property Value
    System.String

    IsDeleted

    Marks a user that was deleted from the system.

    Declaration
    public bool IsDeleted { get; set; }
    Property Value
    System.Boolean

    LastName

    User's last name.

    Declaration
    public string LastName { get; set; }
    Property Value
    System.String

    Methods

    FromJson(String)

    Declaration
    public static User FromJson(string data)
    Parameters
    System.String data

    Returns
    User

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX