Sha256: 52254a8860481220f7ca9eb7f0f9d2ab37ab00f3411e8f43fa47530f7342cba7
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.<br/><br/> # # Commonly used values:<br/><br/> # # <ul> # <li>http://purl.org/goodrelations/v1#ByBankTransferInAdvance</li> # <li>http://purl.org/goodrelations/v1#ByInvoice</li> # <li>http://purl.org/goodrelations/v1#Cash</li> # <li>http://purl.org/goodrelations/v1#CheckInAdvance</li> # <li>http://purl.org/goodrelations/v1#COD</li> # <li>http://purl.org/goodrelations/v1#DirectDebit</li> # <li>http://purl.org/goodrelations/v1#GoogleCheckout</li> # <li>http://purl.org/goodrelations/v1#PayPal</li> # <li>http://purl.org/goodrelations/v1#PaySwarm</li> # </ul> # class PaymentMethod < TypesafeEnum::Base end end end end
Version data entries
4 entries across 4 versions & 1 rubygems