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) · 620 Bytes

FeeTransferRequest.md

File metadata and controls

26 lines (20 loc) · 620 Bytes

Marqeta::FeeTransferRequest

Properties

Name Type Description Notes
tags String [optional]
fees Array<FeeModel> [optional]
token String [optional]
user_token String Required if 'business_token' is null
business_token String Required if 'user_token' is null

Example

require 'marqeta'

instance = Marqeta::FeeTransferRequest.new(
  tags: null,
  fees: null,
  token: null,
  user_token: null,
  business_token: null
)