Updated timestamps in ModelVersion

This commit is contained in:
Pavel Dmitriev 2024-05-16 18:02:29 +03:00
parent f83eae6e58
commit 8de04ec577
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ type CreateRegisteredModelResponse struct {
type ModelVersion struct {
Name string `json:"name,omitempty"`
Version string `json:"version,omitempty"`
CreationTimestamp Timestamp `json:"creation_timestamp,omitempty"`
LastUpdateTimestamp Timestamp `json:"last_update_timestamp,omitempty"`
CreationTimestamp TimestampMs `json:"creation_timestamp,omitempty"`
LastUpdateTimestamp TimestampMs `json:"last_update_timestamp,omitempty"`
UserId string `json:"user_id,omitempty"`
CurrentStage string `json:"current_stage,omitempty"`
Description string `json:"description,omitempty"`