@zeplin/sdk
Version:
Zeplin API client for JavaScript
39 lines (38 loc) • 952 B
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 { WorkflowStatusColor } from './workflow-status-color';
export declare const transformWorkflowStatusToJSON: (value: WorkflowStatus) => any;
export declare const transformJSONToWorkflowStatus: (value: any) => WorkflowStatus;
/**
*
* @export
* @interface WorkflowStatus
*/
export interface WorkflowStatus {
/**
* The unique id of the workflow status
* @type {string}
* @memberof WorkflowStatus
*/
id: string;
/**
* The name of the workflow status
* @type {string}
* @memberof WorkflowStatus
*/
name: string;
/**
*
* @type {WorkflowStatusColor}
* @memberof WorkflowStatus
*/
color: WorkflowStatusColor;
}