Functions

Link copied to clipboard
Link copied to clipboard
open suspend override fun create(params: FinancialAccountCreateParams, requestOptions: RequestOptions): HttpResponseFor<FinancialAccount>

Returns a raw HTTP response for post /v1/financial_accounts, but is otherwise the same as FinancialAccountServiceAsync.create.

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

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

Link copied to clipboard
Link copied to clipboard
@MustBeClosed
open suspend fun registerAccountNumber(financialAccountToken: String, params: FinancialAccountRegisterAccountNumberParams, requestOptions: RequestOptions = RequestOptions.none()): HttpResponse

Returns a raw HTTP response for post /v1/financial_accounts/{financial_account_token}/register_account_number, but is otherwise the same as FinancialAccountServiceAsync.registerAccountNumber.

Link copied to clipboard
@MustBeClosed
open suspend fun retrieve(financialAccountToken: String, requestOptions: RequestOptions): HttpResponseFor<FinancialAccount>
open suspend override fun retrieve(params: FinancialAccountRetrieveParams, requestOptions: RequestOptions): HttpResponseFor<FinancialAccount>

@MustBeClosed
open suspend fun retrieve(financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<FinancialAccount>

Returns a raw HTTP response for get /v1/financial_accounts/{financial_account_token}, but is otherwise the same as FinancialAccountServiceAsync.retrieve.

Link copied to clipboard
Link copied to clipboard
@MustBeClosed
open suspend fun update(financialAccountToken: String, requestOptions: RequestOptions): HttpResponseFor<FinancialAccount>
open suspend override fun update(params: FinancialAccountUpdateParams, requestOptions: RequestOptions): HttpResponseFor<FinancialAccount>

@MustBeClosed
open suspend fun update(financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<FinancialAccount>

Returns a raw HTTP response for patch /v1/financial_accounts/{financial_account_token}, but is otherwise the same as FinancialAccountServiceAsync.update.

Link copied to clipboard
@MustBeClosed
open suspend fun updateStatus(financialAccountToken: String, params: FinancialAccountUpdateStatusParams, requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<FinancialAccount>

Returns a raw HTTP response for post /v1/financial_accounts/{financial_account_token}/update_status, but is otherwise the same as FinancialAccountServiceAsync.updateStatus.

Link copied to clipboard

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