/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { InlineResponse200Location } from './'; /** * * @export * @interface BodiesCreateBoard */ export interface BodiesCreateBoard { /** * * @type {string} * @memberof BodiesCreateBoard */ name?: string; /** * * @type {string} * @memberof BodiesCreateBoard */ type?: string; /** * * @type {number} * @memberof BodiesCreateBoard */ filterId?: number; /** * * @type {InlineResponse200Location} * @memberof BodiesCreateBoard */ location?: InlineResponse200Location; } export declare function BodiesCreateBoardFromJSON(json: any): BodiesCreateBoard; export declare function BodiesCreateBoardFromJSONTyped(json: any, ignoreDiscriminator: boolean): BodiesCreateBoard; export declare function BodiesCreateBoardToJSON(value?: BodiesCreateBoard): any;