Sha256: fd4c79a4ab2d95ab98ca5fceacac828b1afbc2de7f24cdeec1587c6a41072b5a
Contents?: true
Size: 964 Bytes
Versions: 9
Compression:
Stored size: 964 Bytes
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/user" require "pokepay_partner_ruby_sdk/response/account" require "pokepay_partner_ruby_sdk/response/user" require "pokepay_partner_ruby_sdk/response/account" module Pokepay::Response class ExternalTransaction def initialize(row) @id = row["id"] @is_modified = row["is_modified"] @sender = User.new(row["sender"]) @sender_account = Account.new(row["sender_account"]) @receiver = User.new(row["receiver"]) @receiver_account = Account.new(row["receiver_account"]) @amount = row["amount"] @done_at = row["done_at"] @description = row["description"] end attr_reader :id attr_reader :is_modified attr_reader :sender attr_reader :sender_account attr_reader :receiver attr_reader :receiver_account attr_reader :amount attr_reader :done_at attr_reader :description end end
Version data entries
9 entries across 9 versions & 1 rubygems