Noah Deposit Source Trigger Condition
data class NoahDepositSourceTriggerCondition(val amountConditions: List<NoahAmountCondition>, val cryptoCurrency: String, val network: String, val destinationAddress: String)
Condition that must be met for the on-chain deposit to be picked up by Noah.
Note:
destinationAddressis typed as a flatStringto match connect-api'sDepositSourceTriggerCondition.DestinationAddress: string. Upstream Noah's OpenAPI describes this field as{ Address: string }, so if the BFF starts emitting a nested object this struct will fail to decode and we'll need to update both sides.
Constructors
Link copied to clipboard
constructor(amountConditions: List<NoahAmountCondition>, cryptoCurrency: String, network: String, destinationAddress: String)