class Google::Apis::JobsV3p1beta1::ProcessingOptions

Input only. Options for job processing.

Attributes

disable_street_address_resolution[RW]

Optional. If set to `true`, the service does not attempt to resolve a more precise address for the job. Corresponds to the JSON property `disableStreetAddressResolution` @return [Boolean]

disable_street_address_resolution?[RW]

Optional. If set to `true`, the service does not attempt to resolve a more precise address for the job. Corresponds to the JSON property `disableStreetAddressResolution` @return [Boolean]

html_sanitization[RW]

Optional. Option for job HTML content sanitization. Applied fields are: * description * applicationInfo.instruction * incentives * qualifications * responsibilities HTML tags in these fields may be stripped if sanitiazation is not disabled. Defaults to HtmlSanitization.SIMPLE_FORMATTING_ONLY. Corresponds to the JSON property `htmlSanitization` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3p1beta1/classes.rb, line 2390
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/jobs_v3p1beta1/classes.rb, line 2395
def update!(**args)
  @disable_street_address_resolution = args[:disable_street_address_resolution] if args.key?(:disable_street_address_resolution)
  @html_sanitization = args[:html_sanitization] if args.key?(:html_sanitization)
end