UNPKG

@zeplin/sdk

Version:
59 lines (58 loc) 1.86 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 { ProjectNoteCommentReactionCreatedEventResource } from './project-note-comment-reaction-created-event-resource'; import { ProjectNoteCommentReactionEventContext } from './project-note-comment-reaction-event-context'; import { WebhookEventActor } from './webhook-event-actor'; export declare const transformProjectNoteCommentReactionCreatedEventToJSON: (value: ProjectNoteCommentReactionCreatedEvent) => any; export declare const transformJSONToProjectNoteCommentReactionCreatedEvent: (value: any) => ProjectNoteCommentReactionCreatedEvent; /** * * @export * @interface ProjectNoteCommentReactionCreatedEvent */ export interface ProjectNoteCommentReactionCreatedEvent { /** * * @type {string} * @memberof ProjectNoteCommentReactionCreatedEvent */ event: 'project.note.comment.reaction'; /** * * @type {string} * @memberof ProjectNoteCommentReactionCreatedEvent */ action: 'created'; /** * * @type {number} * @memberof ProjectNoteCommentReactionCreatedEvent */ timestamp: number; /** * * @type {ProjectNoteCommentReactionCreatedEventResource} * @memberof ProjectNoteCommentReactionCreatedEvent */ resource: ProjectNoteCommentReactionCreatedEventResource; /** * * @type {ProjectNoteCommentReactionEventContext} * @memberof ProjectNoteCommentReactionCreatedEvent */ context: ProjectNoteCommentReactionEventContext; /** * * @type {WebhookEventActor} * @memberof ProjectNoteCommentReactionCreatedEvent */ actor: WebhookEventActor; }