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

Latest commit

 

History

History
36 lines (30 loc) · 975 Bytes

GpaRequest.md

File metadata and controls

36 lines (30 loc) · 975 Bytes

Marqeta::GpaRequest

Properties

Name Type Description Notes
tags String [optional]
memo String [optional]
fees Array<FeeModel> [optional]
token String [optional]
user_token String Required if 'business_token' is null [optional]
business_token String Required if 'user_token' is null [optional]
amount Float
currency_code String
funding_source_token String
funding_source_address_token String [optional]

Example

require 'marqeta'

instance = Marqeta::GpaRequest.new(
  tags: null,
  memo: null,
  fees: null,
  token: null,
  user_token: null,
  business_token: null,
  amount: null,
  currency_code: null,
  funding_source_token: null,
  funding_source_address_token: null
)