Class: Twilio::REST::Verify::V2::VerificationAttemptContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Verify::V2::VerificationAttemptContext
- Defined in:
- lib/twilio-ruby/rest/verify/v2/verification_attempt.rb
Instance Method Summary collapse
-
#fetch ⇒ VerificationAttemptInstance
Fetch the VerificationAttemptInstance.
-
#initialize(version, sid) ⇒ VerificationAttemptContext
constructor
Initialize the VerificationAttemptContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ VerificationAttemptContext
Initialize the VerificationAttemptContext
234 235 236 237 238 239 240 |
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 234 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/Attempts/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ VerificationAttemptInstance
Fetch the VerificationAttemptInstance
245 246 247 248 249 |
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 245 def fetch payload = @version.fetch('GET', @uri) VerificationAttemptInstance.new(@version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
260 261 262 263 |
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 260 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Verify.V2.VerificationAttemptContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
253 254 255 256 |
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 253 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Verify.V2.VerificationAttemptContext #{context}>" end |