import * as $dara from '@darabonba/typescript'; import { GrafanaWorkspaceUserOrg } from "./GrafanaWorkspaceUserOrg"; export declare class GrafanaWorkspaceAccount extends $dara.Model { /** * @example * 1 */ accountId?: number; accountNotes?: string; /** * @example * 131243781293 */ aliyunUid?: string; /** * @example * test */ aliyunUserName?: string; /** * @example * 创建时间 */ gmtCreate?: number; orgs?: GrafanaWorkspaceUserOrg[]; /** * @example * aliyun */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }