Class: Twilio::REST::FlexApi::V1::InsightsUserRolesInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::FlexApi::V1::InsightsUserRolesInstance
- Defined in:
- lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb
Instance Method Summary collapse
-
#context ⇒ InsightsUserRolesContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#fetch(authorization: :unset) ⇒ InsightsUserRolesInstance
Fetch the InsightsUserRolesInstance.
-
#initialize(version, payload) ⇒ InsightsUserRolesInstance
constructor
Initialize the InsightsUserRolesInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#roles ⇒ Array<String>
Flex Insights roles for the user.
-
#to_s ⇒ Object
Provide a user friendly representation.
- #url ⇒ String
Constructor Details
#initialize(version, payload) ⇒ InsightsUserRolesInstance
Initialize the InsightsUserRolesInstance
269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 269 def initialize(version, payload ) super(version) # Marshaled Properties @properties = { 'roles' => payload['roles'], 'url' => payload['url'], } # Context @instance_context = nil @params = { } end |
Instance Method Details
#context ⇒ InsightsUserRolesContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
288 289 290 291 292 293 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 288 def context unless @instance_context @instance_context = InsightsUserRolesContext.new(@version ) end @instance_context end |
#fetch(authorization: :unset) ⇒ InsightsUserRolesInstance
Fetch the InsightsUserRolesInstance
311 312 313 314 315 316 317 318 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 311 def fetch( authorization: :unset ) context.fetch( authorization: , ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
329 330 331 332 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 329 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.FlexApi.V1.InsightsUserRolesInstance #{values}>" end |
#roles ⇒ Array<String>
Returns Flex Insights roles for the user.
297 298 299 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 297 def roles @properties['roles'] end |
#to_s ⇒ Object
Provide a user friendly representation
322 323 324 325 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 322 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.FlexApi.V1.InsightsUserRolesInstance #{values}>" end |
#url ⇒ String
303 304 305 |
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_user_roles.rb', line 303 def url @properties['url'] end |