Class EbicsOrderHVT
Retrieves all transaction details for a waiting VEU order.
public class EbicsOrderHVT : EbicsOrder
- Inheritance
-
EbicsOrderHVT
- Inherited Members
Constructors
EbicsOrderHVT()
public EbicsOrderHVT()
Properties
ResponseOrderData
The HVTResponseOrderData that was received.
public EbicsHVTResponseOrderData ResponseOrderData { get; }
Property Value
Remarks
If the complete order data was requested, then this property will be null.
In this case, the original order data will instead be returned through the
OrderData property.
Methods
ProcessResponseOrderData(EbicsVersion)
public override void ProcessResponseOrderData(EbicsVersion nVersion)
Parameters
nVersionEbicsVersion
SetOrderParams(string, EbicsOrderDetails, bool, int, int)
Set all order parameters from previously obtained order details.
public void SetOrderParams(string sPartnerID, EbicsOrderDetails aOrderDetails, bool fCompleteOrderData, int nFetchLimit, int nFetchOffset)
Parameters
sPartnerIDstringaOrderDetailsEbicsOrderDetailsPreviously obtained order details.
fCompleteOrderDataboolIf
true, then the complete original order data is requested. Iffalse, then the order details as a EbicsHVTResponseOrderData instance are requested. See OrderDetailsAvailable and OrderDataAvailable.nFetchLimitintIf
fCompleteOrderDataisfalse, then this parameter can be used to limit the number of order details that are returned. IffCompleteOrderDataistrue, then this parameter is ignored.nFetchOffsetintIf
fCompleteOrderDataisfalse, then this parameter can be used to specify the index of first order details that shall be returned. IffCompleteOrderDataistrue, then this parameter is ignored.