com.increase.api.services.async.InboundRealTimePaymentsTransferServiceAsync.kt Maven / Gradle / Ivy
// File generated from our OpenAPI spec by Stainless.
package com.increase.api.services.async
import com.increase.api.core.RequestOptions
import com.increase.api.models.InboundRealTimePaymentsTransfer
import com.increase.api.models.InboundRealTimePaymentsTransferListPageAsync
import com.increase.api.models.InboundRealTimePaymentsTransferListParams
import com.increase.api.models.InboundRealTimePaymentsTransferRetrieveParams
interface InboundRealTimePaymentsTransferServiceAsync {
/** Retrieve an Inbound Real-Time Payments Transfer */
suspend fun retrieve(
params: InboundRealTimePaymentsTransferRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundRealTimePaymentsTransfer
/** List Inbound Real-Time Payments Transfers */
suspend fun list(
params: InboundRealTimePaymentsTransferListParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundRealTimePaymentsTransferListPageAsync
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy