Class: FastpixClient::Models::Operations::GetLiveStreamViewerCountByIdRequest
- Inherits:
-
Object
- Object
- FastpixClient::Models::Operations::GetLiveStreamViewerCountByIdRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_client/models/operations/get_live_stream_viewer_count_by_id_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(stream_id:) ⇒ GetLiveStreamViewerCountByIdRequest
constructor
A new instance of GetLiveStreamViewerCountByIdRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(stream_id:) ⇒ GetLiveStreamViewerCountByIdRequest
Returns a new instance of GetLiveStreamViewerCountByIdRequest.
19 20 21 |
# File 'lib/fastpix_client/models/operations/get_live_stream_viewer_count_by_id_request.rb', line 19 def initialize(stream_id:) @stream_id = stream_id end |
Instance Method Details
#==(other) ⇒ Object
24 25 26 27 28 |
# File 'lib/fastpix_client/models/operations/get_live_stream_viewer_count_by_id_request.rb', line 24 def ==(other) return false unless other.is_a? self.class return false unless @stream_id == other.stream_id true end |