Class: Twilio::REST::Bulkexports::V1::ExportConfigurationInstance

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

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

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

Initialize the ExportConfigurationInstance



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 136

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



157
158
159
160
161
162
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 157

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

#enabledBoolean



166
167
168
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 166

def enabled
  @properties['enabled']
end

#fetchExportConfigurationInstance

Fetch the ExportConfigurationInstance



197
198
199
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 197

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



224
225
226
227
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 224

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

#resource_typeString



184
185
186
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 184

def resource_type
  @properties['resource_type']
end

#to_sObject

Provide a user friendly representation



217
218
219
220
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 217

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



211
212
213
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 211

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

#urlString



190
191
192
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 190

def url
  @properties['url']
end

#webhook_methodString



178
179
180
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 178

def webhook_method
  @properties['webhook_method']
end

#webhook_urlString



172
173
174
# File 'lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb', line 172

def webhook_url
  @properties['webhook_url']
end