import * as $dara from '@darabonba/typescript'; export declare class GetAuthTokenResponseBody extends $dara.Model { /** * @remarks * Status code. 200 means success, other status codes are exceptions. * * @example * 200 */ code?: number; /** * @remarks * The returned authentication token. * * @example * eyJhbGciOiJIUzI1NiJ9****** */ data?: string; /** * @remarks * Additional Information. * * @example * success */ message?: string; /** * @remarks * The ID of the request. * * @example * 1A9C645C-C83F-4C9D-8CCB-29BEC9E1**** */ requestId?: string; /** * @remarks * Whether the query was successful: * - true: Success * - false: Failure * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }