Class: WebRTC::RTCRtpHeaderExtensionParameters
- Inherits:
-
Object
- Object
- WebRTC::RTCRtpHeaderExtensionParameters
- Defined in:
- lib/webrtc/parity_types.rb
Instance Attribute Summary collapse
-
#encrypted ⇒ Object
Returns the value of attribute encrypted.
-
#id ⇒ Object
Returns the value of attribute id.
-
#uri ⇒ Object
Returns the value of attribute uri.
Instance Method Summary collapse
-
#initialize(uri:, id:, encrypted: false) ⇒ RTCRtpHeaderExtensionParameters
constructor
A new instance of RTCRtpHeaderExtensionParameters.
Constructor Details
#initialize(uri:, id:, encrypted: false) ⇒ RTCRtpHeaderExtensionParameters
Returns a new instance of RTCRtpHeaderExtensionParameters.
306 307 308 309 310 |
# File 'lib/webrtc/parity_types.rb', line 306 def initialize(uri:, id:, encrypted: false) @uri = uri @id = id @encrypted = encrypted end |
Instance Attribute Details
#encrypted ⇒ Object
Returns the value of attribute encrypted.
304 305 306 |
# File 'lib/webrtc/parity_types.rb', line 304 def encrypted @encrypted end |
#id ⇒ Object
Returns the value of attribute id.
304 305 306 |
# File 'lib/webrtc/parity_types.rb', line 304 def id @id end |
#uri ⇒ Object
Returns the value of attribute uri.
304 305 306 |
# File 'lib/webrtc/parity_types.rb', line 304 def uri @uri end |