/** * 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 CustomField */ export interface CustomField { /** * * @type {number} * @memberof CustomField */ 'id'?: number; /** * * @type {string} * @memberof CustomField */ 'title'?: string; /** * * @type {string} * @memberof CustomField */ 'entity'?: string; /** * * @type {string} * @memberof CustomField */ 'type'?: string; /** * * @type {string} * @memberof CustomField */ 'placeholder'?: string | null; /** * * @type {string} * @memberof CustomField */ 'default_value'?: string | null; /** * * @type {string} * @memberof CustomField */ 'value'?: string | null; /** * * @type {boolean} * @memberof CustomField */ 'is_required'?: boolean; /** * * @type {boolean} * @memberof CustomField */ 'is_visible'?: boolean; /** * * @type {boolean} * @memberof CustomField */ 'is_filterable'?: boolean; /** * * @type {boolean} * @memberof CustomField */ 'is_enabled_for_all_projects'?: boolean; /** * Deprecated, use the `created_at` property instead. * @type {string} * @memberof CustomField * @deprecated */ 'created'?: string; /** * Deprecated, use the `updated_at` property instead. * @type {string} * @memberof CustomField * @deprecated */ 'updated'?: string | null; /** * * @type {string} * @memberof CustomField */ 'created_at'?: string; /** * * @type {string} * @memberof CustomField */ 'updated_at'?: string; /** * * @type {Array} * @memberof CustomField */ 'projects_codes'?: Array; }