Show / Hide Table of Contents

Class AgreementRecordSummary

A record showing that the terms of use agreement for the WebLogic management service was accepted for a domain.

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

Properties

AgreementSignature

Declaration
[Required(ErrorMessage = "AgreementSignature is required.")]
[JsonProperty(PropertyName = "agreementSignature")]
public string AgreementSignature { get; set; }
Property Value
Type Description
string

The agreement signature.

Remarks

Required

AgreementUuid

Declaration
[Required(ErrorMessage = "AgreementUuid is required.")]
[JsonProperty(PropertyName = "agreementUuid")]
public string AgreementUuid { get; set; }
Property Value
Type Description
string

The ID of the accepted agreement.

Remarks

Required

TimeAccepted

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

The accepted time for the agreement record.

Remarks

Required

In this article
Back to top