@zeplin/sdk
Version:
Zeplin API client for JavaScript
45 lines (44 loc) • 994 B
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 { User } from './user';
export declare const transformReactionToJSON: (value: Reaction) => any;
export declare const transformJSONToReaction: (value: any) => Reaction;
/**
*
* @export
* @interface Reaction
*/
export interface Reaction {
/**
* Unique id of the reaction
* @type {string}
* @memberof Reaction
*/
id: string;
/**
* Type of the reaction (e.g., thumbsup, eyes, etc.)
* @type {string}
* @memberof Reaction
*/
shortCode: string;
/**
* Unicode representation of the reaction
* @type {string}
* @memberof Reaction
*/
unicode?: string;
/**
*
* @type {Array<User>}
* @memberof Reaction
*/
users: Array<User>;
}