Class: ShellDataReportingApIs::PricedTransactionRespV2RefundFlagEnum

Inherits:
Object
  • Object
show all
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

.from_value(value, default_value = Y) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/shell_data_reporting_ap_is/models/priced_transaction_resp_v2_refund_flag_enum.rb', line 23

def self.from_value(value, default_value = Y)
  return default_value if value.nil?

  str = value.to_s.strip

  case str.downcase
  when 'y' then Y
  when 'n' then N
  else
    default_value
  end
end

.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