class Google::Apis::JobsV3::BatchDeleteJobsRequest

Input only. Batch delete jobs request.

Attributes

filter[RW]

Required. The filter string specifies the jobs to be deleted. Supported operator: =, AND The fields eligible for filtering are: * `companyName` ( Required) * `requisitionId` (Required) Sample Query: companyName = “projects/ api-test-project/companies/123” AND requisitionId = “req-1” Corresponds to the JSON property `filter` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 77
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_v3/classes.rb, line 82
def update!(**args)
  @filter = args[:filter] if args.key?(:filter)
end