Sha256: 09eee91aec7eb8283fb0916417092a908955a127be00590a0bf92bfd5f9f6293
Contents?: true
Size: 880 Bytes
Versions: 3
Compression:
Stored size: 880 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations # HRIS Time Off filters class HrisListTimeOffRequestsQueryParamFilter < ::Crystalline::FieldAugmented extend T::Sig # List of time off type ids to filter by. field :type_ids, T.nilable(T::Array[::String]), { 'query_param': { 'field_name': 'type_ids' } } # 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_ids: T.nilable(T::Array[::String]), updated_after: T.nilable(::String)).void } def initialize(type_ids: nil, updated_after: nil) @type_ids = type_ids @updated_after = updated_after end end end end
Version data entries
3 entries across 3 versions & 1 rubygems