Class: Clerk::Models::Operations::GetApiKeysResponseBody
- Inherits:
-
Object
- Object
- Clerk::Models::Operations::GetApiKeysResponseBody
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/clerk/models/operations/getapikeys_responsebody.rb
Overview
200 OK
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(data:, total_count:) ⇒ GetApiKeysResponseBody
constructor
A new instance of GetApiKeysResponseBody.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(data:, total_count:) ⇒ GetApiKeysResponseBody
Returns a new instance of GetApiKeysResponseBody.
21 22 23 24 |
# File 'lib/clerk/models/operations/getapikeys_responsebody.rb', line 21 def initialize(data:, total_count:) @data = data @total_count = total_count end |
Instance Method Details
#==(other) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/clerk/models/operations/getapikeys_responsebody.rb', line 27 def ==(other) return false unless other.is_a? self.class return false unless @data == other.data return false unless @total_count == other.total_count true end |