// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GrafanaWorkspaceOrg extends $dara.Model { /** * @example * 1 */ id?: number; /** * @example * main org */ name?: string; static names(): { [key: string]: string } { return { id: 'id', name: 'name', }; } static types(): { [key: string]: any } { return { id: 'number', name: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }