Skip to content

Product

Public product identity and descriptive metadata.

const Product: Schema.Struct<{
id: Schema.brand<Schema.String, "ProductId">;
name: Schema.String;
description: Schema.OptionFromNullOr<Schema.String>;
createdAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
updatedAt: Schema.brand<Schema.Int, "EpochMilliseconds">;
}>;