@@ -30,18 +30,6 @@ const (
3030 ProjectTenantModeEnabled ProjectTenantMode = "TENANT_MODE_ENABLED"
3131)
3232
33- // ProjectSchemaVersion is the schema version type for project.
34- type ProjectSchemaVersion string
35-
36- const (
37- // ProjectSchemaVersionTimestamp is the timestamp schema version type in the project.
38- ProjectSchemaVersionTimestamp ProjectSchemaVersion = "TIMESTAMP"
39- // ProjectSchemaVersionSemantic is the semantic schema version type in the project.
40- ProjectSchemaVersionSemantic ProjectSchemaVersion = "SEMANTIC"
41- // ProjectSchemaVersionUnspecified is the unspecified schema version type in the project.
42- ProjectSchemaVersionUnspecified ProjectSchemaVersion = "SCHEMA_VERSION_UNSPECIFIED"
43- )
44-
4533// ProjectSchemaChange is the schema change type for project.
4634type ProjectSchemaChange string
4735
@@ -54,16 +42,15 @@ const (
5442
5543// ProjectMessage is the API message for project.
5644type ProjectMessage struct {
57- Name string `json:"name"`
58- Title string `json:"title"`
59- Key string `json:"key"`
60- Workflow ProjectWorkflow `json:"workflow"`
61- Visibility ProjectVisibility `json:"visibility"`
62- TenantMode ProjectTenantMode `json:"tenantMode"`
63- DBNameTemplate string `json:"dbNameTemplate"`
64- SchemaVersion ProjectSchemaVersion `json:"schemaVersion"`
65- SchemaChange ProjectSchemaChange `json:"schemaChange"`
66- State State `json:"state,omitempty"`
45+ Name string `json:"name"`
46+ Title string `json:"title"`
47+ Key string `json:"key"`
48+ Workflow ProjectWorkflow `json:"workflow"`
49+ Visibility ProjectVisibility `json:"visibility"`
50+ TenantMode ProjectTenantMode `json:"tenantMode"`
51+ DBNameTemplate string `json:"dbNameTemplate"`
52+ SchemaChange ProjectSchemaChange `json:"schemaChange"`
53+ State State `json:"state,omitempty"`
6754}
6855
6956// ListProjectMessage is the API message for list project response.
0 commit comments