Sha256: 6ee2caed445e82b386a6c1acbe7a1d6d4d683040afd1e2f73b0fc8d21320cbd5
Contents?: true
Size: 894 Bytes
Versions: 3
Compression:
Stored size: 894 Bytes
Contents
require 'mida_vocabulary/datatype' module Mida module SchemaOrg # 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. Commonly used values: http://purl.org/goodrelations/v1#ByBankTransferInAdvance http://purl.org/goodrelations/v1#ByInvoice http://purl.org/goodrelations/v1#Cash http://purl.org/goodrelations/v1#CheckInAdvance http://purl.org/goodrelations/v1#COD http://purl.org/goodrelations/v1#DirectDebit http://purl.org/goodrelations/v1#GoogleCheckout http://purl.org/goodrelations/v1#PayPal http://purl.org/goodrelations/v1#PaySwarm class PaymentMethod < Mida::DataType::Enumeration VALID_VALUES = [ [::Mida::DataType::URL, %r{http://schema.org/}i] ] end end end
Version data entries
3 entries across 2 versions & 1 rubygems