Functions

Link copied to clipboard
@MustBeClosed
open suspend fun list(requestOptions: RequestOptions): HttpResponseFor<FundingEventListPageAsync>

open suspend override fun list(params: FundingEventListParams, requestOptions: RequestOptions): HttpResponseFor<FundingEventListPageAsync>

Returns a raw HTTP response for get /v1/funding_events, but is otherwise the same as FundingEventServiceAsync.list.

Link copied to clipboard
@MustBeClosed
open suspend fun retrieve(fundingEventToken: String, requestOptions: RequestOptions): HttpResponseFor<FundingEventRetrieveResponse>

@MustBeClosed
open suspend fun retrieve(fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<FundingEventRetrieveResponse>

Returns a raw HTTP response for get /v1/funding_events/{funding_event_token}, but is otherwise the same as FundingEventServiceAsync.retrieve.

Link copied to clipboard
@MustBeClosed
open suspend fun retrieveDetails(fundingEventToken: String, requestOptions: RequestOptions): HttpResponseFor<FundingEventRetrieveDetailsResponse>

@MustBeClosed
open suspend fun retrieveDetails(fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<FundingEventRetrieveDetailsResponse>

Returns a raw HTTP response for get /v1/funding_events/{funding_event_token}/details, but is otherwise the same as FundingEventServiceAsync.retrieveDetails.

Link copied to clipboard

Returns a view of this service with the given option modifications applied.