UNPKG

@zeplin/sdk

Version:
52 lines (51 loc) 1.35 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 { EntityReference } from './entity-reference'; import { FlowBoardPosition } from './flow-board-position'; export declare const transformFlowBoardVariantGroupNodeToJSON: (value: FlowBoardVariantGroupNode) => any; export declare const transformJSONToFlowBoardVariantGroupNode: (value: any) => FlowBoardVariantGroupNode; /** * * @export * @interface FlowBoardVariantGroupNode */ export interface FlowBoardVariantGroupNode { /** * The unique id of the variant group node * @type {string} * @memberof FlowBoardVariantGroupNode */ id: string; /** * * @type {string} * @memberof FlowBoardVariantGroupNode */ type: 'VariantGroupNode'; /** * * @type {FlowBoardPosition} * @memberof FlowBoardVariantGroupNode */ position: FlowBoardPosition; /** * * @type {EntityReference} * @memberof FlowBoardVariantGroupNode */ variantGroup: EntityReference; /** * * @type {EntityReference} * @memberof FlowBoardVariantGroupNode */ defaultVariant: EntityReference; }