Class: Google::Apis::JobsV4::CompensationInfo

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

Overview

Job compensation details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CompensationInfo

Returns a new instance of CompensationInfo.

[View source]

651
652
653
# File 'generated/google/apis/jobs_v4/classes.rb', line 651

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

Instance Attribute Details

#annualized_base_compensation_rangeGoogle::Apis::JobsV4::CompensationRange

Compensation range. Corresponds to the JSON property annualizedBaseCompensationRange


637
638
639
# File 'generated/google/apis/jobs_v4/classes.rb', line 637

def annualized_base_compensation_range
  @annualized_base_compensation_range
end

#annualized_total_compensation_rangeGoogle::Apis::JobsV4::CompensationRange

Compensation range. Corresponds to the JSON property annualizedTotalCompensationRange


642
643
644
# File 'generated/google/apis/jobs_v4/classes.rb', line 642

def annualized_total_compensation_range
  @annualized_total_compensation_range
end

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

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


649
650
651
# File 'generated/google/apis/jobs_v4/classes.rb', line 649

def entries
  @entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

656
657
658
659
660
# File 'generated/google/apis/jobs_v4/classes.rb', line 656

def update!(**args)
  @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)
end