Contact Us Service
interface ContactUsService
Service responsible for retrieving contact us categorization information.
Functions
Link copied to clipboard
abstract suspend fun createContactUsMessage(request: ContactUsMessageRequest): ContactUsMessageResponse
Submits a contact request containing a message and optional attachments. The request body uses multipart/form-data content type.
Link copied to clipboard
open fun createContactUsMessageAsync(request: ContactUsMessageRequest, cancellationSignal: CancellationSignal?, callback: WalletCallback<ContactUsMessageResponse>)
Asynchronously submits a contact request containing a message and optional attachments. The request body uses multipart/form-data content type.
Link copied to clipboard
abstract suspend fun getContactUsCategorization(categories: List<String>?, topics: List<String>?): ContactUsCategorizationResponse
Returns all categories and their related topics used to create a support request.
Link copied to clipboard
open fun getContactUsCategorizationAsync(categories: List<String>?, topics: List<String>?, cancellationSignal: CancellationSignal?, callback: WalletCallback<ContactUsCategorizationResponse>)
Asynchronously get all categories and their related topics used to create a support request.