Class UserDetails
UserDetails
Inheritance
System.Object
UserDetails
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: KuberWMS.Models
Assembly: KuberWMS.dll
Syntax
public class UserDetails
Properties
Gets or Sets Email
Declaration
[JsonProperty("email")]
public string Email { get; }
Property Value
Type | Description |
---|---|
System. |
FirstName
Gets or Sets FirstName
Declaration
[JsonProperty("first_name")]
public string FirstName { get; set; }
Property Value
Type | Description |
---|---|
System. |
LastName
Gets or Sets LastName
Declaration
[JsonProperty("last_name")]
public string LastName { get; set; }
Property Value
Type | Description |
---|---|
System. |
Pk
Gets or Sets Pk
Declaration
[JsonProperty("pk")]
public int? Pk { get; }
Property Value
Type | Description |
---|---|
System. |
Username
Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
Declaration
[JsonProperty("username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
System. |
Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. |
Methods
ToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System. |
JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
String presentation of the object |
Overrides
System.Object.ToString()