// Copyright (c) RoochNetwork // SPDX-License-Identifier: Apache-2.0 export type PaginationArguments = { /** Optional paging cursor */ cursor?: Cursor /** Maximum item returned per page */ limit?: number | null } export type PaginationResult = { cursor?: Cursor | null data: Array hasNextPage: boolean } export type SessionInfoView = { appName: string appUrl: string authenticationKey: string scopes: Array createTime: number lastActiveTime: number maxInactiveInterval: number }