Class: StackOne::Models::Operations::AtsDownloadApplicationDocumentResponse
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::AtsDownloadApplicationDocumentResponse
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/ats_download_application_document_response.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(content_type:, headers:, status_code:, raw_response:, body: nil, download_api_model: nil, download_api_model1: nil) ⇒ AtsDownloadApplicationDocumentResponse
constructor
A new instance of AtsDownloadApplicationDocumentResponse.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(content_type:, headers:, status_code:, raw_response:, body: nil, download_api_model: nil, download_api_model1: nil) ⇒ AtsDownloadApplicationDocumentResponse
Returns a new instance of AtsDownloadApplicationDocumentResponse.
31 32 33 34 35 36 37 38 39 |
# File 'lib/stack_one/models/operations/ats_download_application_document_response.rb', line 31 def initialize(content_type:, headers:, status_code:, raw_response:, body: nil, download_api_model: nil, download_api_model1: nil) @content_type = content_type @headers = headers @status_code = status_code @raw_response = raw_response @body = body @download_api_model = download_api_model @download_api_model1 = download_api_model1 end |
Instance Method Details
#==(other) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/stack_one/models/operations/ats_download_application_document_response.rb', line 42 def ==(other) return false unless other.is_a? self.class return false unless @content_type == other.content_type return false unless @headers == other.headers return false unless @status_code == other.status_code return false unless @raw_response == other.raw_response return false unless @body == other.body return false unless @download_api_model == other.download_api_model return false unless @download_api_model1 == other.download_api_model1 true end |