class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p2alpha1ImportDataOperationResponse

Response used for ImportData longrunning operation.

Attributes

dataset[RW]

Ouptut only. The name of imported dataset. Corresponds to the JSON property `dataset` @return [String]

import_count[RW]

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

total_count[RW]

Output only. Total number of examples requested to import 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 5658
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 5663
def update!(**args)
  @dataset = args[:dataset] if args.key?(:dataset)
  @import_count = args[:import_count] if args.key?(:import_count)
  @total_count = args[:total_count] if args.key?(:total_count)
end