/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * 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 { ContainerOfWorkflowSchemeAssociations } from '../models'; export interface GetWorkflowSchemeProjectAssociationsRequest { projectId: Array; } /** * no description */ export declare class WorkflowSchemeProjectAssociationsApi extends runtime.BaseAPI { /** * Returns a list of the workflow schemes associated with a list of projects. Each returned workflow scheme includes a list of the requested projects associated with it. Any next-gen or non-existent projects in the request are ignored and no errors are returned. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * Get workflow scheme project associations */ getWorkflowSchemeProjectAssociationsRaw(requestParameters: GetWorkflowSchemeProjectAssociationsRequest): Promise>; /** * Returns a list of the workflow schemes associated with a list of projects. Each returned workflow scheme includes a list of the requested projects associated with it. Any next-gen or non-existent projects in the request are ignored and no errors are returned. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * Get workflow scheme project associations */ getWorkflowSchemeProjectAssociations(requestParameters: GetWorkflowSchemeProjectAssociationsRequest): Promise; }