UNPKG

@zeplin/sdk

Version:
45 lines (44 loc) 1.04 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. */ import { ColorData } from './color-data'; export declare const transformFlowBoardGroupToJSON: (value: FlowBoardGroup) => any; export declare const transformJSONToFlowBoardGroup: (value: any) => FlowBoardGroup; /** * * @export * @interface FlowBoardGroup */ export interface FlowBoardGroup { /** * Identifier of the flow board group * @type {string} * @memberof FlowBoardGroup */ id: string; /** * The unix timestamp when the color was created * @type {number} * @memberof FlowBoardGroup */ created: number; /** * Name of the flow board * @type {string} * @memberof FlowBoardGroup */ name: string; /** * * @type {ColorData} * @memberof FlowBoardGroup */ color: ColorData; }