// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListDashboardsByNameResponseBody extends $dara.Model { /** * @remarks * The status code. The HTTP 200 status code indicates a successful request, while others indicate error conditions. * * @example * 200 */ code?: number; /** * @remarks * The returned struct. * * @example * [{"name":"Edas Ingress Url Analysis","type":"edas-ingress-url-analysis","url":"https://g.console.aliyun.com/d/1036052989950239-11040375-66-3/edas-ingress-url-analysis?var-clusterId=29ksa&var-regionId=cn-hangzhou"}] */ data?: string; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The ID of the request, You can use the ID to locate logs and troubleshoot issues. * * @example * 2983BEF7-4A0D-47A2-94A2-8E9C5E63**** */ requestId?: string; static names(): { [key: string]: string } { return { code: 'Code', data: 'Data', message: 'Message', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { code: 'number', data: 'string', message: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }