1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
user_creation_req.go 1.99 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/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// UserCreationReq user creation req
//
// swagger:model UserCreationReq
type UserCreationReq struct {
// comment
Comment string `json:"comment,omitempty"`
// email
// Max Length: 255
Email string `json:"email,omitempty"`
// password
Password string `json:"password,omitempty"`
// realname
Realname string `json:"realname,omitempty"`
// username
// Max Length: 255
Username string `json:"username,omitempty"`
}
// Validate validates this user creation req
func (m *UserCreationReq) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateEmail(formats); err != nil {
res = append(res, err)
}
if err := m.validateUsername(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *UserCreationReq) validateEmail(formats strfmt.Registry) error {
if swag.IsZero(m.Email) { // not required
return nil
}
if err := validate.MaxLength("email", "body", string(m.Email), 255); err != nil {
return err
}
return nil
}
func (m *UserCreationReq) validateUsername(formats strfmt.Registry) error {
if swag.IsZero(m.Username) { // not required
return nil
}
if err := validate.MaxLength("username", "body", string(m.Username), 255); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *UserCreationReq) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *UserCreationReq) UnmarshalBinary(b []byte) error {
var res UserCreationReq
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

搜索帮助