Class: Google::Apis::CloudsearchV1::Interaction
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::Interaction
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Represents an interaction between a user and an item.
Instance Attribute Summary collapse
-
#interaction_time ⇒ String
The time when the user acted on the item.
-
#principal ⇒ Google::Apis::CloudsearchV1::Principal
Reference to a user, group, or domain.
-
#type ⇒ String
Corresponds to the JSON property
type
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Interaction
constructor
A new instance of Interaction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Interaction
Returns a new instance of Interaction.
12059 12060 12061 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12059 def initialize(**args) update!(**args) end |
Instance Attribute Details
#interaction_time ⇒ String
The time when the user acted on the item. If multiple actions of the same type
exist for a single user, only the most recent action is recorded.
Corresponds to the JSON property interactionTime
12047 12048 12049 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12047 def interaction_time @interaction_time end |
#principal ⇒ Google::Apis::CloudsearchV1::Principal
Reference to a user, group, or domain.
Corresponds to the JSON property principal
12052 12053 12054 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12052 def principal @principal end |
#type ⇒ String
Corresponds to the JSON property type
12057 12058 12059 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12057 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12064 12065 12066 12067 12068 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 12064 def update!(**args) @interaction_time = args[:interaction_time] if args.key?(:interaction_time) @principal = args[:principal] if args.key?(:principal) @type = args[:type] if args.key?(:type) end |