UNPKG

@zeplin/sdk

Version:
58 lines (57 loc) 1.4 kB
/** * Zeplin API * Access your resources in Zeplin * * Contact: support@zeplin.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Reaction } from './reaction'; import { User } from './user'; export declare const transformScreenNoteCommentToJSON: (value: ScreenNoteComment) => any; export declare const transformJSONToScreenNoteComment: (value: any) => ScreenNoteComment; /** * * @export * @interface ScreenNoteComment */ export interface ScreenNoteComment { /** * Unique id of the comment * @type {string} * @memberof ScreenNoteComment */ id: string; /** * Content of the comment * @type {string} * @memberof ScreenNoteComment */ content: string; /** * * @type {User} * @memberof ScreenNoteComment */ author: User; /** * The unix timestamp when the comment was updated * @type {number} * @memberof ScreenNoteComment */ updated: number; /** * Reactions to the comment * @type {Array<Reaction>} * @memberof ScreenNoteComment */ reactions: Array<Reaction>; /** * The version of the screen this comment is associated with * @type {string} * @memberof ScreenNoteComment */ screenVersionId?: string; }