Package io.revenuemonster.sdk.model

Types

Credential
Link copied to clipboard
common
data class Credential(accessToken: String, tokenType: String, expiresIn: Int, refreshToken: String, refreshTokenExpiresIn: Int)
Error
Link copied to clipboard
common
data class Error(error: ErrorDetail) : Throwable
ErrorCode
Link copied to clipboard
common
enum ErrorCode : Enum<ErrorCode>
ErrorDetail
Link copied to clipboard
common
data class ErrorDetail(code: String, message: String)
Item
Link copied to clipboard
common
data class Item<T>(item: T, code: String)
Items
Link copied to clipboard
common
data class Items<T>(items: List<T>, code: String)
ItemsC
Link copied to clipboard
common
data class ItemsC<T>(items: List<T>, cursor: String)
Payment
Link copied to clipboard
common
data class Payment(referenceId: String, transactionId: String, status: String)
Response
Link copied to clipboard
common
data class Response(code: String)