Class TokenRequestModel
The credentials used to sign in to the Nfield Api
public class TokenRequestModel
- Inheritance
-
TokenRequestModel
- Inherited Members
Properties
DomainName
The domain to sign in to.
[JsonProperty("DomainName", Required = Required.Always)]
[Required]
[StringLength(50, MinimumLength = 1)]
public string DomainName { get; set; }
Property Value
Password
The password that is used to authenticate the user.
[JsonProperty("Password", Required = Required.Always)]
[Required]
public string Password { get; set; }
Property Value
UserName
The username that is used to sign in.
[JsonProperty("UserName", Required = Required.Always)]
[Required]
[StringLength(50, MinimumLength = 1)]
public string UserName { get; set; }