Package tbdex.sdk.messages
Class OrderInstructionsData
-
- All Implemented Interfaces:
public final class OrderInstructionsDataRepresents the data of an order's instructions in the tbDEX protocol, including payin and payout instructions.
-
-
Field Summary
Fields Modifier and Type Field Description private PaymentInstructionpayinprivate PaymentInstructionpayout
-
Constructor Summary
Constructors Constructor Description OrderInstructionsData(PaymentInstruction payin, PaymentInstruction payout)
-
Method Summary
Modifier and Type Method Description final PaymentInstructiongetPayin()The payin payment instructions for Alice. final UnitsetPayin(PaymentInstruction payin)The payin payment instructions for Alice. final PaymentInstructiongetPayout()The payout payment instructions for Alice. final UnitsetPayout(PaymentInstruction payout)The payout payment instructions for Alice. -
-
Constructor Detail
-
OrderInstructionsData
OrderInstructionsData(PaymentInstruction payin, PaymentInstruction payout)
-
-
Method Detail
-
getPayin
final PaymentInstruction getPayin()
The payin payment instructions for Alice.
-
setPayin
final Unit setPayin(PaymentInstruction payin)
The payin payment instructions for Alice.
-
getPayout
final PaymentInstruction getPayout()
The payout payment instructions for Alice.
-
setPayout
final Unit setPayout(PaymentInstruction payout)
The payout payment instructions for Alice.
-
-
-
-