Sha256: 26e2744bd82bc6fe7d56ac41a05a45c9b2b0e9ef49c35d618aa116491c24bfa6
Contents?: true
Size: 837 Bytes
Versions: 10
Compression:
Stored size: 837 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations # ATS Document Filter class AtsListApplicationDocumentsQueryParamFilter < ::StackOne::Utils::FieldAugmented extend T::Sig # Filter to select documents by type field :type, T.nilable(::String), { 'query_param': { 'field_name': 'type' } } # 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(type: T.nilable(::String), updated_after: T.nilable(::String)).void } def initialize(type: nil, updated_after: nil) @type = type @updated_after = updated_after end end end end
Version data entries
10 entries across 10 versions & 1 rubygems