Sha256: fbd46f8dd3ae41a4af605a272b08adfe7ce2bbd537dfc84e74837521f7737247
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations # LMS Completions Filter class LmsListCompletionsQueryParamFilter < ::StackOne::Utils::FieldAugmented extend T::Sig # Filter to select completions by learning object type. field :learning_object_type, T.nilable(::StackOne::Operations::QueryParamLearningObjectType), { 'query_param': { 'field_name': 'learning_object_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(learning_object_type: T.nilable(::StackOne::Operations::QueryParamLearningObjectType), updated_after: T.nilable(::String)).void } def initialize(learning_object_type: nil, updated_after: nil) @learning_object_type = learning_object_type @updated_after = updated_after end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stackone_client-0.4.1 | lib/stack_one/models/operations/lms_list_completions_queryparam_filter.rb |