Table of Contents

Class TokenRequestModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

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

string

Password

The password that is used to authenticate the user.

[JsonProperty("Password", Required = Required.Always)]
[Required]
public string Password { get; set; }

Property Value

string

UserName

The username that is used to sign in.

[JsonProperty("UserName", Required = Required.Always)]
[Required]
[StringLength(50, MinimumLength = 1)]
public string UserName { get; set; }

Property Value

string