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