Class: Kombo::Models::Shared::GetAtsApplicationsApplicationIdAttachmentsPositiveResponseResult
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::GetAtsApplicationsApplicationIdAttachmentsPositiveResponseResult
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/getatsapplicationsapplicationidattachmentspositiveresponse_result.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(type:, id:, remote_id:, data_url:, file_name:, content_type:, remote_created_at: nil, remote_updated_at: nil) ⇒ GetAtsApplicationsApplicationIdAttachmentsPositiveResponseResult
constructor
A new instance of GetAtsApplicationsApplicationIdAttachmentsPositiveResponseResult.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(type:, id:, remote_id:, data_url:, file_name:, content_type:, remote_created_at: nil, remote_updated_at: nil) ⇒ GetAtsApplicationsApplicationIdAttachmentsPositiveResponseResult
Returns a new instance of GetAtsApplicationsApplicationIdAttachmentsPositiveResponseResult.
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/kombo/models/shared/getatsapplicationsapplicationidattachmentspositiveresponse_result.rb', line 35 def initialize(type:, id:, remote_id:, data_url:, file_name:, content_type:, remote_created_at: nil, remote_updated_at: nil) @type = type @id = id @remote_id = remote_id @data_url = data_url @file_name = file_name @content_type = content_type @remote_created_at = remote_created_at @remote_updated_at = remote_updated_at end |
Instance Method Details
#==(other) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/kombo/models/shared/getatsapplicationsapplicationidattachmentspositiveresponse_result.rb', line 47 def ==(other) return false unless other.is_a? self.class return false unless @type == other.type return false unless @id == other.id return false unless @remote_id == other.remote_id return false unless @data_url == other.data_url return false unless @file_name == other.file_name return false unless @content_type == other.content_type return false unless @remote_created_at == other.remote_created_at return false unless @remote_updated_at == other.remote_updated_at true end |