Skip to content

LicenseCredentialActivationAcceptance

Public activation acceptance with explicit replay status.

const LicenseCredentialActivationAcceptance: Schema.toTaggedUnion<"status", readonly [Schema.Struct<{
status: Schema.Literal<"activated">;
activation: Schema.Struct<{
id: Schema.brand<Schema.String, "LicenseActivationId">;
licenseId: Schema.brand<Schema.String, "LicenseId">;
activatedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;
}>, Schema.Struct<{
status: Schema.Literal<"already_active">;
activation: Schema.Struct<{
id: Schema.brand<Schema.String, "LicenseActivationId">;
licenseId: Schema.brand<Schema.String, "LicenseId">;
activatedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;
}>]>;