Class: Google::Apis::JobsV2::CompensationInfo

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

Overview

Job compensation details.

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) ⇒ CompensationInfo

Returns a new instance of CompensationInfo.



619
620
621
# File 'generated/google/apis/jobs_v2/classes.rb', line 619

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

Instance Attribute Details

#amountGoogle::Apis::JobsV2::Money

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



582
583
584
# File 'generated/google/apis/jobs_v2/classes.rb', line 582

def amount
  @amount
end

#annualized_base_compensation_rangeGoogle::Apis::JobsV2::CompensationRange

Compensation range. Corresponds to the JSON property annualizedBaseCompensationRange



587
588
589
# File 'generated/google/apis/jobs_v2/classes.rb', line 587

def annualized_base_compensation_range
  @annualized_base_compensation_range
end

#annualized_total_compensation_rangeGoogle::Apis::JobsV2::CompensationRange

Compensation range. Corresponds to the JSON property annualizedTotalCompensationRange



592
593
594
# File 'generated/google/apis/jobs_v2/classes.rb', line 592

def annualized_total_compensation_range
  @annualized_total_compensation_range
end

#entriesArray<Google::Apis::JobsV2::CompensationEntry>

Optional. Job compensation information. At most one entry can be of type CompensationInfo.CompensationType.BASE, which is referred as ** base compensation entry ** for the job. Corresponds to the JSON property entries



600
601
602
# File 'generated/google/apis/jobs_v2/classes.rb', line 600

def entries
  @entries
end

#maxGoogle::Apis::JobsV2::Money

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



605
606
607
# File 'generated/google/apis/jobs_v2/classes.rb', line 605

def max
  @max
end

#minGoogle::Apis::JobsV2::Money

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



610
611
612
# File 'generated/google/apis/jobs_v2/classes.rb', line 610

def min
  @min
end

#typeString

Deprecated. Use entries instead. Optional. Type of job compensation. Corresponds to the JSON property type

Returns:

  • (String)


617
618
619
# File 'generated/google/apis/jobs_v2/classes.rb', line 617

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



624
625
626
627
628
629
630
631
632
# File 'generated/google/apis/jobs_v2/classes.rb', line 624

def update!(**args)
  @amount = args[:amount] if args.key?(:amount)
  @annualized_base_compensation_range = args[:annualized_base_compensation_range] if args.key?(:annualized_base_compensation_range)
  @annualized_total_compensation_range = args[:annualized_total_compensation_range] if args.key?(:annualized_total_compensation_range)
  @entries = args[:entries] if args.key?(:entries)
  @max = args[:max] if args.key?(:max)
  @min = args[:min] if args.key?(:min)
  @type = args[:type] if args.key?(:type)
end