DefaultSource

class DefaultSource @Inject constructor(authenticationService: AuthenticationService, commonService: CommonService)

DefaultSource is responsible for handling API calls related to user management and authentication in the MTN MOMO SDK.

This class acts as a bridge between the repository and the authentication service, providing methods to create API users, retrieve user details, create API keys, and obtain access tokens.

Constructors

Link copied to clipboard
@Inject
constructor(authenticationService: AuthenticationService, commonService: CommonService)

Functions

Link copied to clipboard
suspend fun createApiKey(apiVersion: String, userId: String, productSubscriptionKey: String): Response<ApiKey>

Creates a new API key for the specified API user.

Link copied to clipboard
suspend fun createApiUser(providerCallBackHost: ProviderCallBackHost, apiVersion: String, uuid: String, productSubscriptionKey: String): Response<ApiUser>

Creates a new API user.

Link copied to clipboard
suspend fun getAccessToken(productType: String, productSubscriptionKey: String): Response<AccessToken>

Obtains an access token for the specified product type.

Link copied to clipboard
suspend fun getAccountBalance(productType: String, apiVersion: String, productSubscriptionKey: String, environment: String): Response<AccountBalance>

Retrieves the account balance for a specified product type. This only works with the ProductType.COLLECTION. It seems to break with the other API product type.

Link copied to clipboard
suspend fun getAccountBalanceInSpecificCurrency(productType: String, apiVersion: String, currency: String, productSubscriptionKey: String, environment: String): Response<AccountBalance>

Retrieves the account balance in a specific currency. This only works with the ProductType.COLLECTION. It seems to break with the other API product type.

Link copied to clipboard
suspend fun getApiUser(apiVersion: String, userId: String, productSubscriptionKey: String): Response<ApiUser>

Retrieves the details of an existing API user.

Link copied to clipboard
suspend fun getBasicUserInfo(productType: String, apiVersion: String, accountHolder: String, productSubscriptionKey: String, environment: String): Response<BasicUserInfo>

Retrieves the basic user information for a specified MTN MOMO user.

Link copied to clipboard
suspend fun getOauth2AccessToken(productType: String, productSubscriptionKey: String, environment: String): Response<Oauth2AccessToken>

Retrieves an OAuth2 access token for the specified product type.

Link copied to clipboard
suspend fun getTransferStatus(productType: String, apiVersion: String, referenceId: String, productSubscriptionKey: String, environment: String): Response<ResponseBody>

Retrieves the status of a transfer for a specified product type.

Link copied to clipboard
suspend fun getUserInfoWithConsent(productType: String, apiVersion: String, productSubscriptionKey: String, environment: String): Response<UserInfoWithConsent>

Retrieves user information with consent for a specified product type.

Link copied to clipboard
suspend fun requestToPayDeliveryNotification(productType: String, apiVersion: String, referenceId: String, momoNotification: MomoNotification, productSubscriptionKey: String, environment: String): Response<ResponseBody>

Sends a delivery notification for a request to pay.

Link copied to clipboard
suspend fun transfer(productType: String, apiVersion: String, momoTransaction: MomoTransaction, uuid: String, productSubscriptionKey: String, environment: String): Response<Unit>

Initiates a transfer for a specified product type.

Link copied to clipboard
suspend fun validateAccountHolderStatus(productType: String, apiVersion: String, accountHolder: AccountHolder, productSubscriptionKey: String, environment: String): Response<ResponseBody>

Validates the status of an account holder.