Class User
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class User
Properties
EmailAddress
Email address of the user (doubles as username).
Declaration
[JsonProperty("emailAddress", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string EmailAddress { get; set; }
Property Value
string |
FirstName
User's first name.
Declaration
[JsonProperty("firstName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string FirstName { get; set; }
Property Value
string |
Id
User's Picturepark ID.
Declaration
[JsonProperty("id", Required = Required.Always)]
[Required]
public string Id { get; set; }
Property Value
string |
IsDeleted
Marks a user that was deleted from the system.
Declaration
[JsonProperty("isDeleted", Required = Required.Always)]
public bool IsDeleted { get; set; }
Property Value
bool |
LastName
User's last name.
Declaration
[JsonProperty("lastName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string LastName { get; set; }
Property Value
string |