AccessToken

@Serializable
data class AccessToken(var accessToken: String, var tokenType: String, var expiresIn: String)

Data class representing an access token received from the MTN MOMO API.

Constructors

Link copied to clipboard
constructor(accessToken: String, tokenType: String, expiresIn: String)

Properties

Link copied to clipboard
@SerializedName(value = "access_token")
var accessToken: String

The access token as a String.

Link copied to clipboard
@SerializedName(value = "expires_in")
var expiresIn: String

The duration in which the token expires.

Link copied to clipboard
@SerializedName(value = "token_type")
var tokenType: String

The type of the token (e.g., Bearer).