Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 930 Bytes

CardEditRequest.md

File metadata and controls

28 lines (22 loc) · 930 Bytes

Synctera::CardEditRequest

Properties

Name Type Description Notes
card_status CardStatusRequest [optional]
customer_id String The ID of the customer to whom the card will be issued [optional]
emboss_name EmbossName [optional]
memo String Additional details about the reason for the status change [optional]
metadata Hash<String, String> Additional data to include in the request structured as key-value pairs [optional]
reason CardStatusReasonCode [optional]

Example

require 'synctera'

instance = Synctera::CardEditRequest.new(
  card_status: null,
  customer_id: 7d943c51-e4ff-4e57-9558-08cab6b963c7,
  emboss_name: null,
  memo: null,
  metadata: null,
  reason: null
)