@openweb3-io/wallet-pay
Version:
Wallet Pay API client and wallet pay verification library
29 lines (28 loc) • 739 B
TypeScript
export declare class RefundOut {
'id': string;
'uid'?: string;
'orderId': string;
'currency': string;
'amount': string;
'status': RefundOutStatusEnum;
'note'?: string;
'failedAt'?: Date;
'failedMessage'?: string;
'createdAt': Date;
'completedAt'?: Date;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}
export declare type RefundOutStatusEnum = "PENDING" | "FAILED" | "COMPLETED";