Class: Clerk::Models::Operations::GetEnterpriseConnectionRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(enterprise_connection_id:) ⇒ GetEnterpriseConnectionRequest

Returns a new instance of GetEnterpriseConnectionRequest.



19
20
21
# File 'lib/clerk/models/operations/getenterpriseconnection_request.rb', line 19

def initialize(enterprise_connection_id:)
  @enterprise_connection_id = enterprise_connection_id
end

Instance Method Details

#==(other) ⇒ Object



24
25
26
27
28
# File 'lib/clerk/models/operations/getenterpriseconnection_request.rb', line 24

def ==(other)
  return false unless other.is_a? self.class
  return false unless @enterprise_connection_id == other.enterprise_connection_id
  true
end