Class: ChargeBee::PaymentIntent

Inherits:
Model
  • Object
show all
Defined in:
lib/chargebee/models/payment_intent.rb

Defined Under Namespace

Classes: PaymentAttempt

Instance Attribute Summary collapse

Class Method Summary collapse

Methods inherited from Model

construct, #init_dependant, #init_dependant_list, #initialize, #inspect, #load, #method_missing, #to_s, uri_path

Constructor Details

This class inherits a constructor from ChargeBee::Model

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ChargeBee::Model

Instance Attribute Details

#active_payment_attemptObject

Returns the value of attribute active_payment_attempt.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def active_payment_attempt
  @active_payment_attempt
end

#amountObject

Returns the value of attribute amount.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def amount
  @amount
end

#business_entity_idObject

Returns the value of attribute business_entity_id.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def business_entity_id
  @business_entity_id
end

#created_atObject

Returns the value of attribute created_at.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def created_at
  @created_at
end

#currency_codeObject

Returns the value of attribute currency_code.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def currency_code
  @currency_code
end

#customer_idObject

Returns the value of attribute customer_id.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def customer_id
  @customer_id
end

#expires_atObject

Returns the value of attribute expires_at.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def expires_at
  @expires_at
end

#failure_urlObject

Returns the value of attribute failure_url.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def failure_url
  @failure_url
end

#gatewayObject

Returns the value of attribute gateway.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def gateway
  @gateway
end

#gateway_account_idObject

Returns the value of attribute gateway_account_id.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def 
  @gateway_account_id
end

#idObject

Returns the value of attribute id.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def id
  @id
end

#modified_atObject

Returns the value of attribute modified_at.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def modified_at
  @modified_at
end

#payment_method_typeObject

Returns the value of attribute payment_method_type.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def payment_method_type
  @payment_method_type
end

#reference_idObject

Returns the value of attribute reference_id.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def reference_id
  @reference_id
end

#resource_versionObject

Returns the value of attribute resource_version.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def resource_version
  @resource_version
end

#statusObject

Returns the value of attribute status.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def status
  @status
end

#success_urlObject

Returns the value of attribute success_url.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def success_url
  @success_url
end

#updated_atObject

Returns the value of attribute updated_at.



8
9
10
# File 'lib/chargebee/models/payment_intent.rb', line 8

def updated_at
  @updated_at
end

Class Method Details

.create(params, env = nil, headers = {}) ⇒ Object

OPERATIONS




15
16
17
# File 'lib/chargebee/models/payment_intent.rb', line 15

def self.create(params, env=nil, headers={})
  Request.send('post', uri_path("payment_intents"), params, env, headers)
end

.retrieve(id, env = nil, headers = {}) ⇒ Object



23
24
25
# File 'lib/chargebee/models/payment_intent.rb', line 23

def self.retrieve(id, env=nil, headers={})
  Request.send('get', uri_path("payment_intents",id.to_s), {}, env, headers)
end

.update(id, params = {}, env = nil, headers = {}) ⇒ Object



19
20
21
# File 'lib/chargebee/models/payment_intent.rb', line 19

def self.update(id, params={}, env=nil, headers={})
  Request.send('post', uri_path("payment_intents",id.to_s), params, env, headers)
end