mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
16 lines
497 B
Go
16 lines
497 B
Go
package HarborAPI
|
|
|
|
import ()
|
|
|
|
type Project struct {
|
|
ProjectId int32 `json:"id,omitempty"`
|
|
OwnerId int32 `json:"owner_id,omitempty"`
|
|
ProjectName string `json:"project_name,omitempty"`
|
|
CreationTime string `json:"creation_time,omitempty"`
|
|
Deleted int32 `json:"deleted,omitempty"`
|
|
UserId int32 `json:"user_id,omitempty"`
|
|
OwnerName string `json:"owner_name,omitempty"`
|
|
Public bool `json:"public,omitempty"`
|
|
Togglable bool `json:"togglable,omitempty"`
|
|
}
|