class Google::Apis::JobsV3::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::JobsV3::Money]

min_compensation[RW]

Represents an amount of money with its currency type. Corresponds to the JSON property `minCompensation` @return [Google::Apis::JobsV3::Money]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 626
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 631
def update!(**args)
  @max_compensation = args[:max_compensation] if args.key?(:max_compensation)
  @min_compensation = args[:min_compensation] if args.key?(:min_compensation)
end