@openweb3-io/wallet-pay
Version:
Wallet Pay API client and wallet pay verification library
30 lines (29 loc) • 1.19 kB
TypeScript
export * from './CreateEndpointRequest';
export * from './CreateOrderRequest';
export * from './CreateRefundRequest';
export * from './Currency';
export * from './CurrencyNetwork';
export * from './CurrencyPair';
export * from './CursorPageCurrency';
export * from './CursorPageEndpoint';
export * from './Endpoint';
export * from './EstimateResponse';
export * from './GetRatesRequest';
export * from './GetRatesResponse';
export * from './ModelError';
export * from './Order';
export * from './PageOrder';
export * from './PageRefund';
export * from './Rate';
export * from './Refund';
export * from './TransferRequest';
export * from './TransferResponse';
export declare class ObjectSerializer {
static findCorrectType(data: any, expectedType: string): any;
static serialize(data: any, type: string, format: string): any;
static deserialize(data: any, type: string, format: string): any;
static normalizeMediaType(mediaType: string | undefined): string | undefined;
static getPreferredMediaType(mediaTypes: Array<string>): string;
static stringify(data: any, mediaType: string): string;
static parse(rawData: string, mediaType: string | undefined): any;
}