Class: ShellDataReportingApIs::PricedTransactionRespV2RefundFlagEnum
- Inherits:
-
Object
- Object
- ShellDataReportingApIs::PricedTransactionRespV2RefundFlagEnum
- Defined in:
- lib/shell_data_reporting_ap_is/models/priced_transaction_resp_v2_refund_flag_enum.rb
Overview
Flag to check if there is any refund
Constant Summary collapse
- PRICED_TRANSACTION_RESP_V2_REFUND_FLAG_ENUM =
[ # TODO: Write general description for Y Y = 'Y'.freeze, # TODO: Write general description for N N = 'N'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
17 18 19 20 21 |
# File 'lib/shell_data_reporting_ap_is/models/priced_transaction_resp_v2_refund_flag_enum.rb', line 17 def self.validate(value) return false if value.nil? PRICED_TRANSACTION_RESP_V2_REFUND_FLAG_ENUM.include?(value) end |