Class: Twilio::REST::Api::V2010::AccountContext::CallContext::PaymentInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::CallContext::PaymentInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/call/payment.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Payments resource.
-
#call_sid ⇒ String
The SID of the [Call](www.twilio.com/docs/voice/api/call-resource) the Payments resource is associated with.
-
#context ⇒ PaymentContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#initialize(version, payload, account_sid: nil, call_sid: nil, sid: nil) ⇒ PaymentInstance
constructor
Initialize the PaymentInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
The SID of the Payments resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(idempotency_key: nil, status_callback: nil, capture: :unset, status: :unset) ⇒ PaymentInstance
Update the PaymentInstance.
-
#uri ⇒ String
The URI of the resource, relative to ‘api.twilio.com`.
Constructor Details
#initialize(version, payload, account_sid: nil, call_sid: nil, sid: nil) ⇒ PaymentInstance
Initialize the PaymentInstance
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 226 def initialize(version, payload , account_sid: nil, call_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'call_sid' => payload['call_sid'], 'sid' => payload['sid'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), 'uri' => payload['uri'], } # Context @instance_context = nil @params = { 'account_sid' => account_sid ,'call_sid' => call_sid || @properties['call_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Payments resource.
257 258 259 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 257 def account_sid @properties['account_sid'] end |
#call_sid ⇒ String
Returns The SID of the [Call](www.twilio.com/docs/voice/api/call-resource) the Payments resource is associated with. This will refer to the call sid that is producing the payment card (credit/ACH) information thru DTMF.
263 264 265 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 263 def call_sid @properties['call_sid'] end |
#context ⇒ PaymentContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
248 249 250 251 252 253 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 248 def context unless @instance_context @instance_context = PaymentContext.new(@version , @params['account_sid'], @params['call_sid'], @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
275 276 277 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 275 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
281 282 283 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 281 def date_updated @properties['date_updated'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
322 323 324 325 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 322 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.PaymentInstance #{values}>" end |
#sid ⇒ String
Returns The SID of the Payments resource.
269 270 271 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 269 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
315 316 317 318 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 315 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.PaymentInstance #{values}>" end |
#update(idempotency_key: nil, status_callback: nil, capture: :unset, status: :unset) ⇒ PaymentInstance
Update the PaymentInstance
298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 298 def update( idempotency_key: nil, status_callback: nil, capture: :unset, status: :unset ) context.update( idempotency_key: idempotency_key, status_callback: status_callback, capture: capture, status: status, ) end |
#uri ⇒ String
Returns The URI of the resource, relative to ‘api.twilio.com`.
287 288 289 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call/payment.rb', line 287 def uri @properties['uri'] end |