Sha256: 15763b5ac03954570ac3b9b5a75e9776fa0db173779a5cd264611d2e2279364d
Contents?: true
Size: 1 KB
Versions: 9
Compression:
Stored size: 1 KB
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/organization" module Pokepay::Response class PrivateMoney def initialize(row) @id = row["id"] @name = row["name"] @unit = row["unit"] @is_exclusive = row["is_exclusive"] @description = row["description"] @oneline_message = row["oneline_message"] @organization = Organization.new(row["organization"]) @max_balance = row["max_balance"] @transfer_limit = row["transfer_limit"] @type = row["type"] @expiration_type = row["expiration_type"] @enable_topup_by_member = row["enable_topup_by_member"] end attr_reader :id attr_reader :name attr_reader :unit attr_reader :is_exclusive attr_reader :description attr_reader :oneline_message attr_reader :organization attr_reader :max_balance attr_reader :transfer_limit attr_reader :type attr_reader :expiration_type attr_reader :enable_topup_by_member end end
Version data entries
9 entries across 9 versions & 1 rubygems