UNPKG

testrail-modern-client

Version:
16 lines (15 loc) 430 B
/** * Represents a test case priority in TestRail. */ export interface Priority { /** The unique ID of the priority */ id: number; /** The full name of the priority */ name: string; /** The short version of the priority name */ short_name: string; /** True for the default priority and false otherwise */ is_default: boolean; /** The order/position of the priority */ priority: number; }