OBJECT
Payment
Payment on site
link GraphQL Schema definition
- type Payment {
- # Primary Key
- Int! :
- # State of Payment: new|success|error|timeout|reverse
- String :
- # User ID
- Int! :
- # Visitor ID
- Int! :
- # Merchant ID
- Int :
- # Any ID which will help identify the payment
- Int :
- # Type of payment, e.g. replenish
- String! :
- # Payment state code on processing
- String :
- # Unix timestamp when Payment was created
- Float! :
- # Unix timestamp user started paying
- Float :
- # Key of selected processing (payment gate)
- String :
- # JSON string with any data for (or from) processing
- String :
- # Amount for all services
- Float! :
- # Total payment fee
- Float! :
- # Total payment amount: amount + amount_commis
- Float! :
- # Currency ID
- Int! :
- # Original user IP who created the payment
- String! :
- # ID of UserAgent who created the payment
- Int! :
- }