Sha256: 91348d4e3e6a37c9cf5b242685aec1bc42225989c3df5f22d1ecd642f4d804ab
Contents?: true
Size: 852 Bytes
Versions: 8
Compression:
Stored size: 852 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations # ATS Application Filter class AtsListApplicationsQueryParamFilter < ::StackOne::Utils::FieldAugmented extend T::Sig # Filter to select applications by job_id field :job_id, T.nilable(::String), { 'query_param': { 'field_name': 'job_id' } } # Use a string with a date to only select results updated after that given date field :updated_after, T.nilable(::String), { 'query_param': { 'field_name': 'updated_after' } } sig { params(job_id: T.nilable(::String), updated_after: T.nilable(::String)).void } def initialize(job_id: nil, updated_after: nil) @job_id = job_id @updated_after = updated_after end end end end
Version data entries
8 entries across 8 versions & 1 rubygems