@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
23 lines (22 loc) • 699 B
text/typescript
export interface ListServiceProvidersRequest {
/**
* Subcategory of service provider. For example, **electricity**, **water**, **gas**, **internet**
*/
catalog_sub_type?: string;
/**
* Category of service provider. For example, **bills**, **education**, **financial_service**, **utility**
*/
catalog_type?: string;
/**
* The country of the service provider. Two-letter ISO 3166-1 ALPHA-2 code. Uppercase.
*/
country?: string;
/**
* The currency accepted by the service provider. Three-letter ISO 4217 code. Uppercase.
*/
currency?: string;
/**
* The maximum number of service providers to return. Range: 1-100. Default is 10.
*/
limit?: string;
};