Class: StackOne::Models::Operations::LmsListAssignmentsRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::LmsListAssignmentsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/lms_list_assignments_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, remote_user_id: nil, updated_after: nil, user_id: nil) ⇒ LmsListAssignmentsRequest
constructor
A new instance of LmsListAssignmentsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, remote_user_id: nil, updated_after: nil, user_id: nil) ⇒ LmsListAssignmentsRequest
Returns a new instance of LmsListAssignmentsRequest.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/stack_one/models/operations/lms_list_assignments_request.rb', line 45 def initialize(x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, remote_user_id: nil, updated_after: nil, user_id: nil) @x_account_id = x_account_id @prefer = prefer @fields_ = fields_ @filter = filter @next_ = next_ @page = page @page_size = page_size @proxy = proxy @raw = raw @remote_user_id = remote_user_id @updated_after = updated_after @user_id = user_id end |
Instance Method Details
#==(other) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/stack_one/models/operations/lms_list_assignments_request.rb', line 61 def ==(other) return false unless other.is_a? self.class return false unless @x_account_id == other.x_account_id return false unless @prefer == other.prefer return false unless @fields_ == other.fields_ return false unless @filter == other.filter return false unless @next_ == other.next_ return false unless @page == other.page return false unless @page_size == other.page_size return false unless @proxy == other.proxy return false unless @raw == other.raw return false unless @remote_user_id == other.remote_user_id return false unless @updated_after == other.updated_after return false unless @user_id == other.user_id true end |