Class: Twilio::REST::Events::V1::SubscriptionContext::SubscribedEventInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Events::V1::SubscriptionContext::SubscribedEventInstance
- Defined in:
- lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique SID identifier of the Account.
-
#context ⇒ SubscribedEventContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#delete ⇒ Boolean
Delete the SubscribedEventInstance.
-
#fetch ⇒ SubscribedEventInstance
Fetch the SubscribedEventInstance.
-
#initialize(version, payload, subscription_sid: nil, type: nil) ⇒ SubscribedEventInstance
constructor
Initialize the SubscribedEventInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#schema_version ⇒ String
The schema version that the Subscription should use.
-
#subscription_sid ⇒ String
The unique SID identifier of the Subscription.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#type ⇒ String
Type of event being subscribed to.
-
#update(schema_version: :unset) ⇒ SubscribedEventInstance
Update the SubscribedEventInstance.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, subscription_sid: nil, type: nil) ⇒ SubscribedEventInstance
Initialize the SubscribedEventInstance
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 269 def initialize(version, payload , subscription_sid: nil, type: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'type' => payload['type'], 'schema_version' => payload['schema_version'] == nil ? payload['schema_version'] : payload['schema_version'].to_i, 'subscription_sid' => payload['subscription_sid'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'subscription_sid' => subscription_sid || @properties['subscription_sid'] ,'type' => type || @properties['type'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique SID identifier of the Account.
299 300 301 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 299 def account_sid @properties['account_sid'] end |
#context ⇒ SubscribedEventContext
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/events/v1/subscription/subscribed_event.rb', line 290 def context unless @instance_context @instance_context = SubscribedEventContext.new(@version , @params['subscription_sid'], @params['type']) end @instance_context end |
#delete ⇒ Boolean
Delete the SubscribedEventInstance
330 331 332 333 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 330 def delete context.delete end |
#fetch ⇒ SubscribedEventInstance
Fetch the SubscribedEventInstance
338 339 340 341 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 338 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
365 366 367 368 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 365 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Events.V1.SubscribedEventInstance #{values}>" end |
#schema_version ⇒ String
Returns The schema version that the Subscription should use.
311 312 313 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 311 def schema_version @properties['schema_version'] end |
#subscription_sid ⇒ String
Returns The unique SID identifier of the Subscription.
317 318 319 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 317 def subscription_sid @properties['subscription_sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
358 359 360 361 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 358 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Events.V1.SubscribedEventInstance #{values}>" end |
#type ⇒ String
Returns Type of event being subscribed to.
305 306 307 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 305 def type @properties['type'] end |
#update(schema_version: :unset) ⇒ SubscribedEventInstance
Update the SubscribedEventInstance
347 348 349 350 351 352 353 354 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 347 def update( schema_version: :unset ) context.update( schema_version: schema_version, ) end |
#url ⇒ String
Returns The URL of this resource.
323 324 325 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 323 def url @properties['url'] end |