pub type AnyJsonCredential<S = Object> = AnySpecializedJsonCredential<S>;Expand description
Any JSON credential using VCDM v1 or v2.
If you care about required context and/or type, use the
AnySpecializedJsonCredential type directly.
Aliased Type§
pub enum AnyJsonCredential<S = Object> {
V1(SpecializedJsonCredential<S>),
V2(SpecializedJsonCredential<S>),
}