Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datalabeling_v1beta1/classes.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#create_time ⇒ String
When the thread is created Corresponds to the JSON property
createTime
. -
#last_update_time ⇒ String
When the thread is last updated.
-
#status ⇒ String
Corresponds to the JSON property
status
. -
#thumbnail ⇒ String
An image thumbnail of this thread.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata
constructor
A new instance of GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata
Returns a new instance of GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata.
2363 2364 2365 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2363 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
When the thread is created
Corresponds to the JSON property createTime
2345 2346 2347 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2345 def create_time @create_time end |
#last_update_time ⇒ String
When the thread is last updated.
Corresponds to the JSON property lastUpdateTime
2350 2351 2352 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2350 def last_update_time @last_update_time end |
#status ⇒ String
Corresponds to the JSON property status
2355 2356 2357 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2355 def status @status end |
#thumbnail ⇒ String
An image thumbnail of this thread.
Corresponds to the JSON property thumbnail
NOTE: Values are automatically base64 encoded/decoded in the client library.
2361 2362 2363 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 2361 def thumbnail @thumbnail end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2368 2369 2370 2371 2372 2373 |
# File 'generated/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 |