Class: LiveKit::SIPGrant
- Inherits:
-
Object
- Object
- LiveKit::SIPGrant
- Defined in:
- lib/livekit/grants.rb
Instance Attribute Summary collapse
-
#admin ⇒ Object
Returns the value of attribute admin.
-
#call ⇒ Object
Returns the value of attribute call.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(admin: nil, call: nil) ⇒ SIPGrant
constructor
A new instance of SIPGrant.
- #to_hash ⇒ Object
Constructor Details
#initialize(admin: nil, call: nil) ⇒ SIPGrant
Returns a new instance of SIPGrant.
141 142 143 144 145 146 147 148 149 |
# File 'lib/livekit/grants.rb', line 141 def initialize( # true if can access SIP features admin: nil, # true if can make outgoing call call: nil ) @admin = admin @call = call end |
Instance Attribute Details
#admin ⇒ Object
Returns the value of attribute admin.
139 140 141 |
# File 'lib/livekit/grants.rb', line 139 def admin @admin end |
#call ⇒ Object
Returns the value of attribute call.
139 140 141 |
# File 'lib/livekit/grants.rb', line 139 def call @call end |
Class Method Details
Instance Method Details
#to_hash ⇒ Object
162 163 164 165 166 167 168 169 170 171 |
# File 'lib/livekit/grants.rb', line 162 def to_hash hash = {} instance_variables.each { |var| val = instance_variable_get(var) if val != nil hash[var.to_s.delete("@")] = val end } hash end |