You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns text translations from one language to another.
50
+
*/
51
+
list(object: {
52
+
/**
53
+
* The text to translate
54
+
*/
55
+
q: string;
56
+
/**
57
+
* The target language into which the text should be translated
58
+
*/
59
+
target: string;
60
+
/**
61
+
* The customization id for translate
62
+
*/
63
+
cid?: string;
64
+
/**
65
+
* This optional parameter allows you to indicate that the text to be translated is either plain-text or HTML. A value of html indicates HTML and a value of text indicates plain-text
66
+
*/
67
+
format?: string;
68
+
/**
69
+
* The source language of the text
70
+
*/
71
+
source?: string;
72
+
/**
73
+
* Selector specifying which fields to include in a partial response.
74
+
*/
75
+
fields?: string;
76
+
/**
77
+
* If prettyprint=true, the results returned by the server will be human readable (pretty printed).
0 commit comments