Settings

class Settings @Inject constructor

Contains general settings used in the library.

This class provides methods for generating UUIDs, formatting phone numbers, retrieving product subscription keys, and checking notification message lengths.

Constructors

Link copied to clipboard
@Inject
constructor()

Properties

Link copied to clipboard

Connection timeout duration in milliseconds.

Link copied to clipboard

Connection read timeout duration in milliseconds.

Link copied to clipboard

Connection write timeout duration in milliseconds.

Functions

Link copied to clipboard
fun checkNotificationMessageLength(notificationMessage: String?, notificationMessageMaxLength: Long = MomoConstants.NOTIFICATION_MESSAGE_LENGTH): Boolean

Checks if the length of the notification message is within the allowed limit.

Link copied to clipboard
fun formatPhoneNumber(phoneNumber: String, countryCode: String): String?

Formats the phone number based on the provided country code.

Link copied to clipboard
fun generateTransactionFromResponse(response: Response<ResponseBody?>): MomoTransaction?

Generates a MomoTransaction object from the given response.

Link copied to clipboard

Generates a new UUID as a String.