import * as $dara from '@darabonba/typescript'; export declare class StartTerminalSessionResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * EB5173B0-8E80-564E-AAD1-3135412***** */ requestId?: string; /** * @remarks * The security token included in the WebSocket request header. The system uses this token to authenticate the request. * * @example * d86c2df2-d19c-4bd8-b817-a19ef123**** */ securityToken?: string; /** * @remarks * The session ID. * * @example * s-hz023od0x9**** */ sessionId?: string; /** * @remarks * The URL of the WebSocket session that is used to connect to the instance. The URL includes the session ID (`SessionId`) and the authentication token (`SecurityToken`). * * @example * wss://cn-hangzhou.axt.aliyuncs.com/session?sessionId=s-hz023od0x9****&token=d86c2df2-d19c-4bd8-b817-a19ef123**** */ webSocketUrl?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }