RefundResponse

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
refundId string
originalChargeId string
amount object
status string
refundedAt string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-refundresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RefundResponse",
  "title": "RefundResponse",
  "type": "object",
  "properties": {
    "refundId": {
      "type": "string",
      "format": "uuid"
    },
    "originalChargeId": {
      "type": "string",
      "format": "uuid"
    },
    "amount": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "status": {
      "type": "string",
      "enum": [
        "COMPLETED",
        "PENDING"
      ]
    },
    "refundedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}