Class: PlatformAPI::Credit
- Inherits:
-
Object
- Object
- PlatformAPI::Credit
- Defined in:
- lib/platform-api/client.rb
Overview
A credit represents value that will be used up before further charges are assigned to an account.
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new credit.
-
#info(credit_id) ⇒ Object
Info for existing credit.
-
#initialize(client) ⇒ Credit
constructor
A new instance of Credit.
-
#list ⇒ Object
List existing credits.
Constructor Details
#initialize(client) ⇒ Credit
Returns a new instance of Credit.
1640 1641 1642 |
# File 'lib/platform-api/client.rb', line 1640 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new credit.
1647 1648 1649 |
# File 'lib/platform-api/client.rb', line 1647 def create(body = {}) @client.credit.create(body) end |
#info(credit_id) ⇒ Object
Info for existing credit.
1654 1655 1656 |
# File 'lib/platform-api/client.rb', line 1654 def info(credit_id) @client.credit.info(credit_id) end |
#list ⇒ Object
List existing credits.
1659 1660 1661 |
# File 'lib/platform-api/client.rb', line 1659 def list() @client.credit.list() end |