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

Latest commit

 

History

History
28 lines (22 loc) · 603 Bytes

CampaignModel.md

File metadata and controls

28 lines (22 loc) · 603 Bytes

Marqeta::CampaignModel

Properties

Name Type Description Notes
active Boolean [default to true]
name String
start_date Time [optional]
end_date Time [optional]
token String
store_tokens Array<String> Enclose tokens in brackets [optional]

Example

require 'marqeta'

instance = Marqeta::CampaignModel.new(
  active: null,
  name: null,
  start_date: null,
  end_date: null,
  token: null,
  store_tokens: null
)