Class: Google::Apis::JobsV2::CompensationFilter
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::JobsV2::CompensationFilter
 
 
- 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
Input only. Filter on job compensation type and amount.
Instance Attribute Summary collapse
- 
  
    
      #include_jobs_with_unspecified_compensation_range  ⇒ Boolean 
    
    
      (also: #include_jobs_with_unspecified_compensation_range?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #range  ⇒ Google::Apis::JobsV2::CompensationRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Compensation range.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #units  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CompensationFilter 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CompensationFilter.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CompensationFilter
Returns a new instance of CompensationFilter
      529 530 531  | 
    
      # File 'generated/google/apis/jobs_v2/classes.rb', line 529 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#include_jobs_with_unspecified_compensation_range ⇒ Boolean Also known as: include_jobs_with_unspecified_compensation_range?
Optional.
Whether to include jobs whose compensation range is unspecified.
Corresponds to the JSON property includeJobsWithUnspecifiedCompensationRange
      508 509 510  | 
    
      # File 'generated/google/apis/jobs_v2/classes.rb', line 508 def include_jobs_with_unspecified_compensation_range @include_jobs_with_unspecified_compensation_range end  | 
  
#range ⇒ Google::Apis::JobsV2::CompensationRange
Compensation range.
Corresponds to the JSON property range
      514 515 516  | 
    
      # File 'generated/google/apis/jobs_v2/classes.rb', line 514 def range @range end  | 
  
#type ⇒ String
Required.
Type of filter.
Corresponds to the JSON property type
      520 521 522  | 
    
      # File 'generated/google/apis/jobs_v2/classes.rb', line 520 def type @type end  | 
  
#units ⇒ Array<String>
Required.
Specify desired base compensation entry's
CompensationInfo.CompensationUnit.
Corresponds to the JSON property units
      527 528 529  | 
    
      # File 'generated/google/apis/jobs_v2/classes.rb', line 527 def units @units end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      534 535 536 537 538 539  | 
    
      # File 'generated/google/apis/jobs_v2/classes.rb', line 534 def update!(**args) @include_jobs_with_unspecified_compensation_range = args[:include_jobs_with_unspecified_compensation_range] if args.key?(:include_jobs_with_unspecified_compensation_range) @range = args[:range] if args.key?(:range) @type = args[:type] if args.key?(:type) @units = args[:units] if args.key?(:units) end  |