@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
14 lines (12 loc) • 545 B
text/typescript
import type { BulkChangeOwnerDetails, PermissionDetails } from '../models';
/** Details of a request to bulk edit shareable entity. */
export interface BulkEditDashboards {
/** Allowed action for bulk edit shareable entity */
action: string;
changeOwnerDetails?: BulkChangeOwnerDetails;
/** The id list of shareable entities to be changed. */
entityIds: number[];
/** Whether the actions are executed by users with Administer Jira global permission. */
extendAdminPermissions?: boolean;
permissionDetails?: PermissionDetails;
}