Class: Google::Apis::JobsV3::JobEvent
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3::JobEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v3/classes.rb,
lib/google/apis/jobs_v3/representations.rb,
lib/google/apis/jobs_v3/representations.rb
Overview
An event issued when a job seeker interacts with the application that implements Cloud Talent Solution.
Instance Attribute Summary collapse
-
#jobs ⇒ Array<String>
Required.
-
#type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobEvent
constructor
A new instance of JobEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobEvent
Returns a new instance of JobEvent.
1347 1348 1349 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 1347 def initialize(**args) update!(**args) end |
Instance Attribute Details
#jobs ⇒ Array<String>
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
1340 1341 1342 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 1340 def jobs @jobs end |
#type ⇒ String
Required. The type of the event (see JobEventType).
Corresponds to the JSON property type
1345 1346 1347 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 1345 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1352 1353 1354 1355 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 1352 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @type = args[:type] if args.key?(:type) end |