@zeplin/sdk
Version:
Zeplin API client for JavaScript
40 lines (39 loc) • 1.09 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 { ScreenNoteColorNameEnum } from './screen-note-color-name-enum';
import { ScreenNotePosition } from './screen-note-position';
export declare const transformScreenNoteCreateBodyToJSON: (value: ScreenNoteCreateBody) => any;
export declare const transformJSONToScreenNoteCreateBody: (value: any) => ScreenNoteCreateBody;
/**
*
* @export
* @interface ScreenNoteCreateBody
*/
export interface ScreenNoteCreateBody {
/**
* Content of the first comment of the note
* @type {string}
* @memberof ScreenNoteCreateBody
*/
content: string;
/**
*
* @type {ScreenNotePosition}
* @memberof ScreenNoteCreateBody
*/
position: ScreenNotePosition;
/**
*
* @type {ScreenNoteColorNameEnum}
* @memberof ScreenNoteCreateBody
*/
color: ScreenNoteColorNameEnum;
}