Sha256: cd3924604354e9b4c9efa49380c66e2709f7e2369561b9970ff82f06b7bac8b3
Contents?: true
Size: 1.84 KB
Versions: 8
Compression:
Stored size: 1.84 KB
Contents
require 'money_s3/base_element' require 'money_s3/adresa_type' require 'money_s3/adresa_type' require 'money_s3/adresa_type' require 'money_s3/telefon_type' require 'money_s3/telefon_type' require 'money_s3/telefon_type' require 'money_s3/isdoc' require 'money_s3/eshop' module MoneyS3 class DokladFirmaType include BaseElement def obch_nazev at :ObchNazev end def fakt_nazev at :FaktNazev end def ico at :ICO end def dic at :DIC end def dicsk at :DICSK end def guid at :GUID end def nazev at :Nazev end def e_mail at :EMail end def www at :WWW end def platce_dph at :PlatceDPH end def fyz_osoba at :FyzOsoba end def banka at :Banka end def ucet at :Ucet end def kod_banky at :KodBanky end def v_symb at :VSymb end def spec_sym at :SpecSym end def kod_partn at :KodPartn end def obch_adresa element_xml = at :ObchAdresa AdresaType.new(element_xml) if element_xml end def fakt_adresa element_xml = at :FaktAdresa AdresaType.new(element_xml) if element_xml end def adresa element_xml = at :Adresa AdresaType.new(element_xml) if element_xml end def tel element_xml = at :Tel TelefonType.new(element_xml) if element_xml end def fax element_xml = at :Fax TelefonType.new(element_xml) if element_xml end def mobil element_xml = at :Mobil TelefonType.new(element_xml) if element_xml end def isdoc element_xml = at :ISDOC ISDOC.new(element_xml) if element_xml end def eshop element_xml = at :eshop Eshop.new(element_xml) if element_xml end end end
Version data entries
8 entries across 8 versions & 1 rubygems