Show / Hide Table of Contents

Class AcceptedAgreementSummary

The model for a summary of an accepted agreement.

Inheritance
object
AcceptedAgreementSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplaceService.Models
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
public class AcceptedAgreementSummary

Properties

AgreementId

Declaration
[JsonProperty(PropertyName = "agreementId")]
public string AgreementId { get; set; }
Property Value
Type Description
string

The unique identifier for the terms of use agreement itself.

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The unique identifier for the compartment where the agreement was accepted.

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A display name for the accepted agreement.

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The unique identifier for the acceptance of the agreement within a specific compartment.

ListingId

Declaration
[JsonProperty(PropertyName = "listingId")]
public string ListingId { get; set; }
Property Value
Type Description
string

The unique identifier for the listing associated with the agreement.

PackageVersion

Declaration
[JsonProperty(PropertyName = "packageVersion")]
public string PackageVersion { get; set; }
Property Value
Type Description
string

The package version associated with the agreement.

TimeAccepted

Declaration
[JsonProperty(PropertyName = "timeAccepted")]
public DateTime? TimeAccepted { get; set; }
Property Value
Type Description
DateTime?

The time the agreement was accepted.

In this article
Back to top