data class Oauth2AccessToken(var accessToken: String, var tokenType: String, var expiresIn: Int, var scope: String? = null, var refreshToken: String? = null, var refreshTokenExpiredIn: Int? = null)
This class represents the OAuth2 access token used for authentication with the MTN MOMO API.