class Google::Apis::JobsV3::ClientEvent
An event issued when an end user interacts with the application that implements Cloud Talent Solution. Providing this information improves the quality of search and recommendation for the API clients, enabling the service to perform optimally. The number of events sent must be consistent with other calls, such as job searches, issued to the service by the client.
Attributes
Required. The timestamp of the event. Corresponds to the JSON property `createTime` @return [String]
Required. A unique identifier, generated by the client application. This ` event_id
` is used to establish the relationship between different events (see parent_event_id
). Corresponds to the JSON property `eventId` @return [String]
Optional. Extra information about this event. Used for storing information with no matching field in event payload, for example, user application specific context or details. At most 20 keys are supported. The maximum total size of all keys and values is 2 KB. Corresponds to the JSON property `extraInfo` @return [Hash<String,String>]
An event issued when a job seeker interacts with the application that implements Cloud Talent Solution. Corresponds to the JSON property `jobEvent` @return [Google::Apis::JobsV3::JobEvent]
Optional. The event_id
of an event that resulted in the current event. For example, a Job
view event usually follows a parent impression event: A job seeker first does a search where a list of jobs appears (impression). The job seeker then selects a result and views the description of a particular job ( Job
view). Corresponds to the JSON property `parentEventId` @return [String]
Required. A unique ID generated in the API responses. It can be found in ResponseMetadata.request_id
. Corresponds to the JSON property `requestId` @return [String]
Public Class Methods
# File lib/google/apis/jobs_v3/classes.rb, line 186 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/jobs_v3/classes.rb, line 191 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @event_id = args[:event_id] if args.key?(:event_id) @extra_info = args[:extra_info] if args.key?(:extra_info) @job_event = args[:job_event] if args.key?(:job_event) @parent_event_id = args[:parent_event_id] if args.key?(:parent_event_id) @request_id = args[:request_id] if args.key?(:request_id) end