action
example
clients
go
api
docs
.gitignore
.swagger-codegen-ignore
.travis.yml
README.md
api_greet.go
api_user_api.go
client.go
configuration.go
git_push.sh
model_login_req.go
model_register_req.go
model_user_info_reply.go
model_user_info_req.go
model_user_search_reply.go
model_user_search_req.go
response.go
javascript
php
gozero
sys
generate-client.sh
generate.go
rest.swagger.json
swagger.json
test.api
user.api
user.json
generate
.gitignore
LICENSE
README.md
go.mod
go.sum
main.go
19 lines
510 B
Go
19 lines
510 B
Go
![]() |
/*
|
||
|
*
|
||
|
*
|
||
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
||
|
*
|
||
|
* API version:
|
||
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||
|
*/
|
||
|
|
||
|
package swagger
|
||
|
|
||
|
type UserInfoReply struct {
|
||
|
Name string `json:"name,omitempty"`
|
||
|
Age int32 `json:"age,omitempty"`
|
||
|
Birthday string `json:"birthday,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
Tag []string `json:"tag,omitempty"`
|
||
|
}
|