docs/PostPlanBankModel

CybridApiBank::PostPlanBankModel

Properties

Name Type Description Notes
type String The type of product the plan is for.
bank_guid String The unique identifier for the bank. [optional]
customer_guid String The unique identifier for the customer. [optional]
source_account PostPlanSourceAccountBankModel
destination_account PostPlanDestinationAccountBankModel
travel_rule_info PostPlanTravelRuleInfoBankModel [optional]
purpose_of_transaction String The purpose of transaction for the plan. [optional]

Example

require 'cybrid_api_bank_ruby'

instance = CybridApiBank::PostPlanBankModel.new(
  type: null,
  bank_guid: null,
  customer_guid: null,
  source_account: null,
  destination_account: null,
  travel_rule_info: null,
  purpose_of_transaction: null
)