UNPKG

@zeplin/sdk

Version:
44 lines (43 loc) 1.16 kB
/** * 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 transformProjectUpdateBodyToJSON: (value: ProjectUpdateBody) => any; export declare const transformJSONToProjectUpdateBody: (value: any) => ProjectUpdateBody; /** * * @export * @interface ProjectUpdateBody */ export interface ProjectUpdateBody { /** * New name for the project * @type {string} * @memberof ProjectUpdateBody */ name?: string; /** * New description for the project * @type {string} * @memberof ProjectUpdateBody */ description?: string; /** * Id of the new workflow status for the project * @type {string} * @memberof ProjectUpdateBody */ workflowStatusId?: string; /** * The unique id of the styleguide to be linked. Set null to unlink the linked styleguide. * @type {string} * @memberof ProjectUpdateBody */ linkedStyleguideId?: string | null; }