/** * 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. */ /** * * @export * @interface ActorsMap */ export interface ActorsMap { /** * The user account ID of the user to add. * @type {Array} * @memberof ActorsMap */ user?: Array; /** * The name of the group to add. * @type {Array} * @memberof ActorsMap */ group?: Array; } export declare function ActorsMapFromJSON(json: any): ActorsMap; export declare function ActorsMapFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActorsMap; export declare function ActorsMapToJSON(value?: ActorsMap): any;