Class: LucidShopify::CreateCharge

Inherits:
Object
  • Object
show all
Defined in:
lib/lucid_shopify/create_charge.rb

Instance Method Summary collapse

Constructor Details

#initialize(client: Container[:client]) ⇒ CreateCharge

Returns a new instance of CreateCharge.

Parameters:

  • client (#post_json) (defaults to: Container[:client])


10
11
12
# File 'lib/lucid_shopify/create_charge.rb', line 10

def initialize(client: Container[:client])
  @client = client
end

Instance Method Details

#call(credentials, charge) ⇒ Hash

Create a new recurring application charge.

Parameters:

Returns:

  • (Hash)

    the pending charge



22
23
24
25
26
# File 'lib/lucid_shopify/create_charge.rb', line 22

def call(credentials, charge)
  data = @client.post_json(credentials, 'recurring_application_charges', post_data(charge))

  data['recurring_application_charge']
end