Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.11 KB

File metadata and controls

28 lines (22 loc) · 1.11 KB

UltracartClient::ItemPaymentProcessing

Properties

Name Type Description Notes
block_prepaid Boolean True if prepaid cards should be blocked from buying this item [optional]
block_refunds Boolean True if this item should block any refund attempts, set to false otherwise, null value will not update the field [optional]
credit_card_transaction_type String Credit card transaction type [optional]
no_realtime_charge Boolean True if no real-time charge should be performed on this item. [optional]
payment_method_validity Array<String> Payment method validity [optional]
rotating_transaction_gateway_codes Array<String> Rotating transaction gateway codes [optional]

Example

require 'ultracart_api'

instance = UltracartClient::ItemPaymentProcessing.new(
  block_prepaid: null,
  block_refunds: null,
  credit_card_transaction_type: null,
  no_realtime_charge: null,
  payment_method_validity: null,
  rotating_transaction_gateway_codes: null
)