/** * 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. */ /** * JQL queries that contained users that could not be found * @export * @interface JQLQueryWithUnknownUsers */ export interface JQLQueryWithUnknownUsers { /** * The converted query, with accountIDs instead of user identifiers, or \'unknown\' for users that could not be found * @type {string} * @memberof JQLQueryWithUnknownUsers */ convertedQuery?: string; /** * The original query, for reference * @type {string} * @memberof JQLQueryWithUnknownUsers */ originalQuery?: string; } export declare function JQLQueryWithUnknownUsersFromJSON(json: any): JQLQueryWithUnknownUsers; export declare function JQLQueryWithUnknownUsersFromJSONTyped(json: any, ignoreDiscriminator: boolean): JQLQueryWithUnknownUsers; export declare function JQLQueryWithUnknownUsersToJSON(value?: JQLQueryWithUnknownUsers): any;