Class: Google::Apis::JobsV3p1beta1::CompensationRange

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

Overview

Compensation range.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CompensationRange

Returns a new instance of CompensationRange.



670
671
672
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 670

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

Instance Attribute Details

#max_compensationGoogle::Apis::JobsV3p1beta1::Money

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



663
664
665
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 663

def max_compensation
  @max_compensation
end

#min_compensationGoogle::Apis::JobsV3p1beta1::Money

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



668
669
670
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 668

def min_compensation
  @min_compensation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



675
676
677
678
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 675

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