/** * Marketplace Service API * Use the Marketplace API to manage applications in Oracle Cloud Infrastructure Marketplace. For more information, see [Overview of Marketplace](https://docs.oracle.com/iaas/Content/Marketplace/Concepts/marketoverview.htm) * OpenAPI spec version: 20181001 * * * 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. */ /** * The model for a summary of an accepted agreement. */ export interface AcceptedAgreementSummary { /** * The unique identifier for the acceptance of the agreement within a specific compartment. */ "id"?: string; /** * A display name for the accepted agreement. */ "displayName"?: string; /** * The unique identifier for the compartment where the agreement was accepted. */ "compartmentId"?: string; /** * The unique identifier for the listing associated with the agreement. */ "listingId"?: string; /** * The package version associated with the agreement. */ "packageVersion"?: string; /** * The unique identifier for the terms of use agreement itself. */ "agreementId"?: string; /** * The time the agreement was accepted. */ "timeAccepted"?: Date; } export declare namespace AcceptedAgreementSummary { function getJsonObj(obj: AcceptedAgreementSummary): object; function getDeserializedJsonObj(obj: AcceptedAgreementSummary): object; }