class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p1alpha1ExportDataOperationResponse

Response used for ExportDataset longrunning operation.

Attributes

annotated_dataset[RW]

Output only. The name of annotated dataset in format “projects//datasets// annotatedDatasets/*”. Corresponds to the JSON property `annotatedDataset` @return [String]

dataset[RW]

Ouptut only. The name of dataset. “projects//datasets/” Corresponds to the JSON property `dataset` @return [String]

export_count[RW]

Output only. Number of examples exported successfully. Corresponds to the JSON property `exportCount` @return [Fixnum]

label_stats[RW]

Statistics about annotation specs. Corresponds to the JSON property `labelStats` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p1alpha1LabelStats]

output_config[RW]

The configuration of output data. Corresponds to the JSON property `outputConfig` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p1alpha1OutputConfig]

total_count[RW]

Output only. Total number of examples requested to export Corresponds to the JSON property `totalCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 4740
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 4745
def update!(**args)
  @annotated_dataset = args[:annotated_dataset] if args.key?(:annotated_dataset)
  @dataset = args[:dataset] if args.key?(:dataset)
  @export_count = args[:export_count] if args.key?(:export_count)
  @label_stats = args[:label_stats] if args.key?(:label_stats)
  @output_config = args[:output_config] if args.key?(:output_config)
  @total_count = args[:total_count] if args.key?(:total_count)
end