Method: Countir::AccountCode#initialize
- Defined in:
- lib/countir/resources/account_code.rb
#initialize(id:, account_name:, account_name_en:, phonetic_kana:, phonetic_romaji:, account_type:) ⇒ AccountCode
Returns a new instance of AccountCode.
5 6 7 8 9 10 11 12 |
# File 'lib/countir/resources/account_code.rb', line 5 def initialize(id:, account_name:, account_name_en:, phonetic_kana:, phonetic_romaji:, account_type:) self.id = id self.account_name = account_name self.account_name_en = account_name_en self.phonetic_kana = phonetic_kana self.phonetic_romaji = phonetic_romaji self.account_type = account_type end |