Documentation ¶
Overview ¶
Package translate provides access to the Google Cloud Translation API.
This package is DEPRECATED. Use package cloud.google.com/go/translate instead.
See https://code.google.com/apis/language/translate/v2/getting_started.html
Usage example:
import "google.golang.org/api/translate/v2" ... translateService, err := translate.New(oauthHttpClient)
Index ¶
- Constants
- type DetectLanguageRequest
- type DetectionsDetectCall
- func (c *DetectionsDetectCall) Context(ctx context.Context) *DetectionsDetectCall
- func (c *DetectionsDetectCall) Do(opts ...googleapi.CallOption) (*DetectionsListResponse, error)
- func (c *DetectionsDetectCall) Fields(s ...googleapi.Field) *DetectionsDetectCall
- func (c *DetectionsDetectCall) Header() http.Header
- type DetectionsListCall
- func (c *DetectionsListCall) Context(ctx context.Context) *DetectionsListCall
- func (c *DetectionsListCall) Do(opts ...googleapi.CallOption) (*DetectionsListResponse, error)
- func (c *DetectionsListCall) Fields(s ...googleapi.Field) *DetectionsListCall
- func (c *DetectionsListCall) Header() http.Header
- func (c *DetectionsListCall) IfNoneMatch(entityTag string) *DetectionsListCall
- type DetectionsListResponse
- type DetectionsResourceItem
- type DetectionsService
- type GetSupportedLanguagesRequest
- type LanguagesListCall
- func (c *LanguagesListCall) Context(ctx context.Context) *LanguagesListCall
- func (c *LanguagesListCall) Do(opts ...googleapi.CallOption) (*LanguagesListResponse, error)
- func (c *LanguagesListCall) Fields(s ...googleapi.Field) *LanguagesListCall
- func (c *LanguagesListCall) Header() http.Header
- func (c *LanguagesListCall) IfNoneMatch(entityTag string) *LanguagesListCall
- func (c *LanguagesListCall) Model(model string) *LanguagesListCall
- func (c *LanguagesListCall) Target(target string) *LanguagesListCall
- type LanguagesListResponse
- type LanguagesResource
- type LanguagesService
- type Service
- type TranslateTextRequest
- type TranslationsListCall
- func (c *TranslationsListCall) Cid(cid ...string) *TranslationsListCall
- func (c *TranslationsListCall) Context(ctx context.Context) *TranslationsListCall
- func (c *TranslationsListCall) Do(opts ...googleapi.CallOption) (*TranslationsListResponse, error)
- func (c *TranslationsListCall) Fields(s ...googleapi.Field) *TranslationsListCall
- func (c *TranslationsListCall) Format(format string) *TranslationsListCall
- func (c *TranslationsListCall) Header() http.Header
- func (c *TranslationsListCall) IfNoneMatch(entityTag string) *TranslationsListCall
- func (c *TranslationsListCall) Model(model string) *TranslationsListCall
- func (c *TranslationsListCall) Source(source string) *TranslationsListCall
- type TranslationsListResponse
- type TranslationsResource
- type TranslationsService
- type TranslationsTranslateCall
- func (c *TranslationsTranslateCall) Context(ctx context.Context) *TranslationsTranslateCall
- func (c *TranslationsTranslateCall) Do(opts ...googleapi.CallOption) (*TranslationsListResponse, error)
- func (c *TranslationsTranslateCall) Fields(s ...googleapi.Field) *TranslationsTranslateCall
- func (c *TranslationsTranslateCall) Header() http.Header
Constants ¶
const ( // View and manage your data across Google Cloud Platform services CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" // Translate text from one language to another using Google Translate CloudTranslationScope = "https://www.googleapis.com/auth/cloud-translation" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DetectLanguageRequest ¶
type DetectLanguageRequest struct { // Q: The input text upon which to perform language detection. Repeat // this // parameter to perform language detection on multiple text inputs. Q []string `json:"q,omitempty"` // ForceSendFields is a list of field names (e.g. "Q") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Q") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
DetectLanguageRequest: The request message for language detection.
func (*DetectLanguageRequest) MarshalJSON ¶
func (s *DetectLanguageRequest) MarshalJSON() ([]byte, error)
type DetectionsDetectCall ¶
type DetectionsDetectCall struct {
// contains filtered or unexported fields
}
func (*DetectionsDetectCall) Context ¶
func (c *DetectionsDetectCall) Context(ctx context.Context) *DetectionsDetectCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*DetectionsDetectCall) Do ¶
func (c *DetectionsDetectCall) Do(opts ...googleapi.CallOption) (*DetectionsListResponse, error)
Do executes the "language.detections.detect" call. Exactly one of *DetectionsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *DetectionsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*DetectionsDetectCall) Fields ¶
func (c *DetectionsDetectCall) Fields(s ...googleapi.Field) *DetectionsDetectCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*DetectionsDetectCall) Header ¶
func (c *DetectionsDetectCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type DetectionsListCall ¶
type DetectionsListCall struct {
// contains filtered or unexported fields
}
func (*DetectionsListCall) Context ¶
func (c *DetectionsListCall) Context(ctx context.Context) *DetectionsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*DetectionsListCall) Do ¶
func (c *DetectionsListCall) Do(opts ...googleapi.CallOption) (*DetectionsListResponse, error)
Do executes the "language.detections.list" call. Exactly one of *DetectionsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *DetectionsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*DetectionsListCall) Fields ¶
func (c *DetectionsListCall) Fields(s ...googleapi.Field) *DetectionsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*DetectionsListCall) Header ¶
func (c *DetectionsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*DetectionsListCall) IfNoneMatch ¶
func (c *DetectionsListCall) IfNoneMatch(entityTag string) *DetectionsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type DetectionsListResponse ¶
type DetectionsListResponse struct { // Detections: A detections contains detection results of several text Detections [][]*DetectionsResourceItem `json:"detections,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Detections") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Detections") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
func (*DetectionsListResponse) MarshalJSON ¶
func (s *DetectionsListResponse) MarshalJSON() ([]byte, error)
type DetectionsResourceItem ¶
type DetectionsResourceItem struct { // Confidence: The confidence of the detection result of this language. Confidence float64 `json:"confidence,omitempty"` // IsReliable: A boolean to indicate is the language detection result // reliable. IsReliable bool `json:"isReliable,omitempty"` // Language: The language we detected. Language string `json:"language,omitempty"` // ForceSendFields is a list of field names (e.g. "Confidence") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Confidence") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
func (*DetectionsResourceItem) MarshalJSON ¶
func (s *DetectionsResourceItem) MarshalJSON() ([]byte, error)
func (*DetectionsResourceItem) UnmarshalJSON ¶
func (s *DetectionsResourceItem) UnmarshalJSON(data []byte) error
type DetectionsService ¶
type DetectionsService struct {
// contains filtered or unexported fields
}
func NewDetectionsService ¶
func NewDetectionsService(s *Service) *DetectionsService
func (*DetectionsService) Detect ¶
func (r *DetectionsService) Detect(detectlanguagerequest *DetectLanguageRequest) *DetectionsDetectCall
Detect: Detects the language of text within a request.
func (*DetectionsService) List ¶
func (r *DetectionsService) List(q []string) *DetectionsListCall
List: Detects the language of text within a request.
type GetSupportedLanguagesRequest ¶
type GetSupportedLanguagesRequest struct { // Target: The language to use to return localized, human readable names // of supported // languages. Target string `json:"target,omitempty"` // ForceSendFields is a list of field names (e.g. "Target") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Target") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
GetSupportedLanguagesRequest: The request message for discovering supported languages.
func (*GetSupportedLanguagesRequest) MarshalJSON ¶
func (s *GetSupportedLanguagesRequest) MarshalJSON() ([]byte, error)
type LanguagesListCall ¶
type LanguagesListCall struct {
// contains filtered or unexported fields
}
func (*LanguagesListCall) Context ¶
func (c *LanguagesListCall) Context(ctx context.Context) *LanguagesListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*LanguagesListCall) Do ¶
func (c *LanguagesListCall) Do(opts ...googleapi.CallOption) (*LanguagesListResponse, error)
Do executes the "language.languages.list" call. Exactly one of *LanguagesListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *LanguagesListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*LanguagesListCall) Fields ¶
func (c *LanguagesListCall) Fields(s ...googleapi.Field) *LanguagesListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*LanguagesListCall) Header ¶
func (c *LanguagesListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*LanguagesListCall) IfNoneMatch ¶
func (c *LanguagesListCall) IfNoneMatch(entityTag string) *LanguagesListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*LanguagesListCall) Model ¶
func (c *LanguagesListCall) Model(model string) *LanguagesListCall
Model sets the optional parameter "model": The model type for which supported languages should be returned.
func (*LanguagesListCall) Target ¶
func (c *LanguagesListCall) Target(target string) *LanguagesListCall
Target sets the optional parameter "target": The language to use to return localized, human readable names of supported languages.
type LanguagesListResponse ¶
type LanguagesListResponse struct { // Languages: 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. Languages []*LanguagesResource `json:"languages,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Languages") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Languages") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
func (*LanguagesListResponse) MarshalJSON ¶
func (s *LanguagesListResponse) MarshalJSON() ([]byte, error)
type LanguagesResource ¶
type LanguagesResource struct { // Language: Supported language code, generally consisting of its ISO // 639-1 // identifier. (E.g. 'en', 'ja'). In certain cases, BCP-47 codes // including // language + region identifiers are returned (e.g. 'zh-TW' and 'zh-CH') Language string `json:"language,omitempty"` // Name: Human readable name of the language localized to the target // language. Name string `json:"name,omitempty"` // ForceSendFields is a list of field names (e.g. "Language") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Language") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
func (*LanguagesResource) MarshalJSON ¶
func (s *LanguagesResource) MarshalJSON() ([]byte, error)
type LanguagesService ¶
type LanguagesService struct {
// contains filtered or unexported fields
}
func NewLanguagesService ¶
func NewLanguagesService(s *Service) *LanguagesService
func (*LanguagesService) List ¶
func (r *LanguagesService) List() *LanguagesListCall
List: Returns a list of supported languages for translation.
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Detections *DetectionsService Languages *LanguagesService Translations *TranslationsService // contains filtered or unexported fields }
type TranslateTextRequest ¶
type TranslateTextRequest struct { // Format: The format of the source text, in either HTML (default) or // plain-text. A // value of "html" indicates HTML and a value of "text" indicates // plain-text. Format string `json:"format,omitempty"` // Model: The `model` type requested for this translation. Valid values // are // listed in public documentation. Model string `json:"model,omitempty"` // Q: The input text to translate. Repeat this parameter to perform // translation // operations on multiple text inputs. Q []string `json:"q,omitempty"` // Source: The language of the source text, set to one of the language // codes listed in // Language Support. If the source language is not specified, the API // will // attempt to identify the source language automatically and return it // within // the response. Source string `json:"source,omitempty"` // Target: The language to use for translation of the input text, set to // one of the // language codes listed in Language Support. Target string `json:"target,omitempty"` // ForceSendFields is a list of field names (e.g. "Format") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Format") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
TranslateTextRequest: The main translation request message for the Cloud Translation API.
func (*TranslateTextRequest) MarshalJSON ¶
func (s *TranslateTextRequest) MarshalJSON() ([]byte, error)
type TranslationsListCall ¶
type TranslationsListCall struct {
// contains filtered or unexported fields
}
func (*TranslationsListCall) Cid ¶
func (c *TranslationsListCall) Cid(cid ...string) *TranslationsListCall
Cid sets the optional parameter "cid": The customization id for translate
func (*TranslationsListCall) Context ¶
func (c *TranslationsListCall) Context(ctx context.Context) *TranslationsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*TranslationsListCall) Do ¶
func (c *TranslationsListCall) Do(opts ...googleapi.CallOption) (*TranslationsListResponse, error)
Do executes the "language.translations.list" call. Exactly one of *TranslationsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *TranslationsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*TranslationsListCall) Fields ¶
func (c *TranslationsListCall) Fields(s ...googleapi.Field) *TranslationsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*TranslationsListCall) Format ¶
func (c *TranslationsListCall) Format(format string) *TranslationsListCall
Format sets the optional parameter "format": The format of the source text, in either HTML (default) or plain-text. A value of "html" indicates HTML and a value of "text" indicates plain-text.
Possible values:
"html" - Specifies the input is in HTML "text" - Specifies the input is in plain textual format
func (*TranslationsListCall) Header ¶
func (c *TranslationsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*TranslationsListCall) IfNoneMatch ¶
func (c *TranslationsListCall) IfNoneMatch(entityTag string) *TranslationsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*TranslationsListCall) Model ¶
func (c *TranslationsListCall) Model(model string) *TranslationsListCall
Model sets the optional parameter "model": The `model` type requested for this translation. Valid values are listed in public documentation.
func (*TranslationsListCall) Source ¶
func (c *TranslationsListCall) Source(source string) *TranslationsListCall
Source sets the optional parameter "source": The language of the source text, set to one of the language codes listed in Language Support. If the source language is not specified, the API will attempt to identify the source language automatically and return it within the response.
type TranslationsListResponse ¶
type TranslationsListResponse struct { // Translations: Translations contains list of translation results of // given text Translations []*TranslationsResource `json:"translations,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Translations") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Translations") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
TranslationsListResponse: The main language translation response message.
func (*TranslationsListResponse) MarshalJSON ¶
func (s *TranslationsListResponse) MarshalJSON() ([]byte, error)
type TranslationsResource ¶
type TranslationsResource struct { // DetectedSourceLanguage: The source language of the initial request, // detected automatically, if // no source language was passed within the initial request. If // the // source language was passed, auto-detection of the language will // not // occur and this field will be empty. DetectedSourceLanguage string `json:"detectedSourceLanguage,omitempty"` // Model: The `model` type used for this translation. Valid values // are // listed in public documentation. Can be different from requested // `model`. // Present only if specific model type was explicitly requested. Model string `json:"model,omitempty"` // TranslatedText: Text translated into the target language. TranslatedText string `json:"translatedText,omitempty"` // ForceSendFields is a list of field names (e.g. // "DetectedSourceLanguage") to unconditionally include in API requests. // By default, fields with empty values are omitted from API requests. // However, any non-pointer, non-interface field appearing in // ForceSendFields will be sent to the server regardless of whether the // field is empty or not. This may be used to include empty fields in // Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DetectedSourceLanguage") // to include in API requests with the JSON null value. By default, // fields with empty values are omitted from API requests. However, any // field with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
func (*TranslationsResource) MarshalJSON ¶
func (s *TranslationsResource) MarshalJSON() ([]byte, error)
type TranslationsService ¶
type TranslationsService struct {
// contains filtered or unexported fields
}
func NewTranslationsService ¶
func NewTranslationsService(s *Service) *TranslationsService
func (*TranslationsService) List ¶
func (r *TranslationsService) List(q []string, target string) *TranslationsListCall
List: Translates input text, returning translated text.
func (*TranslationsService) Translate ¶
func (r *TranslationsService) Translate(translatetextrequest *TranslateTextRequest) *TranslationsTranslateCall
Translate: Translates input text, returning translated text.
type TranslationsTranslateCall ¶
type TranslationsTranslateCall struct {
// contains filtered or unexported fields
}
func (*TranslationsTranslateCall) Context ¶
func (c *TranslationsTranslateCall) Context(ctx context.Context) *TranslationsTranslateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*TranslationsTranslateCall) Do ¶
func (c *TranslationsTranslateCall) Do(opts ...googleapi.CallOption) (*TranslationsListResponse, error)
Do executes the "language.translations.translate" call. Exactly one of *TranslationsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *TranslationsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*TranslationsTranslateCall) Fields ¶
func (c *TranslationsTranslateCall) Fields(s ...googleapi.Field) *TranslationsTranslateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*TranslationsTranslateCall) Header ¶
func (c *TranslationsTranslateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.