import * as $dara from '@darabonba/typescript'; export declare class GetStreamTagListResponseBodyStreamTagList extends $dara.Model { /** * @remarks * The end time. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2025-02-25T02:24:00Z */ endTime?: string; /** * @remarks * The start time. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2025-04-26T16:00:00Z */ startTime?: string; /** * @remarks * The user-defined data. * * @example * {"result":"xxx"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetStreamTagListResponseBody extends $dara.Model { /** * @remarks * The return code. * * @example * 200 */ code?: string; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. * * @example * ****73f33c91-d59383e8280b**** */ nextToken?: string; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The tag information. */ streamTagList?: GetStreamTagListResponseBodyStreamTagList[]; /** * @remarks * Indicates whether the request is successful. Valid values: * * * true * * false * * @example * true */ success?: string; /** * @remarks * The total number of entries that are returned. * * @example * 163 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }