Class: Twilio::REST::Preview::BulkExports::ExportConfigurationInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, resource_type: nil) ⇒ ExportConfigurationInstance

Initialize the ExportConfigurationInstance



138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 138

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

#contextExportConfigurationContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context



159
160
161
162
163
164
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 159

def context
  unless @instance_context
    @instance_context = ExportConfigurationContext.new(@version, @params['resource_type'], )
  end
  @instance_context
end

#enabledBoolean



168
169
170
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 168

def enabled
  @properties['enabled']
end

#fetchExportConfigurationInstance

Fetch the ExportConfigurationInstance



199
200
201
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 199

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



226
227
228
229
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 226

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Preview.BulkExports.ExportConfigurationInstance #{values}>"
end

#resource_typeString



186
187
188
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 186

def resource_type
  @properties['resource_type']
end

#to_sObject

Provide a user friendly representation



219
220
221
222
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 219

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Preview.BulkExports.ExportConfigurationInstance #{values}>"
end

#update(enabled: :unset, webhook_url: :unset, webhook_method: :unset) ⇒ ExportConfigurationInstance

Update the ExportConfigurationInstance



213
214
215
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 213

def update(enabled: :unset, webhook_url: :unset, webhook_method: :unset)
  context.update(enabled: enabled, webhook_url: webhook_url, webhook_method: webhook_method, )
end

#urlString



192
193
194
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 192

def url
  @properties['url']
end

#webhook_methodString



180
181
182
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 180

def webhook_method
  @properties['webhook_method']
end

#webhook_urlString



174
175
176
# File 'lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb', line 174

def webhook_url
  @properties['webhook_url']
end