1 Star 0 Fork 0

KathentGitee / go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
user_object_ref.go 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by go-swagger; DO NOT EDIT.
package models2
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// ExtUserObjectRef user object ref
// swagger:model ExtUserObjectRef
type ExtUserObjectRef struct {
ExtUser
}
// UnmarshalJSON unmarshals this object from a JSON structure
func (m *ExtUserObjectRef) UnmarshalJSON(raw []byte) error {
// AO0
var aO0 ExtUser
if err := swag.ReadJSON(raw, &aO0); err != nil {
return err
}
m.ExtUser = aO0
return nil
}
// MarshalJSON marshals this object to a JSON structure
func (m ExtUserObjectRef) MarshalJSON() ([]byte, error) {
_parts := make([][]byte, 0, 1)
aO0, err := swag.WriteJSON(m.ExtUser)
if err != nil {
return nil, err
}
_parts = append(_parts, aO0)
return swag.ConcatJSON(_parts...), nil
}
// Validate validates this user object ref
func (m *ExtUserObjectRef) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *ExtUserObjectRef) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *ExtUserObjectRef) UnmarshalBinary(b []byte) error {
var res ExtUserObjectRef
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
Go
1
https://gitee.com/kathent/go-swagger.git
git@gitee.com:kathent/go-swagger.git
kathent
go-swagger
go-swagger
v0.19.0

搜索帮助