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.
158 159 160 161 162 163 164 165 166 |
# File 'lib/livekit/grants.rb', line 158 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.
156 157 158 |
# File 'lib/livekit/grants.rb', line 156 def admin @admin end |
#call ⇒ Object
Returns the value of attribute call.
156 157 158 |
# File 'lib/livekit/grants.rb', line 156 def call @call end |
Class Method Details
Instance Method Details
#to_hash ⇒ Object
179 180 181 182 183 184 185 186 187 188 |
# File 'lib/livekit/grants.rb', line 179 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 |