class Google::Apis::JobsV3::JobEvent

An event issued when a job seeker interacts with the application that implements Cloud Talent Solution.

Attributes

jobs[RW]

Required. The job name(s) associated with this event. For example, if this is an impression event, this field contains the identifiers of all jobs shown to the job seeker. If this was a view event, this field contains the identifier of the viewed job. Corresponds to the JSON property `jobs` @return [Array<String>]

type[RW]

Required. The type of the event (see JobEventType). Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 1348
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/jobs_v3/classes.rb, line 1353
def update!(**args)
  @jobs = args[:jobs] if args.key?(:jobs)
  @type = args[:type] if args.key?(:type)
end