/** * 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 * as runtime from '../runtime'; import { MoveIssuesToBacklog, MoveIssuesToBacklogForBoard } from '../models'; export interface MoveIssuesToBacklogRequest { MoveIssuesToBacklog: MoveIssuesToBacklog; } export interface MoveIssuesToBacklogForBoardRequest { boardId: number; MoveIssuesToBacklogForBoard: MoveIssuesToBacklogForBoard; } /** * no description */ export declare class BacklogApi extends runtime.BaseAPI { /** * Move issues to the backlog. This operation is equivalent to remove future and active sprints from a given set of issues. At most 50 issues may be moved at once. * Move issues to backlog */ moveIssuesToBacklogRaw(requestParameters: MoveIssuesToBacklogRequest): Promise>; /** * Move issues to the backlog. This operation is equivalent to remove future and active sprints from a given set of issues. At most 50 issues may be moved at once. * Move issues to backlog */ moveIssuesToBacklog(requestParameters: MoveIssuesToBacklogRequest): Promise; /** * Move issues to the backlog of a particular board (if they are already on that board). This operation is equivalent to remove future and active sprints from a given set of issues if the board has sprints If the board does not have sprints this will put the issues back into the backlog from the board. At most 50 issues may be moved at once. * Move issues to backlog for board */ moveIssuesToBacklogForBoardRaw(requestParameters: MoveIssuesToBacklogForBoardRequest): Promise>; /** * Move issues to the backlog of a particular board (if they are already on that board). This operation is equivalent to remove future and active sprints from a given set of issues if the board has sprints If the board does not have sprints this will put the issues back into the backlog from the board. At most 50 issues may be moved at once. * Move issues to backlog for board */ moveIssuesToBacklogForBoard(requestParameters: MoveIssuesToBacklogForBoardRequest): Promise; }