Class: FastpixApiSDK::Models::Errors::SimulcastUnavailableErrorError
- Inherits:
-
Object
- Object
- FastpixApiSDK::Models::Errors::SimulcastUnavailableErrorError
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_api_sdk/models/errors/simulcastunavailable_error_error.rb
Overview
Returns the problem that has occured.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(code: nil, message: nil, description: nil) ⇒ SimulcastUnavailableErrorError
constructor
A new instance of SimulcastUnavailableErrorError.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(code: nil, message: nil, description: nil) ⇒ SimulcastUnavailableErrorError
Returns a new instance of SimulcastUnavailableErrorError.
28 29 30 31 32 |
# File 'lib/fastpix_api_sdk/models/errors/simulcastunavailable_error_error.rb', line 28 def initialize(code: nil, message: nil, description: nil) @code = code = @description = description end |
Instance Method Details
#==(other) ⇒ Object
35 36 37 38 39 40 41 |
# File 'lib/fastpix_api_sdk/models/errors/simulcastunavailable_error_error.rb', line 35 def ==(other) return false unless other.is_a? self.class return false unless @code == other.code return false unless == other. return false unless @description == other.description true end |