Class: StackOne::Models::Operations::LmsListUserAssignmentsRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/stack_one/models/operations/lms_list_user_assignments_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(id:, 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) ⇒ LmsListUserAssignmentsRequest

Returns a new instance of LmsListUserAssignmentsRequest.



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/stack_one/models/operations/lms_list_user_assignments_request.rb', line 47

def initialize(id:, 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)
  @id = 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



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/stack_one/models/operations/lms_list_user_assignments_request.rb', line 64

def ==(other)
  return false unless other.is_a? self.class
  return false unless @id == other.id
  return false unless @x_account_id == other.
  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