Sha256: 934d7378753beaf5ccac348f651508271e9d54717b046b1ba954e69b69e62a53
Contents?: true
Size: 640 Bytes
Versions: 2
Compression:
Stored size: 640 Bytes
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/account_with_user" module Pokepay::Response class Bill def initialize(row) @id = row["id"] @amount = row["amount"] @max_amount = row["max_amount"] @min_amount = row["min_amount"] @description = row["description"] @account = AccountWithUser.new(row["account"]) @is_disabled = row["is_disabled"] end attr_reader :id attr_reader :amount attr_reader :max_amount attr_reader :min_amount attr_reader :description attr_reader :account attr_reader :is_disabled end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pokepay_partner_ruby_sdk-0.1.6 | lib/pokepay_partner_ruby_sdk/response/bill.rb |
pokepay_partner_ruby_sdk-0.1.5 | lib/pokepay_partner_ruby_sdk/response/bill.rb |