/** * 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 { WorkflowSchemeAssociations } from './'; /** * A container for a list of workflow schemes together with the projects they are associated with. * @export * @interface ContainerOfWorkflowSchemeAssociations */ export interface ContainerOfWorkflowSchemeAssociations { /** * A list of workflow schemes together with projects they are associated with. * @type {Array} * @memberof ContainerOfWorkflowSchemeAssociations */ values: Array; } export declare function ContainerOfWorkflowSchemeAssociationsFromJSON(json: any): ContainerOfWorkflowSchemeAssociations; export declare function ContainerOfWorkflowSchemeAssociationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContainerOfWorkflowSchemeAssociations; export declare function ContainerOfWorkflowSchemeAssociationsToJSON(value?: ContainerOfWorkflowSchemeAssociations): any;