UNPKG

@linenext/dapp-portal-sdk

Version:

Dapp Portal SDK

18 lines (17 loc) 343 B
export interface PaymentInfo { id: string; pgType: string; status: string; } export interface PaymentStatusResponse { status: string; } export interface StartPaymentResponse { redirectUrl?: string; paymentTxDTO?: PaymentTxBody; } export interface PaymentTxBody { to: string; value: string; input: string; }