Sha256: a565be0c9c0cc079b1b1c412db9aac1e9197f20e6f81964bf75cd88963ee6d36
Contents?: true
Size: 950 Bytes
Versions: 5
Compression:
Stored size: 950 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 LmsListUserCompletionsQueryParamFilter < ::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
5 entries across 5 versions & 1 rubygems