@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 1.05 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.
*/
export declare const transformStyleguideUpdateBodyToJSON: (value: StyleguideUpdateBody) => any;
export declare const transformJSONToStyleguideUpdateBody: (value: any) => StyleguideUpdateBody;
/**
*
* @export
* @interface StyleguideUpdateBody
*/
export interface StyleguideUpdateBody {
/**
* New name for the styleguide
* @type {string}
* @memberof StyleguideUpdateBody
*/
name?: string;
/**
* New description for the styleguide
* @type {string}
* @memberof StyleguideUpdateBody
*/
description?: string;
/**
* The unique id of the styleguide to be linked as parent. Set null to unlink the linked parent styleguide.
* @type {string}
* @memberof StyleguideUpdateBody
*/
linkedParentStyleguideId?: string | null;
}