@zeplin/sdk
Version:
Zeplin API client for JavaScript
40 lines (39 loc) • 1.14 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 { ScreenAnnotationColor } from './screen-annotation-color';
import { ScreenAnnotationNoteTypeEnum } from './screen-annotation-note-type-enum';
export declare const transformScreenAnnotationNoteTypeToJSON: (value: ScreenAnnotationNoteType) => any;
export declare const transformJSONToScreenAnnotationNoteType: (value: any) => ScreenAnnotationNoteType;
/**
*
* @export
* @interface ScreenAnnotationNoteType
*/
export interface ScreenAnnotationNoteType {
/**
* The unique id of the annotation
* @type {string}
* @memberof ScreenAnnotationNoteType
*/
id: string;
/**
*
* @type {ScreenAnnotationNoteTypeEnum}
* @memberof ScreenAnnotationNoteType
*/
name: ScreenAnnotationNoteTypeEnum;
/**
*
* @type {ScreenAnnotationColor}
* @memberof ScreenAnnotationNoteType
*/
color: ScreenAnnotationColor;
}