Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::BundleContext::EvaluationContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, bundle_sid, sid) ⇒ EvaluationContext

Initialize the EvaluationContext

Parameters:

  • version (Version)

    Version that contains the resource

  • bundle_sid (String)

    The unique string that we created to identify the Bundle resource.

  • sid (String)

    The unique string that identifies the Evaluation resource.



159
160
161
162
163
164
165
166
167
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb', line 159

def initialize(version, bundle_sid, sid)
    super(version)

    # Path Solution
    @solution = { bundle_sid: bundle_sid, sid: sid,  }
    @uri = "/RegulatoryCompliance/Bundles/#{@solution[:bundle_sid]}/Evaluations/#{@solution[:sid]}"

    
end

Instance Method Details

#fetchEvaluationInstance

Fetch the EvaluationInstance

Returns:



171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb', line 171

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    EvaluationInstance.new(
        @version,
        payload,
        bundle_sid: @solution[:bundle_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



198
199
200
201
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb', line 198

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Numbers.V2.EvaluationContext #{context}>"
end

#to_sObject

Provide a user friendly representation



191
192
193
194
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/evaluation.rb', line 191

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Numbers.V2.EvaluationContext #{context}>"
end