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
Describe the bug Some snippets in Go are generated with a bug as reported here
generated code
requestParameters := &graphusers.UserItemMailFolderItemMessagesDeltaWithRequestBuilderGetQueryParameters{ ChangeType: &requestChangeType, Select: [] string {"subject","from","isRead","body","receivedDateTime"}, } configuration := &graphusers.UserItemMailFolderItemMessagesDeltaWithRequestBuilderGetRequestConfiguration{ Headers: headers, QueryParameters: requestParameters, }
To Reproduce Steps to reproduce the behavior: Use Graph Explorer link with the example https://graph.microsoft.com/v1.0/users/{id}/mailFolders('inbox')/messages/delta?changeType=created&$select=subject,from,isRead,body,receivedDateTime
Expected behavior should generate
requestParameters := &graphusers.ItemMailFoldersItemMessagesDeltaRequestBuilderGetQueryParameters{ ChangeType: &requestChangeType, Select: []string{"subject", "from", "isRead", "body", "receivedDateTime"}, } configuration := &graphusers.ItemMailFoldersItemMessagesDeltaRequestBuilderGetRequestConfiguration{ Headers: headers, QueryParameters: requestParameters, }
The text was updated successfully, but these errors were encountered:
rkodev
Successfully merging a pull request may close this issue.
Describe the bug
Some snippets in Go are generated with a bug as reported here
generated code
To Reproduce
Steps to reproduce the behavior:
Use Graph Explorer link with the example https://graph.microsoft.com/v1.0/users/{id}/mailFolders('inbox')/messages/delta?changeType=created&$select=subject,from,isRead,body,receivedDateTime
Expected behavior
should generate
The text was updated successfully, but these errors were encountered: