@fioprotocol/fiosdk
Version:
The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryp
28 lines • 961 B
TypeScript
import { Account, Action, RejectFundsRequestResponse } from '../../entities';
import { RequestConfig } from '../Request';
import { SignedRequest } from './SignedRequest';
export type RejectFundsRequestRequestProps = {
fioRequestId: number;
maxFee: number;
technologyProviderId: string;
};
export type RejectFundsRequestRequestData = {
fio_request_id: number;
max_fee: number;
tpid: string;
actor: string;
};
export declare class RejectFundsRequestRequest extends SignedRequest<RejectFundsRequestRequestData, RejectFundsRequestResponse> {
props: RejectFundsRequestRequestProps;
ENDPOINT: "chain/reject_funds_request";
ACTION: Action;
ACCOUNT: Account;
constructor(config: RequestConfig, props: RejectFundsRequestRequestProps);
getData: () => {
actor: string;
fio_request_id: number;
max_fee: number;
tpid: string;
};
}
//# sourceMappingURL=RejectFundsRequestRequest.d.ts.map