Module: Pago::V2026_04::Enums::RefundReason
- Defined in:
- lib/pago/v2026_04/enums.rb,
sig/pago/v2026_04/generated.rbs
Constant Summary collapse
- DUPLICATE =
"duplicate"- FRAUDULENT =
"fraudulent"- CUSTOMER_REQUEST =
"customer_request"- SERVICE_DISRUPTION =
"service_disruption"- SATISFACTION_GUARANTEE =
"satisfaction_guarantee"- DISPUTE_PREVENTION =
"dispute_prevention"- OTHER =
"other"- ALL_VALUES =
[ DUPLICATE, FRAUDULENT, CUSTOMER_REQUEST, SERVICE_DISRUPTION, SATISFACTION_GUARANTEE, DISPUTE_PREVENTION, OTHER ].freeze
Class Method Summary collapse
-
.valid?(value) ⇒ Boolean
Whether the value is declared by this API version.
-
.values ⇒ Array<String>
Every value declared by the API.
Class Method Details
.valid?(value) ⇒ Boolean
Returns whether the value is declared by this API version.
2728 |
# File 'lib/pago/v2026_04/enums.rb', line 2728 def self.valid?(value) = ALL_VALUES.include?(value) |
.values ⇒ Array<String>
Returns every value declared by the API.
2724 |
# File 'lib/pago/v2026_04/enums.rb', line 2724 def self.values = ALL_VALUES |