Class: Clerk::Models::Operations::ListSAMLConnectionsRequest

Inherits:
Object
  • Object
show all
Includes:
Crystalline::MetadataFields
Defined in:
lib/clerk/models/operations/listsamlconnections_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(query: nil, order_by: nil, organization_id: nil, limit: 10, offset: 0) ⇒ ListSAMLConnectionsRequest

Returns a new instance of ListSAMLConnectionsRequest.



38
39
40
41
42
43
44
# File 'lib/clerk/models/operations/listsamlconnections_request.rb', line 38

def initialize(query: nil, order_by: nil, organization_id: nil, limit: 10, offset: 0)
  @query = query
  @order_by = order_by
  @organization_id = organization_id
  @limit = limit
  @offset = offset
end

Instance Method Details

#==(other) ⇒ Object



47
48
49
50
51
52
53
54
55
# File 'lib/clerk/models/operations/listsamlconnections_request.rb', line 47

def ==(other)
  return false unless other.is_a? self.class
  return false unless @query == other.query
  return false unless @order_by == other.order_by
  return false unless @organization_id == other.organization_id
  return false unless @limit == other.limit
  return false unless @offset == other.offset
  true
end