Search Results for

    Show / Hide Table of Contents

    Class UserProfile

    User profile.

    Inheritance
    object
    UserProfile
    Inherited Members
    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 UserProfile

    Properties

    Address

    Address.

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

    AuthorizationState

    Authorization state.

    Declaration
    [JsonProperty("authorizationState", Required = Required.Always)]
    [Required(AllowEmptyStrings = true)]
    [JsonConverter(typeof(StringEnumConverter))]
    public AuthorizationState AuthorizationState { get; set; }
    Property Value
    AuthorizationState

    EmailAddress

    Email address.

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

    FirstName

    First name.

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

    Id

    ID of the user.

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

    IsAnonymousUser

    Anonymous user is the automatically logged in user if public access is allowed.

    Declaration
    [JsonProperty("isAnonymousUser", Required = Required.Always)]
    public bool IsAnonymousUser { get; set; }
    Property Value
    bool

    IsDeveloper

    Indicates if the user has the developer flag set.

    Declaration
    [JsonProperty("isDeveloper", Required = Required.Always)]
    public bool IsDeveloper { get; set; }
    Property Value
    bool

    IsFederated

    Federated user is a user who is (currently) governed by an external identity provider.

    Declaration
    [JsonProperty("isFederated", Required = Required.Always)]
    public bool IsFederated { get; set; }
    Property Value
    bool

    IsLocked

    Indicates if the user is locked.

    Declaration
    [JsonProperty("isLocked", Required = Required.Always)]
    public bool IsLocked { get; set; }
    Property Value
    bool

    LanguageCode

    Language code.

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

    LastName

    Last name.

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

    SystemUserRoles

    A list of system user roles assigned to the user.

    Declaration
    [JsonProperty("systemUserRoles", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore, ItemConverterType = typeof(StringEnumConverter))]
    public ICollection<SystemUserRole> SystemUserRoles { get; set; }
    Property Value
    ICollection<SystemUserRole>

    TermsConsentExpired

    Indicates if the user has not accepted the latest terms of consent.

    Declaration
    [JsonProperty("termsConsentExpired", Required = Required.Always)]
    public bool TermsConsentExpired { get; set; }
    Property Value
    bool

    UserRights

    A list of user rights assigned to the user.

    Declaration
    [JsonProperty("userRights", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore, ItemConverterType = typeof(StringEnumConverter))]
    public ICollection<UserRight> UserRights { get; set; }
    Property Value
    ICollection<UserRight>

    UserRoleIds

    A list of user role IDs assigned to the user.

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

    Methods

    FromJson(string)

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

    Returns
    UserProfile

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX