Class: Google::Apis::JobsV3p1beta1::CompensationFilter

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

Input only. Filter on job compensation type and amount.

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

Returns a new instance of CompensationFilter



567
568
569
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 567

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

Instance Attribute Details

#include_jobs_with_unspecified_compensation_rangeBoolean 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

Returns:

  • (Boolean)


546
547
548
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 546

def include_jobs_with_unspecified_compensation_range
  @include_jobs_with_unspecified_compensation_range
end

#rangeGoogle::Apis::JobsV3p1beta1::CompensationRange

Compensation range. Corresponds to the JSON property range



552
553
554
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 552

def range
  @range
end

#typeString

Required. Type of filter. Corresponds to the JSON property type

Returns:

  • (String)


558
559
560
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 558

def type
  @type
end

#unitsArray<String>

Required. Specify desired base compensation entry's CompensationInfo.CompensationUnit. Corresponds to the JSON property units

Returns:

  • (Array<String>)


565
566
567
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 565

def units
  @units
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



572
573
574
575
576
577
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 572

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