/
githubmirror
/
halo
Обзор
Документация
Войти
/
githubmirror
/
halo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ui/packages/api-client/src/models/comment-request.ts
45 строк
1 KB
Ryan Wang
Prepare 2.26.0 snapshot version (#10079)
12 июн 2026, 10:25
Не верифицирован
12 июн 2026, 10:25
aea0101
Код
Авторство
О чём код?
/* tslint:disable */ /* eslint-disable */ /** * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.26.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { CommentEmailOwner } from './comment-email-owner'; // May contain unused imports in some cases // @ts-ignore import type { Ref } from './ref'; /** * Comment creation payload for console comment APIs. */ export interface CommentRequest { /** * Whether to subscribe the owner to notifications for future replies. */ 'allowNotification'?: boolean; /** * Rendered HTML content for the comment. Unsafe HTML is rejected. */ 'content': string; /** * Whether the comment should be hidden from normal display. */ 'hidden'?: boolean; 'owner'?: CommentEmailOwner; /** * Original comment text submitted by the editor. */ 'raw': string; 'subjectRef': Ref; }