Class: Twilio::REST::Api::V2010::AccountContext::ConnectAppInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::ConnectAppInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/connect_app.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#authorize_redirect_url ⇒ String
The URL to redirect the user to after authorization.
-
#company_name ⇒ String
The company name set for the Connect App.
-
#context ⇒ ConnectAppContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#deauthorize_callback_method ⇒ String
The HTTP method we use to call deauthorize_callback_url.
-
#deauthorize_callback_url ⇒ String
The URL we call to de-authorize the Connect App.
-
#delete ⇒ Boolean
Deletes the ConnectAppInstance.
-
#description ⇒ String
The description of the Connect App.
-
#fetch ⇒ ConnectAppInstance
Fetch a ConnectAppInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#homepage_url ⇒ String
The URL users can obtain more information.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ ConnectAppInstance
constructor
Initialize the ConnectAppInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#permissions ⇒ connect_app.Permission
The set of permissions that your ConnectApp requests.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(authorize_redirect_url: :unset, company_name: :unset, deauthorize_callback_method: :unset, deauthorize_callback_url: :unset, description: :unset, friendly_name: :unset, homepage_url: :unset, permissions: :unset) ⇒ ConnectAppInstance
Update the ConnectAppInstance.
-
#uri ⇒ String
The URI of the resource, relative to ‘api.twilio.com`.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ ConnectAppInstance
Initialize the ConnectAppInstance
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 263 def initialize(version, payload, account_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'authorize_redirect_url' => payload['authorize_redirect_url'], 'company_name' => payload['company_name'], 'deauthorize_callback_method' => payload['deauthorize_callback_method'], 'deauthorize_callback_url' => payload['deauthorize_callback_url'], 'description' => payload['description'], 'friendly_name' => payload['friendly_name'], 'homepage_url' => payload['homepage_url'], 'permissions' => payload['permissions'], 'sid' => payload['sid'], 'uri' => payload['uri'], } # Context @instance_context = nil @params = {'account_sid' => account_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
299 300 301 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 299 def account_sid @properties['account_sid'] end |
#authorize_redirect_url ⇒ String
Returns The URL to redirect the user to after authorization.
305 306 307 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 305 def @properties['authorize_redirect_url'] end |
#company_name ⇒ String
Returns The company name set for the Connect App.
311 312 313 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 311 def company_name @properties['company_name'] end |
#context ⇒ ConnectAppContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
290 291 292 293 294 295 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 290 def context unless @instance_context @instance_context = ConnectAppContext.new(@version, @params['account_sid'], @params['sid'], ) end @instance_context end |
#deauthorize_callback_method ⇒ String
Returns The HTTP method we use to call deauthorize_callback_url.
317 318 319 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 317 def @properties['deauthorize_callback_method'] end |
#deauthorize_callback_url ⇒ String
Returns The URL we call to de-authorize the Connect App.
323 324 325 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 323 def @properties['deauthorize_callback_url'] end |
#delete ⇒ Boolean
Deletes the ConnectAppInstance
404 405 406 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 404 def delete context.delete end |
#description ⇒ String
Returns The description of the Connect App.
329 330 331 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 329 def description @properties['description'] end |
#fetch ⇒ ConnectAppInstance
Fetch a ConnectAppInstance
366 367 368 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 366 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
335 336 337 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 335 def friendly_name @properties['friendly_name'] end |
#homepage_url ⇒ String
Returns The URL users can obtain more information.
341 342 343 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 341 def homepage_url @properties['homepage_url'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
417 418 419 420 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 417 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.ConnectAppInstance #{values}>" end |
#permissions ⇒ connect_app.Permission
Returns The set of permissions that your ConnectApp requests.
347 348 349 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 347 def @properties['permissions'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
353 354 355 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 353 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
410 411 412 413 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 410 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.ConnectAppInstance #{values}>" end |
#update(authorize_redirect_url: :unset, company_name: :unset, deauthorize_callback_method: :unset, deauthorize_callback_url: :unset, description: :unset, friendly_name: :unset, homepage_url: :unset, permissions: :unset) ⇒ ConnectAppInstance
Update the ConnectAppInstance
388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 388 def update(authorize_redirect_url: :unset, company_name: :unset, deauthorize_callback_method: :unset, deauthorize_callback_url: :unset, description: :unset, friendly_name: :unset, homepage_url: :unset, permissions: :unset) context.update( authorize_redirect_url: , company_name: company_name, deauthorize_callback_method: , deauthorize_callback_url: , description: description, friendly_name: friendly_name, homepage_url: homepage_url, permissions: , ) end |
#uri ⇒ String
Returns The URI of the resource, relative to ‘api.twilio.com`.
359 360 361 |
# File 'lib/twilio-ruby/rest/api/v2010/account/connect_app.rb', line 359 def uri @properties['uri'] end |