@zeplin/sdk
Version:
Zeplin API client for JavaScript
59 lines (58 loc) • 1.86 kB
TypeScript
/**
* 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 { ProjectNoteCommentReactionDeletedEventResource } from './project-note-comment-reaction-deleted-event-resource';
import { ProjectNoteCommentReactionEventContext } from './project-note-comment-reaction-event-context';
import { WebhookEventActor } from './webhook-event-actor';
export declare const transformProjectNoteCommentReactionDeletedEventToJSON: (value: ProjectNoteCommentReactionDeletedEvent) => any;
export declare const transformJSONToProjectNoteCommentReactionDeletedEvent: (value: any) => ProjectNoteCommentReactionDeletedEvent;
/**
*
* @export
* @interface ProjectNoteCommentReactionDeletedEvent
*/
export interface ProjectNoteCommentReactionDeletedEvent {
/**
*
* @type {string}
* @memberof ProjectNoteCommentReactionDeletedEvent
*/
event: 'project.note.comment.reaction';
/**
*
* @type {string}
* @memberof ProjectNoteCommentReactionDeletedEvent
*/
action: 'deleted';
/**
*
* @type {number}
* @memberof ProjectNoteCommentReactionDeletedEvent
*/
timestamp: number;
/**
*
* @type {ProjectNoteCommentReactionDeletedEventResource}
* @memberof ProjectNoteCommentReactionDeletedEvent
*/
resource: ProjectNoteCommentReactionDeletedEventResource;
/**
*
* @type {ProjectNoteCommentReactionEventContext}
* @memberof ProjectNoteCommentReactionDeletedEvent
*/
context: ProjectNoteCommentReactionEventContext;
/**
*
* @type {WebhookEventActor}
* @memberof ProjectNoteCommentReactionDeletedEvent
*/
actor: WebhookEventActor;
}