Sha256: 4cd28b7824c706d38eabe69a5677853a74d4bec89e2f4852771b0f5ba247e341
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
class Epics::C54 < 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" => "C54", "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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
epics-1.5.1 | lib/epics/c54.rb |
epics-1.5.0 | lib/epics/c54.rb |