Class: PlatformAPI::Credit

Inherits:
Object
  • Object
show all
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

Constructor Details

#initialize(client) ⇒ Credit

Returns a new instance of Credit.



1634
1635
1636
# File 'lib/platform-api/client.rb', line 1634

def initialize(client)
  @client = client
end

Instance Method Details

#create(body = {}) ⇒ Object

Create a new credit.

Parameters:

  • body:

    the object to pass as the request payload



1641
1642
1643
# File 'lib/platform-api/client.rb', line 1641

def create(body = {})
  @client.credit.create(body)
end

#info(credit_id) ⇒ Object

Info for existing credit.

Parameters:

  • credit_id:

    unique identifier of credit



1648
1649
1650
# File 'lib/platform-api/client.rb', line 1648

def info(credit_id)
  @client.credit.info(credit_id)
end

#listObject

List existing credits.



1653
1654
1655
# File 'lib/platform-api/client.rb', line 1653

def list()
  @client.credit.list()
end