/** * Finix API */ /** * Details the page that\'s returned. */ export declare class PageCursor { /** * The number of entries to return. */ 'limit'?: number; /** * The cursor to use for the next page of results. */ 'nextCursor'?: string | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }