class Google::Apis::JobsV4::CompensationRange
Compensation range.
Attributes
max_compensation[RW]
Represents an amount of money with its currency type. Corresponds to the JSON property `maxCompensation` @return [Google::Apis::JobsV4::Money]
min_compensation[RW]
Represents an amount of money with its currency type. Corresponds to the JSON property `minCompensation` @return [Google::Apis::JobsV4::Money]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/jobs_v4/classes.rb, line 677 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_v4/classes.rb, line 682 def update!(**args) @max_compensation = args[:max_compensation] if args.key?(:max_compensation) @min_compensation = args[:min_compensation] if args.key?(:min_compensation) end