fedapay
Version:
NodeJs library for FedaPay Api
32 lines (31 loc) • 870 B
TypeScript
import { FedaPayObject } from './FedaPayObject';
import { Resource } from './Resource';
/**
* Class Balance
*
* @property int $id
* @property int $currency_id
* @property int $account_id
* @property int $amount
* @property string $mode
* @property string $deleted_at
* @property string $created_at
* @property string $updated_at
*/
export declare class Balance 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<Balance>;
/**
* @param {Object|null} params
* @param {Object|null} headers
*
* @returns {Promise<FedaPayObject>}
*/
static all(params?: {}, headers?: {}): Promise<FedaPayObject>;
}