CheckoutProcessResponse

data class CheckoutProcessResponse(    val links: Map<String, Href>? = null,     val checks: List<Check> = emptyList(),     val orderId: String? = null,     val depositReturnVouchers: List<DepositReturnVoucher>? = null,     val aborted: Boolean = false,     val paymentMethod: PaymentMethod? = null,     val paymentInformation: PaymentInformation? = null,     val paymentPreauthInformation: JsonObject? = null,     val exitToken: ExitToken? = null,     val paymentState: CheckState? = null,     val pricing: Pricing? = null,     val routingTarget: RoutingTarget? = null,     val paymentResult: PaymentResult? = null,     val fulfillments: List<Fulfillment> = emptyList())

Constructors

Link copied to clipboard
constructor(    links: Map<String, Href>? = null,     checks: List<Check> = emptyList(),     orderId: String? = null,     depositReturnVouchers: List<DepositReturnVoucher>? = null,     aborted: Boolean = false,     paymentMethod: PaymentMethod? = null,     paymentInformation: PaymentInformation? = null,     paymentPreauthInformation: JsonObject? = null,     exitToken: ExitToken? = null,     paymentState: CheckState? = null,     pricing: Pricing? = null,     routingTarget: RoutingTarget? = null,     paymentResult: PaymentResult? = null,     fulfillments: List<Fulfillment> = emptyList())

Properties

Link copied to clipboard
val aborted: Boolean = false
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@SerializedName(value = "depositReturnVouchers")
val depositReturnVouchers: List<DepositReturnVoucher>? = null
Link copied to clipboard
val exitToken: ExitToken? = null
Link copied to clipboard
Link copied to clipboard
val links: Map<String, Href>? = null
Link copied to clipboard
@SerializedName(value = "orderID")
val orderId: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val paymentPreauthInformation: JsonObject? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val pricing: Pricing? = null
Link copied to clipboard
Link copied to clipboard