/** * 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 { JQLQueryWithUnknownUsers } from './'; /** * The converted JQL queries. * @export * @interface ConvertedJQLQueries */ export interface ConvertedJQLQueries { /** * List of queries containing user information that could not be mapped to an existing user * @type {Array} * @memberof ConvertedJQLQueries */ queriesWithUnknownUsers?: Array; /** * The list of converted query strings with account IDs in place of user identifiers. * @type {Array} * @memberof ConvertedJQLQueries */ queryStrings?: Array; } export declare function ConvertedJQLQueriesFromJSON(json: any): ConvertedJQLQueries; export declare function ConvertedJQLQueriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConvertedJQLQueries; export declare function ConvertedJQLQueriesToJSON(value?: ConvertedJQLQueries): any;