action agco_ats_translation_sets_get_statistics { label: "Gets the statistics for translation sets such as the language ids and count of string definitions." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationSets/{ID}/Statistics" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" description: "Statistics for a translation set" properties: { LanguageIDs: { type: "array" description: "The IDs of languages for which translaions in this translation set have been requested" items: { type: "integer" format: "int32" } } StringCount: { type: "integer" format: "int32" description: "The count of unique string definitions contained in this translation set" } } } }