// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GetIntegrationStateResponseBody extends $dara.Model { /** * @remarks * Status code. 200 means success, other status codes are exceptions. * * @example * 200 */ code?: number; /** * @remarks * The prompt information of the returned result. * * @example * success */ message?: string; /** * @remarks * The ID of the request. * * @example * 1A9C645C-C83F-4C9D-8CCB-29BEC9E1**** */ requestId?: string; /** * @remarks * The integration state of Prometheus dashboards and collection rules. Valid values: * * * `true`: The Prometheus dashboards and collection rules that monitor the software are integrated. * * `false`: The Prometheus dashboards and collection rules that monitor the software are not integrated. * * @example * true */ state?: boolean; static names(): { [key: string]: string } { return { code: 'Code', message: 'Message', requestId: 'RequestId', state: 'State', }; } static types(): { [key: string]: any } { return { code: 'number', message: 'string', requestId: 'string', state: 'boolean', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }