Class: Kombo::Models::Shared::GetAtsRolesPositiveResponseResult
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::GetAtsRolesPositiveResponseResult
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/getatsrolespositiveresponse_result.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id:, changed_at:, remote_id: nil, remote_label: nil, scope: nil, unified_type: nil, remote_deleted_at: nil) ⇒ GetAtsRolesPositiveResponseResult
constructor
A new instance of GetAtsRolesPositiveResponseResult.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(id:, changed_at:, remote_id: nil, remote_label: nil, scope: nil, unified_type: nil, remote_deleted_at: nil) ⇒ GetAtsRolesPositiveResponseResult
Returns a new instance of GetAtsRolesPositiveResponseResult.
33 34 35 36 37 38 39 40 41 |
# File 'lib/kombo/models/shared/getatsrolespositiveresponse_result.rb', line 33 def initialize(id:, changed_at:, remote_id: nil, remote_label: nil, scope: nil, unified_type: nil, remote_deleted_at: nil) @id = id @changed_at = changed_at @remote_id = remote_id @remote_label = remote_label @scope = scope @unified_type = unified_type @remote_deleted_at = remote_deleted_at end |
Instance Method Details
#==(other) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/kombo/models/shared/getatsrolespositiveresponse_result.rb', line 44 def ==(other) return false unless other.is_a? self.class return false unless @id == other.id return false unless @changed_at == other.changed_at return false unless @remote_id == other.remote_id return false unless @remote_label == other.remote_label return false unless @scope == other.scope return false unless @unified_type == other.unified_type return false unless @remote_deleted_at == other.remote_deleted_at true end |