Class: Google::Apis::JobsV2::ExtendedCompensationInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::JobsV2::ExtendedCompensationInfo
 
- 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
Deprecated. Use CompensationInfo. Describes job compensation.
Instance Attribute Summary collapse
- 
  
    
      #annualized_base_compensation_range  ⇒ Google::Apis::JobsV2::ExtendedCompensationInfoCompensationRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Deprecated. 
- 
  
    
      #annualized_base_compensation_unspecified  ⇒ Boolean 
    
    
      (also: #annualized_base_compensation_unspecified?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #annualized_total_compensation_range  ⇒ Google::Apis::JobsV2::ExtendedCompensationInfoCompensationRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Deprecated. 
- 
  
    
      #annualized_total_compensation_unspecified  ⇒ Boolean 
    
    
      (also: #annualized_total_compensation_unspecified?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #currency  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #entries  ⇒ Array<Google::Apis::JobsV2::ExtendedCompensationInfoCompensationEntry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExtendedCompensationInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ExtendedCompensationInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExtendedCompensationInfo
Returns a new instance of ExtendedCompensationInfo
| 1164 1165 1166 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1164 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#annualized_base_compensation_range ⇒ Google::Apis::JobsV2::ExtendedCompensationInfoCompensationRange
Deprecated. See CompensationInfo.
Compensation range.
Corresponds to the JSON property annualizedBaseCompensationRange
| 1120 1121 1122 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1120 def annualized_base_compensation_range @annualized_base_compensation_range end | 
#annualized_base_compensation_unspecified ⇒ Boolean Also known as: annualized_base_compensation_unspecified?
Output only.
Indicates annualized base compensation range cannot be derived, due to
the job's base compensation entry cannot be annualized.
See CompensationEntry for explanation on annualization and base
compensation entry.
Corresponds to the JSON property annualizedBaseCompensationUnspecified
| 1129 1130 1131 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1129 def annualized_base_compensation_unspecified @annualized_base_compensation_unspecified end | 
#annualized_total_compensation_range ⇒ Google::Apis::JobsV2::ExtendedCompensationInfoCompensationRange
Deprecated. See CompensationInfo.
Compensation range.
Corresponds to the JSON property annualizedTotalCompensationRange
| 1136 1137 1138 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1136 def annualized_total_compensation_range @annualized_total_compensation_range end | 
#annualized_total_compensation_unspecified ⇒ Boolean Also known as: annualized_total_compensation_unspecified?
Output only.
Indicates annualized total compensation range cannot be derived, due to
the job's all CompensationEntry cannot be annualized.
See CompensationEntry for explanation on annualization and base
compensation entry.
Corresponds to the JSON property annualizedTotalCompensationUnspecified
| 1145 1146 1147 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1145 def annualized_total_compensation_unspecified @annualized_total_compensation_unspecified end | 
#currency ⇒ String
Optional.
A 3-letter ISO 4217
currency code.
Corresponds to the JSON property currency
| 1153 1154 1155 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1153 def currency @currency end | 
#entries ⇒ Array<Google::Apis::JobsV2::ExtendedCompensationInfoCompensationEntry>
Optional.
Job compensation information.
At most one entry can be of type
ExtendedCompensationInfo.CompensationType.BASE, which is
referred as ** base compensation entry ** for the job.
Corresponds to the JSON property entries
| 1162 1163 1164 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1162 def entries @entries end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1169 1170 1171 1172 1173 1174 1175 1176 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1169 def update!(**args) @annualized_base_compensation_range = args[:annualized_base_compensation_range] if args.key?(:annualized_base_compensation_range) @annualized_base_compensation_unspecified = args[:annualized_base_compensation_unspecified] if args.key?(:annualized_base_compensation_unspecified) @annualized_total_compensation_range = args[:annualized_total_compensation_range] if args.key?(:annualized_total_compensation_range) @annualized_total_compensation_unspecified = args[:annualized_total_compensation_unspecified] if args.key?(:annualized_total_compensation_unspecified) @currency = args[:currency] if args.key?(:currency) @entries = args[:entries] if args.key?(:entries) end |