import { FedaPayObject } from './FedaPayObject'; import { Resource } from './Resource'; /** * Class Account * * @property int $id * @property string $name * @property string $timezone * @property string $country * @property string $verify * @property string $created_at * @property string $updated_at */ export declare class Account extends Resource { protected static ressourceName: string; /** * @param {string|number} id * @param {Object|null} params * @param {Object|null} headers * @returns {Promise} */ static retrieve(id: any, params?: {}, headers?: {}): Promise; /** * @param {Object|null} params * @param {Object|null} headers * * @returns {Promise} */ static all(params?: {}, headers?: {}): Promise; /** * @param {Object|null} params * @param {Object|null} headers * * @returns {Promise} */ static create(params?: {}, headers?: {}): Promise; /** * @param {string} id The ID of the acount to update. * @param {Object|null} params * @param {Object|null} headers * * @returns {Promise} */ static update(id: any, params?: {}, headers?: {}): Promise; /** * @param {Object|string|null} headers * * @returns {Promise} The saved account. */ save(headers?: {}): Promise; /** * @param {Object} headers * * @returns {>} Account The deleted account. */ delete(headers?: {}): Promise; }