sealed class InboxProcessResponse
Represents response object for processing inbox messages general there are two possible states of process result success state InboxProcessResponse.Success and error state InboxProcessResponse.Error
Error |
Represents error state if inbox process result data class Error : InboxProcessResponse |
Success |
Represents success state if inbox process result data class Success : InboxProcessResponse |
inboxId |
id of processed inbox message open val inboxId: String |