Class: Twilio::REST::Bulkexports::V1::ExportContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Bulkexports::V1::ExportContext
- Defined in:
- lib/twilio-ruby/rest/bulkexports/v1/export.rb,
lib/twilio-ruby/rest/bulkexports/v1/export/day.rb,
lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb
Defined Under Namespace
Classes: DayContext, DayInstance, DayList, DayPage, ExportCustomJobInstance, ExportCustomJobList, ExportCustomJobPage
Instance Method Summary collapse
-
#days(day = :unset) ⇒ DayList, DayContext
Access the days.
-
#export_custom_jobs ⇒ ExportCustomJobList, ExportCustomJobContext
Access the export_custom_jobs.
-
#fetch ⇒ ExportInstance
Fetch the ExportInstance.
-
#initialize(version, resource_type) ⇒ ExportContext
constructor
Initialize the ExportContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, resource_type) ⇒ ExportContext
Initialize the ExportContext
63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 63 def initialize(version, resource_type) super(version) # Path Solution @solution = { resource_type: resource_type, } @uri = "/Exports/#{@solution[:resource_type]}" # Dependents @export_custom_jobs = nil @days = nil end |
Instance Method Details
#days(day = :unset) ⇒ DayList, DayContext
Access the days
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 108 def days(day=:unset) raise ArgumentError, 'day cannot be nil' if day.nil? if day != :unset return DayContext.new(@version, @solution[:resource_type],day ) end unless @days @days = DayList.new( @version, resource_type: @solution[:resource_type], ) end @days end |
#export_custom_jobs ⇒ ExportCustomJobList, ExportCustomJobContext
Access the export_custom_jobs
97 98 99 100 101 102 103 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 97 def export_custom_jobs unless @export_custom_jobs @export_custom_jobs = ExportCustomJobList.new( @version, resource_type: @solution[:resource_type], ) end @export_custom_jobs end |
#fetch ⇒ ExportInstance
Fetch the ExportInstance
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 77 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) ExportInstance.new( @version, payload, resource_type: @solution[:resource_type], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
133 134 135 136 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 133 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.ExportContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
126 127 128 129 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 126 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.ExportContext #{context}>" end |