Search Results for

    Show / Hide Table of Contents

    Class UserUpdateRequest

    Represents the updateable fields of the user.

    Inheritance
    System.Object
    User
    UserUpdateRequest
    Inherited Members
    User.Id
    User.FirstName
    User.LastName
    User.EmailAddress
    User.IsDeleted
    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 UserUpdateRequest : User

    Properties

    Address

    User's address.

    Declaration
    public UserAddress Address { get; set; }
    Property Value
    UserAddress

    Comment

    Comment saved for the user.

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

    IdentityProviderId

    Identity provider that governs this user or null for Picturepark's own IdentityServer.

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

    LanguageCode

    Preferred language, e.g. for correspondence.

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

    UserRoles

    User roles the user should be assigned to. Overwrites the original user roles.

    Declaration
    public ICollection<UserRole> UserRoles { get; set; }
    Property Value
    System.Collections.Generic.ICollection<UserRole>

    Methods

    FromJson(String)

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

    Returns
    UserUpdateRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX