/** * 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. */ /** * The group or role to which this item is visible. * @export * @interface Visibility */ export interface Visibility { [key: string]: object | any; /** * Indicates whether visibility of this item is restricted to a group or role. * @type {string} * @memberof Visibility */ type?: VisibilityTypeEnum; /** * The name of the group or role to which visibility of this item is restricted. * @type {string} * @memberof Visibility */ value?: string; } export declare function VisibilityFromJSON(json: any): Visibility; export declare function VisibilityFromJSONTyped(json: any, ignoreDiscriminator: boolean): Visibility; export declare function VisibilityToJSON(value?: Visibility): any; /** * @export * @enum {string} */ export declare enum VisibilityTypeEnum { Group = "group", Role = "role" }