@zeplin/sdk
Version:
Zeplin API client for JavaScript
51 lines (50 loc) • 1.22 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 { EntityReference } from './entity-reference';
export declare const transformScreenSectionToJSON: (value: ScreenSection) => any;
export declare const transformJSONToScreenSection: (value: any) => ScreenSection;
/**
*
* @export
* @interface ScreenSection
*/
export interface ScreenSection {
/**
* The unique id of the screen section
* @type {string}
* @memberof ScreenSection
*/
id: string;
/**
* The unix timestamp when the screen section was created
* @type {number}
* @memberof ScreenSection
*/
created: number;
/**
* The name of the screen section
* @type {string}
* @memberof ScreenSection
*/
name: string;
/**
* The description of the screen section
* @type {string}
* @memberof ScreenSection
*/
description?: string;
/**
*
* @type {EntityReference}
* @memberof ScreenSection
*/
parent?: EntityReference;
}