Skip to content

LicenseCredentialDeactivationAcceptance

Public append-only deactivation acceptance.

const LicenseCredentialDeactivationAcceptance: Schema.toTaggedUnion<"status", readonly [Schema.Struct<{
status: Schema.Literal<"deactivated">;
deactivation: Schema.Struct<{
activationId: Schema.brand<Schema.String, "LicenseActivationId">;
licenseId: Schema.brand<Schema.String, "LicenseId">;
deactivatedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;
}>, Schema.Struct<{
status: Schema.Literal<"already_deactivated">;
deactivation: Schema.Struct<{
activationId: Schema.brand<Schema.String, "LicenseActivationId">;
licenseId: Schema.brand<Schema.String, "LicenseId">;
deactivatedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;
}>]>;