SubscriptionStatusUpdated
v1.0.0

An event raised whenever the status of the subscription is updated
SubscriptionStatusUpdated Schema (yml)
openapi: 3.0.0
info:
  version: "1.0.0"
  title: SubscriptionStatusUpdated
paths: {}
components:
  schemas:
    SubscriptionStatusUpdated:
      type: object
      required:
        - metadata
        - data
      properties:
        data:
          "$ref": "#/components/schemas/Data"
        metadata:
          "$ref": "#/components/schemas/Metadata"
    Data:
      type: object
      required:
        - id
        - oldValue
        - newValue
      properties:
        id:
          type: string
        oldValue:
          type: string
        newValue:
          type: string
    Metadata:
      type: object
      required:
        - serviceFunction
        - version
      properties:
        serviceFunction:
          type: string
        version:
          type: string
Edit this pageLast updated on 2024/4/2