Search Results for

    Show / Hide Table of Contents

    Class UserUpdateRequest

    Represents the updateable fields of the user.

    Inheritance
    object
    User
    UserUpdateRequest
    Inherited Members
    User.Id
    User.FirstName
    User.LastName
    User.EmailAddress
    User.IsDeleted
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class UserUpdateRequest : User

    Properties

    Address

    User's address.

    Declaration
    [JsonProperty("address", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public UserAddress Address { get; set; }
    Property Value
    UserAddress

    Comment

    Comment saved for the user.

    Declaration
    [JsonProperty("comment", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Comment { get; set; }
    Property Value
    string

    IdentityProviderId

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

    Declaration
    [JsonProperty("identityProviderId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string IdentityProviderId { get; set; }
    Property Value
    string

    LanguageCode

    Preferred language, e.g. for correspondence.

    Declaration
    [JsonProperty("languageCode", Required = Required.Always)]
    [Required]
    public string LanguageCode { get; set; }
    Property Value
    string

    UserRoles

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

    Declaration
    [JsonProperty("userRoles", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<UserRole> UserRoles { get; set; }
    Property Value
    ICollection<UserRole>

    Methods

    FromJson(string)

    Declaration
    public static UserUpdateRequest FromJson(string data)
    Parameters
    string data

    Returns
    UserUpdateRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX