"description":"The language of the source text, set to one of the language codes listed in\nLanguage Support. If the source language is not specified, the API will\nattempt to identify the source language automatically and return it within\nthe response.",
"description":"The format of the source text, in either HTML (default) or plain-text. A\nvalue of \"html\" indicates HTML and a value of \"text\" indicates plain-text.",
"description":"API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token."
},
"quotaUser":{
"location":"query",
"description":"Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.",
"type":"string"
},
"pp":{
"location":"query",
"description":"Pretty-print response.",
"type":"boolean",
"default":"true"
},
"bearer_token":{
"location":"query",
"description":"OAuth bearer token.",
"type":"string"
},
"oauth_token":{
"location":"query",
"description":"OAuth 2.0 token for the current user.",
"description":"The `model` type used for this translation. Valid values are\nlisted in public documentation. Can be different from requested `model`.\nPresent only if specific model type was explicitly requested."
},
"translatedText":{
"type":"string",
"description":"Text translated into the target language."
},
"detectedSourceLanguage":{
"type":"string",
"description":"The source language of the initial request, detected automatically, if\nno source language was passed within the initial request. If the\nsource language was passed, auto-detection of the language will not\noccur and this field will be empty."
}
},
"id":"TranslationsResource"
},
"DetectionsResource":{
"description":"An array of languages which we detect for the given text The most likely language list first.",
"type":"array",
"items":{
"type":"object",
"properties":{
"confidence":{
"type":"number",
"description":"The confidence of the detection result of this language.",
"format":"float"
},
"isReliable":{
"description":"A boolean to indicate is the language detection result reliable.",
"type":"boolean"
},
"language":{
"description":"The language we detected.",
"type":"string"
}
}
},
"id":"DetectionsResource"
},
"TranslationsListResponse":{
"type":"object",
"properties":{
"translations":{
"description":"Translations contains list of translation results of given text",
"type":"array",
"items":{
"$ref":"TranslationsResource"
}
}
},
"id":"TranslationsListResponse",
"description":"The main language translation response message."
},
"TranslateTextRequest":{
"description":"The main translation request message for the Cloud Translation API.",
"type":"object",
"properties":{
"source":{
"description":"The language of the source text, set to one of the language codes listed in\nLanguage Support. If the source language is not specified, the API will\nattempt to identify the source language automatically and return it within\nthe response.",
"type":"string"
},
"model":{
"description":"The `model` type requested for this translation. Valid values are\nlisted in public documentation.",
"type":"string"
},
"target":{
"type":"string",
"description":"The language to use for translation of the input text, set to one of the\nlanguage codes listed in Language Support."
},
"q":{
"description":"The input text to translate. Repeat this parameter to perform translation\noperations on multiple text inputs.",
"type":"array",
"items":{
"type":"string"
}
},
"format":{
"description":"The format of the source text, in either HTML (default) or plain-text. A\nvalue of \"html\" indicates HTML and a value of \"text\" indicates plain-text.",
"type":"string"
}
},
"id":"TranslateTextRequest"
},
"DetectLanguageRequest":{
"description":"The request message for language detection.",
"type":"object",
"properties":{
"q":{
"type":"array",
"items":{
"type":"string"
},
"description":"The input text upon which to perform language detection. Repeat this\nparameter to perform language detection on multiple text inputs."
}
},
"id":"DetectLanguageRequest"
},
"LanguagesResource":{
"type":"object",
"properties":{
"language":{
"description":"Supported language code, generally consisting of its ISO 639-1\nidentifier. (E.g. 'en', 'ja'). In certain cases, BCP-47 codes including\nlanguage + region identifiers are returned (e.g. 'zh-TW' and 'zh-CH')",
"type":"string"
},
"name":{
"type":"string",
"description":"Human readable name of the language localized to the target language."
}
},
"id":"LanguagesResource"
},
"DetectionsListResponse":{
"type":"object",
"properties":{
"detections":{
"type":"array",
"items":{
"$ref":"DetectionsResource"
},
"description":"A detections contains detection results of several text"
}
},
"id":"DetectionsListResponse"
},
"GetSupportedLanguagesRequest":{
"type":"object",
"properties":{
"target":{
"description":"The language to use to return localized, human readable names of supported\nlanguages.",
"type":"string"
}
},
"id":"GetSupportedLanguagesRequest",
"description":"The request message for discovering supported languages."
},
"LanguagesListResponse":{
"type":"object",
"properties":{
"languages":{
"description":"List of source/target languages supported by the translation API. If target parameter is unspecified, the list is sorted by the ASCII code point order of the language code. If target parameter is specified, the list is sorted by the collation order of the language name in the target language.",