Skip to content

LicenseCredentialRevocationAcceptance

Public append-only credential revocation acceptance.

const LicenseCredentialRevocationAcceptance: Schema.toTaggedUnion<"status", readonly [Schema.Struct<{
status: Schema.Literal<"revoked">;
revocation: Schema.Struct<{
licenseId: Schema.brand<Schema.String, "LicenseId">;
reason: Schema.Literal<"merchant_revoked">;
revokedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;
}>, Schema.Struct<{
status: Schema.Literal<"already_revoked">;
revocation: Schema.Struct<{
licenseId: Schema.brand<Schema.String, "LicenseId">;
reason: Schema.Literal<"merchant_revoked">;
revokedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;
}>]>;