Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PaymentCompletedEventArgs.cs
2
3namespace EDaler.Events
4{
9 {
10 private readonly string transactionId;
11 private readonly string currency;
12 private readonly decimal amount;
13
22 decimal Amount, string Currency)
23 : base(e)
24 {
25 this.transactionId = TransactionId;
26 this.amount = Amount;
27 this.currency = Currency;
28 }
29
33 public string TransactionId => this.transactionId;
34
38 public decimal Amount => this.amount;
39
43 public string Currency => this.currency;
44 }
45}
Event arguments for event signalling the completion of a payment operation.
PaymentCompletedEventArgs(MessageEventArgs e, string TransactionId, decimal Amount, string Currency)
Event arguments for event signalling the completion of a payment operation.
string TransactionId
Transaction ID, if available in the response.
Event arguments for message events.