Class: FastpixClient::Models::Operations::UpdateSpecificSimulcastOfStreamRequest
- Inherits:
-
Object
- Object
- FastpixClient::Models::Operations::UpdateSpecificSimulcastOfStreamRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_client/models/operations/update_specific_simulcast_of_stream_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(stream_id:, simulcast_id:, body:) ⇒ UpdateSpecificSimulcastOfStreamRequest
constructor
A new instance of UpdateSpecificSimulcastOfStreamRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(stream_id:, simulcast_id:, body:) ⇒ UpdateSpecificSimulcastOfStreamRequest
Returns a new instance of UpdateSpecificSimulcastOfStreamRequest.
23 24 25 26 27 |
# File 'lib/fastpix_client/models/operations/update_specific_simulcast_of_stream_request.rb', line 23 def initialize(stream_id:, simulcast_id:, body:) @stream_id = stream_id @simulcast_id = simulcast_id @body = body end |
Instance Method Details
#==(other) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/fastpix_client/models/operations/update_specific_simulcast_of_stream_request.rb', line 30 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 return false unless @body == other.body true end |