Class: Kombo::Models::Shared::PostAtsApplicationsApplicationIdAttachmentsRequestBodyOracle

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/kombo/models/shared/postatsapplicationsapplicationidattachmentsrequestbody_oracle.rb

Overview

Oracle specific remote fields for the attachment.

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(override_document_category: nil, multi_post_to_all_current_applications: nil) ⇒ PostAtsApplicationsApplicationIdAttachmentsRequestBodyOracle

Returns a new instance of PostAtsApplicationsApplicationIdAttachmentsRequestBodyOracle.



21
22
23
24
# File 'lib/kombo/models/shared/postatsapplicationsapplicationidattachmentsrequestbody_oracle.rb', line 21

def initialize(override_document_category: nil, multi_post_to_all_current_applications: nil)
  @override_document_category = override_document_category
  @multi_post_to_all_current_applications = multi_post_to_all_current_applications
end

Instance Method Details

#==(other) ⇒ Object



27
28
29
30
31
32
# File 'lib/kombo/models/shared/postatsapplicationsapplicationidattachmentsrequestbody_oracle.rb', line 27

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