Class: Twilio::REST::Bulkexports::V1::ExportConfigurationInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Bulkexports::V1::ExportConfigurationInstance
- Defined in:
- lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb
Instance Method Summary collapse
-
#context ⇒ ExportConfigurationContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#enabled ⇒ Boolean
If true, Twilio will automatically generate every day’s file when the day is over.
-
#fetch ⇒ ExportConfigurationInstance
Fetch the ExportConfigurationInstance.
-
#initialize(version, payload, resource_type: nil) ⇒ ExportConfigurationInstance
constructor
Initialize the ExportConfigurationInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#resource_type ⇒ String
The type of communication – Messages, Calls, Conferences, and Participants.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(enabled: :unset, webhook_url: :unset, webhook_method: :unset) ⇒ ExportConfigurationInstance
Update the ExportConfigurationInstance.
-
#url ⇒ String
The URL of this resource.
-
#webhook_method ⇒ String
Sets whether Twilio should call a webhook URL when the automatic generation is complete, using GET or POST.
-
#webhook_url ⇒ String
Stores the URL destination for the method specified in webhook_method.
Constructor Details
#initialize(version, payload, resource_type: nil) ⇒ ExportConfigurationInstance
Initialize the ExportConfigurationInstance
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 163 def initialize(version, payload , resource_type: nil) super(version) # Marshaled Properties @properties = { 'enabled' => payload['enabled'], 'webhook_url' => payload['webhook_url'], 'webhook_method' => payload['webhook_method'], 'resource_type' => payload['resource_type'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'resource_type' => resource_type || @properties['resource_type'] , } end |
Instance Method Details
#context ⇒ ExportConfigurationContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
184 185 186 187 188 189 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 184 def context unless @instance_context @instance_context = ExportConfigurationContext.new(@version , @params['resource_type']) end @instance_context end |
#enabled ⇒ Boolean
Returns If true, Twilio will automatically generate every day’s file when the day is over.
193 194 195 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 193 def enabled @properties['enabled'] end |
#fetch ⇒ ExportConfigurationInstance
Fetch the ExportConfigurationInstance
224 225 226 227 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 224 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
257 258 259 260 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 257 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Bulkexports.V1.ExportConfigurationInstance #{values}>" end |
#resource_type ⇒ String
Returns The type of communication – Messages, Calls, Conferences, and Participants.
211 212 213 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 211 def resource_type @properties['resource_type'] end |
#to_s ⇒ Object
Provide a user friendly representation
250 251 252 253 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 250 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Bulkexports.V1.ExportConfigurationInstance #{values}>" end |
#update(enabled: :unset, webhook_url: :unset, webhook_method: :unset) ⇒ ExportConfigurationInstance
Update the ExportConfigurationInstance
235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 235 def update( enabled: :unset, webhook_url: :unset, webhook_method: :unset ) context.update( enabled: enabled, webhook_url: webhook_url, webhook_method: webhook_method, ) end |
#url ⇒ String
Returns The URL of this resource.
217 218 219 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 217 def url @properties['url'] end |
#webhook_method ⇒ String
Returns Sets whether Twilio should call a webhook URL when the automatic generation is complete, using GET or POST. The actual destination is set in the webhook_url.
205 206 207 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 205 def webhook_method @properties['webhook_method'] end |
#webhook_url ⇒ String
Returns Stores the URL destination for the method specified in webhook_method.
199 200 201 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 199 def webhook_url @properties['webhook_url'] end |