@openweb3-io/waas
Version:
WaaS API client and WaaS verification library
24 lines (23 loc) • 609 B
TypeScript
import { EventType } from '../models/EventType';
export declare class CursorPageEventType {
'hasNext': boolean;
'hasPrev': boolean;
'items': Array<EventType>;
'nextCursor'?: string;
'prevCursor'?: string;
'total': number;
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();
}