AccountBalance

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
accountId string
accountType string
availableBalance object
reservedAmount object
totalBalance object
creditLimit object
lastUpdated string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-accountbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountBalance",
  "title": "AccountBalance",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "accountType": {
      "type": "string",
      "enum": [
        "PREPAID",
        "POSTPAID"
      ]
    },
    "availableBalance": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "reservedAmount": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "totalBalance": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "creditLimit": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    }
  }
}