/** * 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. */ /** * A rule configuration. * @export * @interface RuleConfiguration */ export interface RuleConfiguration { /** * Configuration of the rule, as it is stored by the Connect app on the rule configuration page. * @type {string} * @memberof RuleConfiguration */ value: string; } export declare function RuleConfigurationFromJSON(json: any): RuleConfiguration; export declare function RuleConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuleConfiguration; export declare function RuleConfigurationToJSON(value?: RuleConfiguration): any;