Sha256: 04befa35029d5a6774c1d682c9fdb38042a0fec35b375394c6bf674ad56d6355

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

# typed: true
# frozen_string_literal: true


module StackOne
  module Operations
  
    # LMS Assignment Filter
    class LmsListUserAssignmentsQueryParamFilter < ::StackOne::Utils::FieldAugmented
      extend T::Sig

      # Filter to select assignment by completed status
      field :completed, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'completed' } }
      # Filter to select assignment by learning object type.
      field :learning_object_type, T.nilable(::StackOne::Operations::LmsListUserAssignmentsQueryParamLearningObjectType), { '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(completed: T.nilable(T::Boolean), learning_object_type: T.nilable(::StackOne::Operations::LmsListUserAssignmentsQueryParamLearningObjectType), updated_after: T.nilable(::String)).void }
      def initialize(completed: nil, learning_object_type: nil, updated_after: nil)
        @completed = completed
        @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_user_assignments_queryparam_filter.rb