/** * Data Safe API * APIs for using Oracle Data Safe. * OpenAPI spec version: 20181201 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * Details to update a finding in a security assessment. */ export interface UpdateFindingDetails { /** * The severity of the finding as defined or changed by the user. */ "severity"?: string; /** * User provided reason for accepting or modifying this finding if they choose to do so. */ "justification"?: string; /** * The time until which the change in severity (deferred / modified) got the given finding is valid. */ "timeValidUntil"?: Date; } export declare namespace UpdateFindingDetails { function getJsonObj(obj: UpdateFindingDetails): object; function getDeserializedJsonObj(obj: UpdateFindingDetails): object; }