Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::BundleInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Numbers::V2::RegulatoryComplianceList::BundleInstance
- Defined in:
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#context ⇒ BundleContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The ISO 8601 date and time in GMT when the resource was last updated.
-
#delete ⇒ Boolean
Delete the BundleInstance.
-
#email ⇒ String
The email address.
-
#evaluations ⇒ evaluations
Access the evaluations.
-
#fetch ⇒ BundleInstance
Fetch the BundleInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, sid: nil) ⇒ BundleInstance
constructor
Initialize the BundleInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#item_assignments ⇒ item_assignments
Access the item_assignments.
-
#links ⇒ String
The URLs of the Assigned Items of the Bundle resource.
-
#regulation_sid ⇒ String
The unique string of a regulation.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#status ⇒ bundle.Status
The verification status of the Bundle resource.
-
#status_callback ⇒ String
The URL we call to inform your application of status changes.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset) ⇒ BundleInstance
Update the BundleInstance.
-
#url ⇒ String
The absolute URL of the Bundle resource.
-
#valid_until ⇒ Time
The ISO 8601 date and time in GMT when the resource will be valid until.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ BundleInstance
Initialize the BundleInstance
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 340 def initialize(version, payload, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'regulation_sid' => payload['regulation_sid'], 'friendly_name' => payload['friendly_name'], 'status' => payload['status'], 'valid_until' => Twilio.deserialize_iso8601_datetime(payload['valid_until']), 'email' => payload['email'], 'status_callback' => payload['status_callback'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = {'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
383 384 385 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 383 def account_sid @properties['account_sid'] end |
#context ⇒ BundleContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
368 369 370 371 372 373 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 368 def context unless @instance_context @instance_context = BundleContext.new(@version, @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was created.
425 426 427 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 425 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was last updated.
431 432 433 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 431 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the BundleInstance
476 477 478 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 476 def delete context.delete end |
#email ⇒ String
Returns The email address.
413 414 415 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 413 def email @properties['email'] end |
#evaluations ⇒ evaluations
Access the evaluations
483 484 485 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 483 def evaluations context.evaluations end |
#fetch ⇒ BundleInstance
Fetch the BundleInstance
450 451 452 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 450 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
395 396 397 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 395 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
503 504 505 506 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 503 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Numbers.V2.BundleInstance #{values}>" end |
#item_assignments ⇒ item_assignments
Access the item_assignments
490 491 492 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 490 def item_assignments context.item_assignments end |
#links ⇒ String
Returns The URLs of the Assigned Items of the Bundle resource.
443 444 445 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 443 def links @properties['links'] end |
#regulation_sid ⇒ String
Returns The unique string of a regulation.
389 390 391 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 389 def regulation_sid @properties['regulation_sid'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
377 378 379 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 377 def sid @properties['sid'] end |
#status ⇒ bundle.Status
Returns The verification status of the Bundle resource.
401 402 403 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 401 def status @properties['status'] end |
#status_callback ⇒ String
Returns The URL we call to inform your application of status changes.
419 420 421 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 419 def status_callback @properties['status_callback'] end |
#to_s ⇒ Object
Provide a user friendly representation
496 497 498 499 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 496 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Numbers.V2.BundleInstance #{values}>" end |
#update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset) ⇒ BundleInstance
Update the BundleInstance
464 465 466 467 468 469 470 471 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 464 def update(status: :unset, status_callback: :unset, friendly_name: :unset, email: :unset) context.update( status: status, status_callback: status_callback, friendly_name: friendly_name, email: email, ) end |
#url ⇒ String
Returns The absolute URL of the Bundle resource.
437 438 439 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 437 def url @properties['url'] end |
#valid_until ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource will be valid until.
407 408 409 |
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb', line 407 def valid_until @properties['valid_until'] end |