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

Latest commit

 

History

History
30 lines (24 loc) · 723 Bytes

WebhookResponseModel.md

File metadata and controls

30 lines (24 loc) · 723 Bytes

Marqeta::WebhookResponseModel

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
created_time Time [optional]
last_modified_time Time [optional]

Example

require 'marqeta'

instance = Marqeta::WebhookResponseModel.new(
  token: null,
  name: null,
  active: null,
  config: null,
  events: null,
  created_time: null,
  last_modified_time: null
)