Sha256: 3ad93655fbbd42d8b379bf518411176ba0dae16003afa20dcb76b7336cf9d77b
Contents?: true
Size: 495 Bytes
Versions: 11
Compression:
Stored size: 495 Bytes
Contents
# typed: true # frozen_string_literal: true module EML module UK class Payload module Card class Unlock < ::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