Package-level declarations

Types

Link copied to clipboard
data class POAllGatewayConfigurationsRequest(val filter: POAllGatewayConfigurationsRequest.Filter? = null, val withDisabled: Boolean = false)

Request parameters used to fetch gateway configurations.

Link copied to clipboard
data class POAlternativePaymentMethodRequest(val invoiceId: String, val gatewayConfigurationId: String, val additionalData: Map<String, String>? = null, val customerId: String? = null, val tokenId: String? = null)

Request parameters used to create a redirect URL to initiate alternative payment. Note: make sure to supply proper additionalData specific for particular payment method.

Link copied to clipboard
data class POAssignCustomerTokenRequest(val customerId: String, val tokenId: String, val source: String, val preferredScheme: String? = null, val enableThreeDS2: Boolean = true, val verify: Boolean = false, val invoiceId: String? = null, val thirdPartySdkVersion: String? = null, val metadata: Map<String, String>? = null)

Request parameters used to assign new source to existing customer token and potentially verify it.

Link copied to clipboard
data class POCardTokenizationPreferredSchemeRequest constructor(val issuerInformation: POCardIssuerInformation, val uuid: UUID = UUID.randomUUID())

Defines the request to choose a preferred scheme that will be used for card tokenization by default.

Link copied to clipboard
data class POCardTokenizationRequest(val metadata: Map<String, String>? = null, val number: String? = "", val expMonth: Int? = 0, val expYear: Int? = 0, val cvc: String? = "", val name: String = "", val contact: POContact? = POContact(), val preferredScheme: String? = null, val tokenType: POCardTokenizationRequest.TokenType? = null, val paymentToken: String? = "")

Details of the card that should be tokenized.

Link copied to clipboard
data class POCardTokenizationShouldContinueRequest constructor(val failure: ProcessOutResult.Failure, val uuid: UUID = UUID.randomUUID())

Defines the request to decide whether the flow should continue or complete after the failure.

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class POCardUpdateCVCRequest(val cvc: String)

Request to update Card Verification Code of the card.

Link copied to clipboard
data class POCardUpdateRequest(val cardId: String, val cvc: String)

Request to update card information.

Link copied to clipboard
data class POCardUpdateShouldContinueRequest constructor(val cardId: String, val failure: ProcessOutResult.Failure, val uuid: UUID = UUID.randomUUID())

Defines the request to decide whether the flow should continue or complete after the failure.

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class POContact(val address1: String? = "", val address2: String? = "", val city: String? = "", val state: String? = "", val zip: String? = "", @Json(name = "country_code") val countryCode: String? = "") : Parcelable

Cardholder information.

Link copied to clipboard
data class POGatewayConfigurationRequest(val gatewayConfigurationId: String, val withGateway: Boolean = false)

Request parameters used to fetch specific gateway configuration.

Link copied to clipboard
data class POInvoiceAuthorizationRequest(val invoiceId: String, val source: String, val incremental: Boolean = false, val enableThreeDS2: Boolean = true, val preferredScheme: String? = null, val thirdPartySdkVersion: String? = null, val invoiceDetailsIds: List<String>? = null, val overrideMacBlocking: Boolean = false, val initialSchemeTransactionId: String? = null, val autoCaptureAt: Date? = null, val captureAmount: String? = null, val authorizeOnly: Boolean = true, val allowFallbackToSale: Boolean = false, val metadata: Map<String, String>? = null)

Request parameters used for invoice authorization.

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class POInvoiceRequest(val invoiceId: String, val clientSecret: String? = null) : Parcelable

Request to get single invoice details.

data class PONativeAlternativePaymentMethodDefaultValuesRequest constructor(val gatewayConfigurationId: String, val invoiceId: String, val parameters: List<PONativeAlternativePaymentMethodParameter>, val uuid: UUID = UUID.randomUUID())

Defines the request to provide default values for native alternative payment method parameters.

Link copied to clipboard
data class PONativeAlternativePaymentMethodRequest(val invoiceId: String, val gatewayConfigurationId: String, val parameters: Map<String, String>)

Request parameters used to initiate payment.