Sha256: 6cb9cd2457b3d1b8370011dd45eb889a04eb06896886cb2eb6eba4cebc44ea12
Contents?: true
Size: 472 Bytes
Versions: 3
Compression:
Stored size: 472 Bytes
Contents
require_relative '../../util/enum' module MangoModel # Dispute Document types enumeration class DisputeDocumentType extend Enum DELIVERY_PROOF = value 'DELIVERY_PROOF' INVOICE = value 'INVOICE' REFUND_PROOF = value 'REFUND_PROOF' USER_CORRESPONDANCE = value 'USER_CORRESPONDANCE' USER_ACCEPTANCE_PROOF = value 'USER_ACCEPTANCE_PROOF' PRODUCT_REPLACEMENT_PROOF = value 'PRODUCT_REPLACEMENT_PROOF' OTHER = value 'OTHER' end end
Version data entries
3 entries across 3 versions & 1 rubygems