UNPKG

@zeplin/sdk

Version:
59 lines (58 loc) 1.69 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 { ProjectNoteCommentCreatedEventResource } from './project-note-comment-created-event-resource'; import { ProjectNoteCommentEventContext } from './project-note-comment-event-context'; import { WebhookEventActor } from './webhook-event-actor'; export declare const transformProjectNoteCommentUpdatedEventToJSON: (value: ProjectNoteCommentUpdatedEvent) => any; export declare const transformJSONToProjectNoteCommentUpdatedEvent: (value: any) => ProjectNoteCommentUpdatedEvent; /** * * @export * @interface ProjectNoteCommentUpdatedEvent */ export interface ProjectNoteCommentUpdatedEvent { /** * * @type {string} * @memberof ProjectNoteCommentUpdatedEvent */ event: 'project.note.comment'; /** * * @type {string} * @memberof ProjectNoteCommentUpdatedEvent */ action: 'updated'; /** * * @type {number} * @memberof ProjectNoteCommentUpdatedEvent */ timestamp: number; /** * * @type {ProjectNoteCommentCreatedEventResource} * @memberof ProjectNoteCommentUpdatedEvent */ resource: ProjectNoteCommentCreatedEventResource; /** * * @type {ProjectNoteCommentEventContext} * @memberof ProjectNoteCommentUpdatedEvent */ context: ProjectNoteCommentEventContext; /** * * @type {WebhookEventActor} * @memberof ProjectNoteCommentUpdatedEvent */ actor: WebhookEventActor; }