/** * Qase.io TestOps API v1 * Qase TestOps API v1 Specification. * * The version of the OpenAPI document: 1.0.0 * Contact: support@qase.io * * 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 SystemFieldOption */ export interface SystemFieldOption { /** * * @type {number} * @memberof SystemFieldOption */ 'id'?: number; /** * * @type {string} * @memberof SystemFieldOption */ 'title'?: string; /** * * @type {string} * @memberof SystemFieldOption */ 'slug'?: string; /** * * @type {string} * @memberof SystemFieldOption */ 'color'?: string | null; /** * * @type {string} * @memberof SystemFieldOption */ 'icon'?: string | null; /** * * @type {boolean} * @memberof SystemFieldOption */ 'is_default'?: boolean; /** * * @type {boolean} * @memberof SystemFieldOption */ 'read_only'?: boolean; }