-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
return payment object type for creating a charge
- Loading branch information
Jared King
committed
Dec 6, 2020
1 parent
f736265
commit 9e0055c
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
module Invoiced | ||
class Charge < Object | ||
include Invoiced::Operations::Create | ||
|
||
OBJECT_NAME = 'charge' | ||
|
||
def create(body={}, opts={}) | ||
response = @client.request(:post, endpoint(), body, opts) | ||
|
||
payment = Payment.new(@client) | ||
Util.convert_to_object(payment, response[:body]) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters