Show / Hide Table of Contents

Class Agreement

The terms of use agreement which must be accepted prior to accessing certain product features.

Inheritance
object
Agreement
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 Agreement

Properties

Signature

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

The signature for the terms of use agreement. The signature attribute is a Base64-encoded string associated with the agreement.

Remarks

Required

TermsAndConditionsText

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

The content of the terms and conditions.

Remarks

Required

Uuid

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

The ID of the terms of use agreement.

Remarks

Required

In this article
Back to top