Class: Twilio::REST::Bulkexports::V1::ExportConfigurationContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Bulkexports::V1::ExportConfigurationContext
- Defined in:
- lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb
Instance Method Summary collapse
-
#fetch ⇒ ExportConfigurationInstance
Fetch the ExportConfigurationInstance.
-
#initialize(version, resource_type) ⇒ ExportConfigurationContext
constructor
Initialize the ExportConfigurationContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(enabled: :unset, webhook_url: :unset, webhook_method: :unset) ⇒ ExportConfigurationInstance
Update the ExportConfigurationInstance.
Constructor Details
#initialize(version, resource_type) ⇒ ExportConfigurationContext
Initialize the ExportConfigurationContext
49 50 51 52 53 54 55 56 57 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 49 def initialize(version, resource_type) super(version) # Path Solution @solution = { resource_type: resource_type, } @uri = "/Exports/#{@solution[:resource_type]}/Configuration" end |
Instance Method Details
#fetch ⇒ ExportConfigurationInstance
Fetch the ExportConfigurationInstance
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 61 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) ExportConfigurationInstance.new( @version, payload, resource_type: @solution[:resource_type], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
119 120 121 122 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 119 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.ExportConfigurationContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
112 113 114 115 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 112 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.ExportConfigurationContext #{context}>" end |
#update(enabled: :unset, webhook_url: :unset, webhook_method: :unset) ⇒ ExportConfigurationInstance
Update the ExportConfigurationInstance
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 83 def update( enabled: :unset, webhook_url: :unset, webhook_method: :unset ) data = Twilio::Values.of({ 'Enabled' => enabled, 'WebhookUrl' => webhook_url, 'WebhookMethod' => webhook_method, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) ExportConfigurationInstance.new( @version, payload, resource_type: @solution[:resource_type], ) end |