import * as SDKEnum from "../SDKConst/SDKEnum"; export default class SDKParameterVo { private _isInit; private _url; private _lessonId; private _gameId; private _usage; private _role; private _courseWare; private _userId; private _observerId; private _observerRole; constructor(); parseUrl(url: string): boolean; /** 解析url 获取参数 */ private getRequest; readonly lessonId: number; readonly gameId: number; isZML(): boolean; isZMG(): boolean; isSplitScreen(): boolean; isGamePreview(): boolean; isGameClass(): boolean; isGameObserver(): boolean; isGameReplay(): boolean; isTeacher(): boolean; isStudent(): boolean; isObserver(): boolean; isSeller(): boolean; isOberverTeacher(): boolean; isReplay(): boolean; userId: string; observerId: string; observerRole: SDKEnum.USER_ROLE; role: SDKEnum.USER_ROLE; usage: SDKEnum.GAME_TYPE; readonly isInit: boolean; clone(): SDKParameterVo; getUrl(): string; reset(): void; }