class Pohoda::Parsers::Typ::PaymentType
Public Instance Methods
id()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 7 def id at 'typ:id' end
id_attributes()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 11 def id_attributes attributes_at 'typ:id' end
ids()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 15 def ids at 'typ:ids' end
ids_attributes()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 19 def ids_attributes attributes_at 'typ:ids' end
payment_type()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 23 def payment_type at 'typ:paymentType' end
payment_type_attributes()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 27 def payment_type_attributes attributes_at 'typ:paymentType' end
to_h()
click to toggle source
# File lib/pohoda/parsers/typ/payment_type.rb, line 31 def to_h hash = {} hash[:attributes] = attributes hash[:id] = id if has? 'typ:id' hash[:id_attributes] = id_attributes if has? 'typ:id' hash[:ids] = ids if has? 'typ:ids' hash[:ids_attributes] = ids_attributes if has? 'typ:ids' hash[:payment_type] = payment_type if has? 'typ:paymentType' hash[:payment_type_attributes] = payment_type_attributes if has? 'typ:paymentType' hash end