ListVerificationsQueryParams

data class ListVerificationsQueryParams(val cursor: String? = null, val limit: Long? = 50, val createdAfter: Timestamp? = null, val createdBefore: Timestamp? = null, val issuers: List<Did> = emptyList(), val subjects: List<Did> = emptyList(), val sortDirection: String? = "desc", val isRevoked: Boolean? = null)

Parameters

cursor

Pagination cursor

limit

Maximum number of results to return

createdAfter

Filter to verifications created after this timestamp

createdBefore

Filter to verifications created before this timestamp

issuers

Filter to verifications from specific issuers

subjects

Filter to specific verified DIDs

sortDirection

Sort direction for creation date

isRevoked

Filter to verifications that are revoked or not. By default, includes both.

Constructors

Link copied to clipboard
constructor(cursor: String? = null, limit: Long? = 50, createdAfter: Timestamp? = null, createdBefore: Timestamp? = null, issuers: List<Did> = emptyList(), subjects: List<Did> = emptyList(), sortDirection: String? = "desc", isRevoked: Boolean? = null)

Properties

Link copied to clipboard
val createdAfter: Timestamp? = null

Filter to verifications created after this timestamp

Link copied to clipboard

Filter to verifications created before this timestamp

Link copied to clipboard
val cursor: String? = null

Pagination cursor

Link copied to clipboard
val isRevoked: Boolean? = null

Filter to verifications that are revoked or not. By default, includes both.

Link copied to clipboard

Filter to verifications from specific issuers

Link copied to clipboard
val limit: Long? = 50

Maximum number of results to return

Link copied to clipboard

Sort direction for creation date

Link copied to clipboard

Filter to specific verified DIDs

Functions

Link copied to clipboard