Class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1MarkRecommendationClaimedRequest
- Inherits:
-
Object
- Object
- Google::Apis::RecommenderV1::GoogleCloudRecommenderV1MarkRecommendationClaimedRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/recommender_v1/classes.rb,
generated/google/apis/recommender_v1/representations.rb,
generated/google/apis/recommender_v1/representations.rb
Overview
Request for the MarkRecommendationClaimed
Method.
Instance Attribute Summary collapse
-
#etag ⇒ String
Required.
-
#state_metadata ⇒ Hash<String,String>
State properties to include with this state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRecommenderV1MarkRecommendationClaimedRequest
constructor
A new instance of GoogleCloudRecommenderV1MarkRecommendationClaimedRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecommenderV1MarkRecommendationClaimedRequest
Returns a new instance of GoogleCloudRecommenderV1MarkRecommendationClaimedRequest.
298 299 300 |
# File 'generated/google/apis/recommender_v1/classes.rb', line 298 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Required. Fingerprint of the Recommendation. Provides optimistic locking.
Corresponds to the JSON property etag
289 290 291 |
# File 'generated/google/apis/recommender_v1/classes.rb', line 289 def etag @etag end |
#state_metadata ⇒ Hash<String,String>
State properties to include with this state. Overwrites any existing
state_metadata
. Keys must match the regex /^a-z0-90,62
$/. Values must match
the regex /^[a-zA-Z0-9_./-]0,255
$/.
Corresponds to the JSON property stateMetadata
296 297 298 |
# File 'generated/google/apis/recommender_v1/classes.rb', line 296 def @state_metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
303 304 305 306 |
# File 'generated/google/apis/recommender_v1/classes.rb', line 303 def update!(**args) @etag = args[:etag] if args.key?(:etag) @state_metadata = args[:state_metadata] if args.key?(:state_metadata) end |