Class: WebRTC::RTCRtcpFeedback
- Inherits:
-
Object
- Object
- WebRTC::RTCRtcpFeedback
- Defined in:
- lib/webrtc/parity_types.rb
Instance Attribute Summary collapse
-
#parameter ⇒ Object
readonly
Returns the value of attribute parameter.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type:, parameter: nil) ⇒ RTCRtcpFeedback
constructor
A new instance of RTCRtcpFeedback.
Constructor Details
#initialize(type:, parameter: nil) ⇒ RTCRtcpFeedback
Returns a new instance of RTCRtcpFeedback.
252 253 254 255 |
# File 'lib/webrtc/parity_types.rb', line 252 def initialize(type:, parameter: nil) @type = type @parameter = parameter end |
Instance Attribute Details
#parameter ⇒ Object (readonly)
Returns the value of attribute parameter.
250 251 252 |
# File 'lib/webrtc/parity_types.rb', line 250 def parameter @parameter end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
250 251 252 |
# File 'lib/webrtc/parity_types.rb', line 250 def type @type end |