diff --git a/smartling-glossary-api/src/main/java/com/smartling/api/glossary/v3/pto/entry/command/GlossaryEntryCommandPTO.java b/smartling-glossary-api/src/main/java/com/smartling/api/glossary/v3/pto/entry/command/GlossaryEntryCommandPTO.java index 0cc78136..a07e9d12 100644 --- a/smartling-glossary-api/src/main/java/com/smartling/api/glossary/v3/pto/entry/command/GlossaryEntryCommandPTO.java +++ b/smartling-glossary-api/src/main/java/com/smartling/api/glossary/v3/pto/entry/command/GlossaryEntryCommandPTO.java @@ -22,16 +22,19 @@ public class GlossaryEntryCommandPTO { private String definition; /** * Glossary entry part of speech. - * One of : - * - Noun, - * - Verb, - * - Adjective, - * - Adverb, - * - Pronoun, - * - Preposition, - * - Interjection, - * - Conjunction, - * - Proper Noun. + * Supported values (case-insensitive): + * - NOUN / Noun + * - VERB / Verb + * - ADJECTIVE / Adjective + * - ADVERB / Adverb + * - PRONOUN / Pronoun + * - PREPOSITION / Preposition + * - INTERJECTION / Interjection + * - CONJUNCTION / Conjunction + * - PROPER_NOUN / "Proper Noun" + *

+ * The field accepts both uppercase enum constants and human-readable formats. + * Invalid values will result in deserialization errors with appropriate error handling. */ private String partOfSpeech; /**