1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
project_member_entity.go 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
王帆 提交于 2023-02-13 08:49 . first commit
// Code generated by go-swagger; DO NOT EDIT.
package model
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// ProjectMemberEntity project member entity
//
// swagger:model ProjectMemberEntity
type ProjectMemberEntity struct {
// the id of entity, if the member is a user, it is user_id in user table. if the member is a user group, it is the user group's ID in user_group table.
EntityID int64 `json:"entity_id,omitempty"`
// the name of the group member.
EntityName string `json:"entity_name,omitempty"`
// the entity's type, u for user entity, g for group entity.
EntityType string `json:"entity_type,omitempty"`
// the project member id
ID int64 `json:"id,omitempty"`
// the project id
ProjectID int64 `json:"project_id,omitempty"`
// the role id
RoleID int64 `json:"role_id,omitempty"`
// the name of the role
RoleName string `json:"role_name,omitempty"`
}
// Validate validates this project member entity
func (m *ProjectMemberEntity) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *ProjectMemberEntity) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *ProjectMemberEntity) UnmarshalBinary(b []byte) error {
var res ProjectMemberEntity
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
Go
1
https://gitee.com/nanjo-fan/goharbor-client.git
git@gitee.com:nanjo-fan/goharbor-client.git
nanjo-fan
goharbor-client
goharbor-client
v1.0.2

搜索帮助