Show / Hide Table of Contents

Class TrailFileCollection

A list of TrailFiles.

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

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<TrailFileSummary> Items { get; set; }
Property Value
Type Description
List<TrailFileSummary>

An array of TrailFiles.

Remarks

Required

TimeLastFetched

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

The time the data was last fetched from the deployment. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

Remarks

Required

In this article
Back to top