Class: Google::Apis::JobsV4::CompensationRange

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/jobs_v4/classes.rb,
lib/google/apis/jobs_v4/representations.rb,
lib/google/apis/jobs_v4/representations.rb

Overview

Compensation range.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CompensationRange

Returns a new instance of CompensationRange.



678
679
680
# File 'lib/google/apis/jobs_v4/classes.rb', line 678

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#max_compensationGoogle::Apis::JobsV4::Money

Represents an amount of money with its currency type. Corresponds to the JSON property maxCompensation



671
672
673
# File 'lib/google/apis/jobs_v4/classes.rb', line 671

def max_compensation
  @max_compensation
end

#min_compensationGoogle::Apis::JobsV4::Money

Represents an amount of money with its currency type. Corresponds to the JSON property minCompensation



676
677
678
# File 'lib/google/apis/jobs_v4/classes.rb', line 676

def min_compensation
  @min_compensation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



683
684
685
686
# File 'lib/google/apis/jobs_v4/classes.rb', line 683

def update!(**args)
  @max_compensation = args[:max_compensation] if args.key?(:max_compensation)
  @min_compensation = args[:min_compensation] if args.key?(:min_compensation)
end