@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
20 lines (19 loc) • 721 B
TypeScript
import Service from "../../service";
import Client from "../../client";
import { IRequest } from "../../typings/requestOptions";
import { GrantAccount } from "../../typings/capital/models";
/**
* API handler for GrantAccountsApi
*/
export declare class GrantAccountsApi extends Service {
private readonly API_BASEPATH;
private baseUrl;
constructor(client: Client);
/**
* @summary Get the information of your grant account
* @param id {@link string } The unique identifier of the grant account.
* @param requestOptions {@link IRequest.Options }
* @return {@link GrantAccount }
*/
getGrantAccountInformation(id: string, requestOptions?: IRequest.Options): Promise<GrantAccount>;
}