Class: FastpixApiSDK::Models::Operations::DeleteSimulcastOfStreamRequest
- Inherits:
-
Object
- Object
- FastpixApiSDK::Models::Operations::DeleteSimulcastOfStreamRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_api_sdk/models/operations/delete_simulcast_of_stream_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(stream_id:, simulcast_id:) ⇒ DeleteSimulcastOfStreamRequest
constructor
A new instance of DeleteSimulcastOfStreamRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(stream_id:, simulcast_id:) ⇒ DeleteSimulcastOfStreamRequest
Returns a new instance of DeleteSimulcastOfStreamRequest.
22 23 24 25 |
# File 'lib/fastpix_api_sdk/models/operations/delete_simulcast_of_stream_request.rb', line 22 def initialize(stream_id:, simulcast_id:) @stream_id = stream_id @simulcast_id = simulcast_id end |
Instance Method Details
#==(other) ⇒ Object
28 29 30 31 32 33 |
# File 'lib/fastpix_api_sdk/models/operations/delete_simulcast_of_stream_request.rb', line 28 def ==(other) return false unless other.is_a? self.class return false unless @stream_id == other.stream_id return false unless @simulcast_id == other.simulcast_id true end |