Class: Google::Cloud::Talent::V4beta1::ProfileEvent
- Inherits:
-
Object
- Object
- Google::Cloud::Talent::V4beta1::ProfileEvent
- Defined in:
- lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event.rb
Overview
An event issued when a profile searcher interacts with the application that implements Cloud Talent Solution.
Defined Under Namespace
Modules: ProfileEventType
Instance Attribute Summary collapse
-
#jobs ⇒ Array<String>
Optional.
-
#profiles ⇒ Array<String>
Required.
-
#type ⇒ Google::Cloud::Talent::V4beta1::ProfileEvent::ProfileEventType
Required.
Instance Attribute Details
#jobs ⇒ Array<String>
Returns Optional.
The job ID associated with this client event if there is one. Leave it empty if the event isn't associated with a job.
The job ID should be consistent with the JobApplication#job#requisition_id in the profile.
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event.rb', line 194 class ProfileEvent # The enum represents types of client events for a candidate profile. module ProfileEventType # Default value. PROFILE_EVENT_TYPE_UNSPECIFIED = 0 # The profile is displayed. IMPRESSION = 1 # The profile is viewed. VIEW = 2 # The profile is bookmarked. BOOKMARK = 3 end end |
#profiles ⇒ Array<String>
Returns Required.
The profile name(s) associated with this client event.
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event.rb', line 194 class ProfileEvent # The enum represents types of client events for a candidate profile. module ProfileEventType # Default value. PROFILE_EVENT_TYPE_UNSPECIFIED = 0 # The profile is displayed. IMPRESSION = 1 # The profile is viewed. VIEW = 2 # The profile is bookmarked. BOOKMARK = 3 end end |
#type ⇒ Google::Cloud::Talent::V4beta1::ProfileEvent::ProfileEventType
Returns Required.
Type of event.
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event.rb', line 194 class ProfileEvent # The enum represents types of client events for a candidate profile. module ProfileEventType # Default value. PROFILE_EVENT_TYPE_UNSPECIFIED = 0 # The profile is displayed. IMPRESSION = 1 # The profile is viewed. VIEW = 2 # The profile is bookmarked. BOOKMARK = 3 end end |