class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata
Attributes
create_time[RW]
When the thread is created Corresponds to the JSON property `createTime` @return [String]
last_update_time[RW]
When the thread is last updated. Corresponds to the JSON property `lastUpdateTime` @return [String]
status[RW]
Corresponds to the JSON property `status` @return [String]
thumbnail[RW]
An image thumbnail of this thread. Corresponds to the JSON property `thumbnail` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2363 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 2368 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @status = args[:status] if args.key?(:status) @thumbnail = args[:thumbnail] if args.key?(:thumbnail) end