/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface FieldConfigurationDetailsAsResponse { /** * The ID of the field configuration. */ id?: number; /** * The name of the field configuration. */ name: string; /** * The description of the field configuration */ description?: string; /** * Whether the field configuration is the default. */ isDefault?: boolean; } //# sourceMappingURL=FieldConfigurationDetailsAsResponse.d.ts.map