ChargingResponse

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
chargeId string
accountId string
amount object
chargeType string
status string
remainingBalance object
chargedAt string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-chargingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChargingResponse",
  "title": "ChargingResponse",
  "type": "object",
  "properties": {
    "chargeId": {
      "type": "string",
      "format": "uuid"
    },
    "accountId": {
      "type": "string"
    },
    "amount": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "chargeType": {
      "type": "string",
      "enum": [
        "PREPAID",
        "POSTPAID"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "COMPLETED",
        "PENDING",
        "FAILED"
      ]
    },
    "remainingBalance": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "chargedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}