CredentialListResponse

@Serializable
data class CredentialListResponse(    val credentialIDs: List<String>,     val credentialInfos: List<CredentialInfo>? = null,     val onlyValid: Boolean? = null)(source)

Constructors

Link copied to clipboard
constructor(credentialIDs: List<String>, credentialInfos: List<CredentialInfo>? = null, onlyValid: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "credentialIDs")
val credentialIDs: List<String>

One or more credentialID(s) associated with the provided or implicit userID.

Link copied to clipboard
@SerialName(value = "credentialInfos")
val credentialInfos: List<CredentialInfo>? = null

If the credentialInfo parameter is not “true”, this value SHALL NOT be returned.

Link copied to clipboard
@SerialName(value = "onlyValid")
val onlyValid: Boolean? = null

This value SHALL be returned true when the input parameter “onlyValid” was true, and the RSSP supports this feature, i.e. the RSSP only returns credentials which can be used for signing. If the values is false or the output parameter is omitted, then the list may contain credentials which cannot be used for signing.