ENT-11036: initiatedBy is now a list of CordaX500Names. (#7592)

This commit is contained in:
Adel El-Beik 2023-11-28 07:10:53 +00:00 committed by GitHub
parent d6b9134700
commit 72e5c4fed2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ class FlowRecoveryException(message: String, cause: Throwable? = null) : FlowExc
@CordaSerializable
data class FlowRecoveryQuery(
val timeframe: FlowTimeWindow? = null,
val initiatedBy: CordaX500Name? = null,
val initiatedBy: List<CordaX500Name>? = null,
val counterParties: List<CordaX500Name>? = null) {
init {
require(timeframe != null || initiatedBy != null || counterParties != null) {