Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

自動生成構造体のIDのomitemptyを外したい #16

Open
rare0b opened this issue Nov 15, 2023 · 0 comments
Open

自動生成構造体のIDのomitemptyを外したい #16

rare0b opened this issue Nov 15, 2023 · 0 comments

Comments

@rare0b
Copy link
Owner

rare0b commented Nov 15, 2023

{
  "id": 11,
  "category": {
    "id": 0,
    "name": "string"
  },
  "name": "doggie",
  "photoUrls": [
    "string"
  ],
  "tags": [
    {
      "id": 0,
      "name": "string"
    },
    {
      "id": 1,
      "name": "string"
    }
  ],
  "status": "available"
}

これをMarshalすると、

{
    "id": 11,
    "category": {
        "name": "string"
    },
    "name": "doggie",
    "photoUrls": [
        "string"
    ],
    "tags": [
        {
            "name": "string"
        },
        {
            "id": 1,
            "name": "string"
        }
    ],
    "status": "available"
}

こうなる(ID=0が表示されない)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant