@zeplin/sdk
Version:
Zeplin API client for JavaScript
39 lines (38 loc) • 1.13 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 { Reaction } from './reaction';
export declare const transformProjectNoteCommentReactionCreatedEventResourceToJSON: (value: ProjectNoteCommentReactionCreatedEventResource) => any;
export declare const transformJSONToProjectNoteCommentReactionCreatedEventResource: (value: any) => ProjectNoteCommentReactionCreatedEventResource;
/**
*
* @export
* @interface ProjectNoteCommentReactionCreatedEventResource
*/
export interface ProjectNoteCommentReactionCreatedEventResource {
/**
*
* @type {string}
* @memberof ProjectNoteCommentReactionCreatedEventResource
*/
id: string;
/**
*
* @type {string}
* @memberof ProjectNoteCommentReactionCreatedEventResource
*/
type: 'Reaction';
/**
*
* @type {Reaction}
* @memberof ProjectNoteCommentReactionCreatedEventResource
*/
data: Reaction;
}