/** * A reference to a Catalog object at a specific version. In general this is * used as an entry point into a graph of catalog objects, where the objects exist * at a specific version. */ export interface CatalogObjectReference { /** The ID of the referenced object. */ objectId?: string | null; /** The version of the object. */ catalogVersion?: bigint | null; }