Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 3.88 KB

File metadata and controls

34 lines (29 loc) · 3.88 KB

WebhookSubscription

Example Usage

import { WebhookSubscription } from "dwolla/models";

let value: WebhookSubscription = {
  links: {
    self: {
      href:
        "https://api.dwolla.com/webhook-subscriptions/077dfffb-4852-412f-96b6-0fe668066589",
    },
    webhooks: {
      href:
        "https://api.dwolla.com/webhook-subscriptions/077dfffb-4852-412f-96b6-0fe668066589/webhooks",
    },
  },
  id: "077dfffb-4852-412f-96b6-0fe668066589",
  url: "http://myapplication.com/webhooks",
  paused: true,
  created: new Date("2022-10-28T16:20:47+00:00"),
};

Fields

Field Type Required Description Example
links models.WebhookSubscriptionLinks N/A
id string N/A 077dfffb-4852-412f-96b6-0fe668066589
url string N/A http://myapplication.com/webhooks
paused boolean N/A true
created Date N/A 2022-10-28T16:20:47+00:00