# frozen_string_literal: true module Bs2Api module Entities class Payment attr_accessor :payment_id, :end_to_end_id, :receiver, :payer def initialize(args = {}) @payment_id = args.fetch(:payment_id, nil) @end_to_end_id = args.fetch(:end_to_end_id, nil) @receiver = args.fetch(:receiver, nil) @payer = args.fetch(:payer, nil) end def to_hash ActiveSupport::HashWithIndifferentAccess.new( { "pagamentoId": @payment_id, "endToEndId": @end_to_end_id, "recebedor": @receiver.to_hash, "pagador": @payer.to_hash } ) end def self.from_response(hash_payload) hash = ActiveSupport::HashWithIndifferentAccess.new(hash_payload) Bs2Api::Entities::Payment.new( payment_id: hash["pagamentoId"], end_to_end_id: hash["endToEndId"], receiver: Bs2Api::Entities::Bank.from_response(hash["recebedor"]), payer: Bs2Api::Entities::Bank.from_response(hash["pagador"]) ) end end end end