Advertisement
Guest User

Untitled

a guest
Jan 11th, 2023
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.36 KB | None | 0 0
  1. type AutoGenerated struct {
  2.     Nobility struct {
  3.         Name  *string `json:"name"`
  4.         Image *string `json:"image"`
  5.         Desc  *string `json:"desc"`
  6.     } `json:"nobility"`
  7. }
  8.  
  9. type AutoGenerated2 struct {
  10.     Nobility struct {
  11.         Name  string `json:"name,omitempty"`
  12.         Image string `json:"image,omitempty"`
  13.         Desc  string `json:"desc,omitempty"`
  14.     } `json:"nobility"`
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement