privacy.com
Version:
Wrapper for the Privacy.com API using Axios and TypeScript
24 lines (23 loc) • 700 B
TypeScript
import { Response } from "..";
import { FundingAccount } from "../../objects";
import { GetEndpoint } from ".";
/**
* List all the funding accounts associated with the privacy account
*/
export declare class ListFundingAccountsRequest extends GetEndpoint {
path: string;
params: {};
constructor(params?: ListFundingAccountsParams);
}
/**
* Parameters for {@link ListFundingAccountsRequest}
* @defaultValue { filter: "NONE" }
*/
export declare type ListFundingAccountsParams = {
filter: "NONE"
/** List bank funding accounts */
| "BANK"
/** List card funding accounts */
| "CARD";
};
export declare type ListFundingAccountsResponse = Response<FundingAccount[]>;