SensibillUser

class SensibillUser(var tokenType: String?, var accessToken: String?, var refreshToken: String?, var tokenId: String?, var expiresIn: Int?, var refreshExpiresIn: Int?, var mAccessId: String) : Serializable

Class that defines the Authentication properties of a Sensibill User

Constructors

Link copied to clipboard
constructor(tokenType: String?, accessToken: String?, refreshToken: String?, tokenId: String?, expiresIn: Int?, refreshExpiresIn: Int?, mAccessId: String)

Properties

Link copied to clipboard

Token which uniquely identifies a users session. Used to make API calls on behalf of the user

Link copied to clipboard

The number of seconds until access token expires

Link copied to clipboard

User identifier

Link copied to clipboard

String representation of the date when the access token will expire

Link copied to clipboard

String representation of the date when the refresh token will expire

Link copied to clipboard

The number of seconds until refresh token expires

Link copied to clipboard

Token which is used to obtain a new access token on behalf of user

Link copied to clipboard

The unique identifier of the access token

Link copied to clipboard

The type of the token. For Sensibill Users currently always "bearer"