Sha256: 7436ee94480c17e224f19534ce24fb746f393603e9fca772f14d389051779e72
Contents?: true
Size: 1.31 KB
Versions: 12
Compression:
Stored size: 1.31 KB
Contents
class Epics::C53 < Epics::GenericRequest attr_accessor :from, :to def initialize(client, from, to) super(client) self.from = from self.to = to end def header { :@authenticate => true, static: { "HostID" => host_id, "Nonce" => nonce, "Timestamp" => timestamp, "PartnerID" => partner_id, "UserID" => user_id, "Product" => { :@Language => "de", :content! => "EPICS - a ruby ebics kernel" }, "OrderDetails" => { "OrderType" => "C53", "OrderAttribute" => "DZHNN", "StandardOrderParams" => { "DateRange" => { "Start" => from, "End" => to } } }, "BankPubKeyDigests" => { "Authentication" => { :@Version => "X002", :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256", :content! => client.bank_x.public_digest }, "Encryption" => { :@Version => "E002", :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256", :content! => client.bank_e.public_digest } }, "SecurityMedium" => "0000" }, "mutable" => { "TransactionPhase" => "Initialisation" } } end end
Version data entries
12 entries across 12 versions & 1 rubygems