-
Notifications
You must be signed in to change notification settings - Fork 24
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
Support 'notes' field on create/update operations #54
Comments
@yumaoka are notes part of |
* bundle: support in create/update/getInfo * resourceEntry: support in update/getInfo * make some setters more future-proof Remaining: Not sure if uploadStrings or updateStrings also has notes support. #54
@maniax89 i opened a PR above ^ that supports all of the 'explicit' modes of notes fields. |
Thanks, I will look into this and add them.
Got that… already supported in this PR. |
(for reference) for {
"key": {
"value": "value",
"notes": [ "abc","def"]
}
} and similarly for {
"key": {
"value": "value2",
"notes": [ "ghi", "jkl" ]
}
} and when the The @maniax89 any thoughts? |
According to the swagger spec, the field
notes
is supported on get/create/update for a few places:resourceEntries
): https://gp-rest.ng.bluemix.net/translate/swagger/index.html#!/bundle/getResourceStringsresourceEntries
): https://gp-rest.ng.bluemix.net/translate/swagger/index.html#!/bundle/uploadResourceStringsresourceEntries
): https://gp-rest.ng.bluemix.net/translate/swagger/index.html#!/bundle/updateResourceStringsWould be great if we could have access to this
notes
field across these endpointsThe text was updated successfully, but these errors were encountered: