Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 569 Bytes

WebhookRequestModel.md

File metadata and controls

26 lines (20 loc) · 569 Bytes

Marqeta::WebhookRequestModel

Properties

Name Type Description Notes
token String [optional]
name String
active Boolean [optional][default to true]
config WebhookConfigModel
events Array<String> An array of event types

Example

require 'marqeta'

instance = Marqeta::WebhookRequestModel.new(
  token: null,
  name: null,
  active: null,
  config: null,
  events: null
)