Sha256: 03c98b9e65c5a1795c2df63628f63a9b050cc952dab393b015a52d9040bc1339
Contents?: true
Size: 493 Bytes
Versions: 11
Compression:
Stored size: 493 Bytes
Contents
# typed: true # frozen_string_literal: true module EML module UK class Payload module Card class Void < ::EML::UK::Payload REQUIRED_CONFIG = %i[merchant_group].freeze REQUIRED_VALUES = %i[note].freeze private sig { params(merchant_group: String).returns(String) } attr_accessor :merchant_group sig { params(note: String).returns(String) } attr_accessor :note end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems