Sha256: 3a778bf0e6aa48199bbe229428b6434e502e6dd558348992bf5ace8ddd3dfd72
Contents?: true
Size: 391 Bytes
Versions: 1
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true module BAI2 module Structures class AccountHeader attr_reader :customer_account_number, :currency_code, :type_code def initialize(customer_account_number:, currency_code:, type_code:) @customer_account_number = customer_account_number @currency_code = currency_code @type_code = type_code end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bai2_ruby-0.1.0 | lib/bai2_ruby/structures/account_header.rb |