VerificationListVerificationsInput constructor
const
VerificationListVerificationsInput({})
Implementation
@JsonSerializable(includeIfNull: false)
const factory VerificationListVerificationsInput({
/// Pagination cursor
String? cursor,
/// Maximum number of results to return
@Default(50) int limit,
/// Filter to verifications created after this timestamp
@JsonKey(toJson: iso8601) DateTime? createdAfter,
/// Filter to verifications created before this timestamp
@JsonKey(toJson: iso8601) DateTime? createdBefore,
List<String>? issuers,
List<String>? subjects,
/// Sort direction for creation date
@Default('desc') String sortDirection,
/// Filter to verifications that are revoked or not. By default, includes both.
bool? isRevoked,
Map<String, dynamic>? $unknown,
}) = _VerificationListVerificationsInput;