@zeplin/sdk
Version:
Zeplin API client for JavaScript
39 lines (38 loc) • 1.08 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 { ScreenAnnotationPosition } from './screen-annotation-position';
export declare const transformScreenAnnotationCreateBodyToJSON: (value: ScreenAnnotationCreateBody) => any;
export declare const transformJSONToScreenAnnotationCreateBody: (value: any) => ScreenAnnotationCreateBody;
/**
*
* @export
* @interface ScreenAnnotationCreateBody
*/
export interface ScreenAnnotationCreateBody {
/**
* Content of the annotation
* @type {string}
* @memberof ScreenAnnotationCreateBody
*/
content: string;
/**
*
* @type {ScreenAnnotationPosition}
* @memberof ScreenAnnotationCreateBody
*/
position: ScreenAnnotationPosition;
/**
* The unique id of the annotation type
* @type {string}
* @memberof ScreenAnnotationCreateBody
*/
type?: string;
}