Sha256: 47ede23f0318e19882f5b7a0aec43ab31d2a5b4fe8ae349ebf295b4c469adb2e
Contents?: true
Size: 946 Bytes
Versions: 4
Compression:
Stored size: 946 Bytes
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(::String), { '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(::String), 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
4 entries across 4 versions & 1 rubygems