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

GatewayLogModel.md

File metadata and controls

28 lines (22 loc) · 631 Bytes

Marqeta::GatewayLogModel

Properties

Name Type Description Notes
order_number String
transaction_id String
message String
duration Integer [optional]
timed_out Boolean [optional][default to false]
response GatewayResponse [optional]

Example

require 'marqeta'

instance = Marqeta::GatewayLogModel.new(
  order_number: null,
  transaction_id: null,
  message: null,
  duration: null,
  timed_out: null,
  response: null
)