UNPKG

@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.

11 lines (9 loc) 447 B
import type { AssociationContextObject } from './associationContextObject'; import type { FieldIdentifierObject } from './fieldIdentifierObject'; /** Details of field associations with projects. */ export interface FieldAssociationsRequest { /** Contexts to associate/unassociate the fields with. */ associationContexts: AssociationContextObject[]; /** Fields to associate/unassociate with projects. */ fields: FieldIdentifierObject[]; }