GetDocumentErrorDto

data class GetDocumentErrorDto(errorDescription: String, code: String)

Describes the error related to the request if there was a failure

Parameters

errorDescription

An in depth description of the error for the request

code

A unique code to help idenifty the type of error

Constructors

GetDocumentErrorDto
Link copied to clipboard
fun GetDocumentErrorDto(errorDescription: String, code: String)
An in depth description of the error for the request

Properties

code
Link copied to clipboard
@SerializedName(value = code)
val code: String
A unique code to help idenifty the type of error
errorDescription
Link copied to clipboard
@SerializedName(value = errorDescription)
val errorDescription: String
An in depth description of the error for the request