UNPKG

fedapay

Version:

NodeJs library for FedaPay Api

33 lines (32 loc) 886 B
import { FedaPayObject } from './FedaPayObject'; import { Resource } from './Resource'; /** * Class Currency * * @property int $id * @property string $name * @property string $iso * @property int $code * @property string $prefix * @property string $suffix * @property string $div * @property string $created_at * @property string $updated_at */ export declare class Currency extends Resource { protected static ressourceName: string; /** * @param {string|number} id * @param {Object|null} params * @param {Object|null} headers * @returns {Promise<Customer>} */ static retrieve(id: any, params?: {}, headers?: {}): Promise<Currency>; /** * @param {Object|null} params * @param {Object|null} headers * * @returns {Promise<FedaPayObject>} */ static all(params?: {}, headers?: {}): Promise<FedaPayObject>; }