/** * 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 { WorkflowScheme } from './'; /** * A workflow scheme along with a list of projects that use it. * @export * @interface WorkflowSchemeAssociations */ export interface WorkflowSchemeAssociations { /** * The list of projects that use the workflow scheme. * @type {Array} * @memberof WorkflowSchemeAssociations */ projectIds: Array; /** * The workflow scheme. * @type {WorkflowScheme} * @memberof WorkflowSchemeAssociations */ workflowScheme?: WorkflowScheme; } export declare function WorkflowSchemeAssociationsFromJSON(json: any): WorkflowSchemeAssociations; export declare function WorkflowSchemeAssociationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowSchemeAssociations; export declare function WorkflowSchemeAssociationsToJSON(value?: WorkflowSchemeAssociations): any;