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 that is appended to the WebSocket request header for system verification of 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 for the remote connection to the ECS instance. The URL contains the session ID (`SessionId`) and the `SecurityToken` for system verification. * * @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; }); }