Represents a single payment.
Name | Type | Description |
---|---|---|
Id |
Integer | The ID of the payment. |
DateCreated |
DateTime | The date and time that the payment was created. |
Description |
String | The description of the payment. |
Amount |
Decimal | The amount of the payment. Positive for credits, negative for debits. |
Balance |
Decimal | The resulting account balance after the payment was applied. |
{ "Id": 1, "DateCreated": "2000-01-01T00:00:00.000", "Description": "Account Deposit", "Amount": 500.0000, "Balance": 500.0000 }
<Payment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://api.commissionfactory.com/V1/Merchant"> <Id>1</Id> <DateCreated>2000-01-01T00:00:00.000</DateCreated> <Description>Account Deposit</Description> <Amount>500.0000</Amount> <Balance>500.0000</Balance> </Payment>