-
Notifications
You must be signed in to change notification settings - Fork 1
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
Feat/conversation conversations #36
Conversation
feat: add stop, update,delete implementations
var propMask = conversation.GetPropertiesMask(); | ||
if (!string.IsNullOrEmpty(propMask)) queryString.Add("update_mask", propMask); | ||
|
||
if (metadataUpdateStrategy is not null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This query parameter should have a default value set to REPLACE
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't it optional and going to be defaulted by the server?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know how to verify that. I hope that this information is intended to the server teams but in order to be on the safe side we may send the default value if nothing is specified by the user
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved with some small comments to look at
Covers Conversations/Conversation tag of api.
Also, includes rework of Conversation/Messages models to match server json schema