Show / Hide Table of Contents

Class LoaExtensionData

Data related to the extension of the Expiry date of the LOA. It gives you number of remaining extensions along with a history of past extensions made on the LOA.

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

Properties

History

Declaration
[JsonProperty(PropertyName = "history")]
public List<string> History { get; set; }
Property Value
Type Description
List<string>

Chronologically sorted list of date and time when the Letter of Authority's expiration was last updated, most recent first, in the format defined by RFC3339. List is empty if the LOA's expiration date has never been extended.

RemainingExtensions

Declaration
[JsonProperty(PropertyName = "remainingExtensions")]
public long? RemainingExtensions { get; set; }
Property Value
Type Description
long?

The maximum number of times this LOA's expiry can be extended.

In this article
Back to top