/** * 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 { GroupName, User } from './'; /** * Details of a user or group subscribing to a filter. * @export * @interface FilterSubscription */ export interface FilterSubscription { /** * The user subscribing to filter. * @type {User} * @memberof FilterSubscription */ readonly user?: User; /** * The ID of the filter subscription. * @type {number} * @memberof FilterSubscription */ readonly id?: number; /** * The group subscribing to filter. * @type {GroupName} * @memberof FilterSubscription */ readonly group?: GroupName; } export declare function FilterSubscriptionFromJSON(json: any): FilterSubscription; export declare function FilterSubscriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilterSubscription; export declare function FilterSubscriptionToJSON(value?: FilterSubscription): any;