class GenesisRuby::Utils::Formatters::Response::Formats::Timestamp

Response Timestamp format

def format_key(timestamp)

Format the given timestamp to DateTime object
def format_key(timestamp)
  DateTime.parse timestamp
rescue StandardError
  timestamp
end

def formatting_keys

The Response keys that the formatter will be applied to
def formatting_keys
  %w(timestamp transactionDate valueDate transaction_date post_date)
end