We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NullableStringは本来「valueがnilのときはisSetはfalse」となっていることが期待されるがそうなっていないケースがある
value
isSet
traqApi.ChannelApi.GetChannels(auth).Execute()の返り値のParentId 対応するAPIGET /api/v3/channelsを直接叩いたときに"parentId": nullとなるすべてのチャンネルにおいて発生
traqApi.ChannelApi.GetChannels(auth).Execute()
ParentId
GET /api/v3/channels
"parentId": null
&traq.Channel{ Id: "f08c42ad-09e7-40ca-8966-b314fd3e48d9", ParentId: traq.NullableString{ value: (*string)(nil), isSet: true, }, Archived: false, Force: false, Name: "gps", ... }
確認済みなのはNullableStringだけだが、他のNullable*でも同様の状況になっている可能性があるかもしれない
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NullableStringは本来「
value
がnilのときはisSet
はfalse」となっていることが期待されるがそうなっていないケースがある発生したケース
traqApi.ChannelApi.GetChannels(auth).Execute()
の返り値のParentId
対応するAPI
GET /api/v3/channels
を直接叩いたときに"parentId": null
となるすべてのチャンネルにおいて発生確認済みなのはNullableStringだけだが、他のNullable*でも同様の状況になっている可能性があるかもしれない
The text was updated successfully, but these errors were encountered: