listProvisionalFundingSources

abstract suspend fun listProvisionalFundingSources(filter: ProvisionalFundingSourceFilterInput? = null, sortOrder: SortOrder? = null, limit: Int = DEFAULT_FUNDING_SOURCE_LIMIT, nextToken: String? = null): ListOutput<ProvisionalFundingSource>

Get a ListOutput of ProvisionalFundingSources. If no ProvisionalFundingSources can be found, the ListOutput will contain null for the ListOutput.nextToken field and contain an empty ListOutput.items list.

Return

A list of ProvisionalFundingSources or an empty list if no matching provisional funding sources can be found.

Parameters

filter

ProvisionalFundingSourceFilterInput Optional parameters used to filter the set of provisional funding sources returned. If omitted, no filter is applied.

sortOrder

SortOrder Order in which records are returned (based on date/time at which the provisional funding source was updated). The default order is descending, ie, most recently updated first.

limit

Int Maximum number of ProvisionalFundingSources to return. If omitted the limit defaults to 10.

nextToken

String A token generated from previous calls to listProvisionalFundingSources. This is to allow for pagination. This value should be generated from a previous pagination call, otherwise it will throw an exception. The same arguments should be supplied to this method if using a previously generated nextToken.

Throws