Show / Hide Table of Contents

Class SnapshotDatasetDetails

Allows outputting the latest records paired with annotations and write them to object storage.

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

Properties

AreAnnotationsIncluded

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

Whether annotations are to be included in the export dataset digest.

Remarks

Required

AreUnannotatedRecordsIncluded

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

Whether to include records that have yet to be annotated in the export dataset digest.

Remarks

Required

ExportDetails

Declaration
[Required(ErrorMessage = "ExportDetails is required.")]
[JsonProperty(PropertyName = "exportDetails")]
public ObjectStorageSnapshotExportDetails ExportDetails { get; set; }
Property Value
Type Description
ObjectStorageSnapshotExportDetails
Remarks

Required

ExportFormat

Declaration
[JsonProperty(PropertyName = "exportFormat")]
public ExportFormat ExportFormat { get; set; }
Property Value
Type Description
ExportFormat
In this article
Back to top