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;
}
