# Copyright 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # NOTE: This file is auto generated by the elixir code generator program. # Do not edit this file manually. defmodule GoogleApi.Content.V21.Api.Merchantsupport do @moduledoc """ API calls for all endpoints tagged `Merchantsupport`. """ alias GoogleApi.Content.V21.Connection alias GoogleApi.Gax.{Request, Response} @library_version Mix.Project.config() |> Keyword.get(:version, "") @doc """ Provide a list of merchant's issues with a support content and available actions. This content and actions are meant to be rendered and shown in third-party applications. ## Parameters * `connection` (*type:* `GoogleApi.Content.V21.Connection.t`) - Connection to server * `merchant_id` (*type:* `String.t`) - Required. The ID of the account to fetch issues for. * `optional_params` (*type:* `keyword()`) - Optional parameters * `:"$.xgafv"` (*type:* `String.t`) - V1 error format. * `:access_token` (*type:* `String.t`) - OAuth access token. * `:alt` (*type:* `String.t`) - Data format for response. * `:callback` (*type:* `String.t`) - JSONP * `:fields` (*type:* `String.t`) - Selector specifying which fields to include in a partial response. * `:key` (*type:* `String.t`) - 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. * `:oauth_token` (*type:* `String.t`) - OAuth 2.0 token for the current user. * `:prettyPrint` (*type:* `boolean()`) - Returns response with indentations and line breaks. * `:quotaUser` (*type:* `String.t`) - 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. * `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart"). * `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart"). * `:languageCode` (*type:* `String.t`) - Optional. The [IETF BCP-47](https://tools.ietf.org/html/bcp47) language code used to localize support content. If not set, the result will be in default language `en-US`. * `:timeZone` (*type:* `String.t`) - Optional. The [IANA](https://www.iana.org/time-zones) timezone used to localize times in support content. For example 'America/Los_Angeles'. If not set, results will use as a default UTC. * `:body` (*type:* `GoogleApi.Content.V21.Model.RenderAccountIssuesRequestPayload.t`) - * `opts` (*type:* `keyword()`) - Call options ## Returns * `{:ok, %GoogleApi.Content.V21.Model.RenderAccountIssuesResponse{}}` on success * `{:error, info}` on failure """ @spec content_merchantsupport_renderaccountissues( Tesla.Env.client(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.Content.V21.Model.RenderAccountIssuesResponse.t()} | {:ok, Tesla.Env.t()} | {:ok, list()} | {:error, any()} def content_merchantsupport_renderaccountissues( connection, merchant_id, optional_params \\ [], opts \\ [] ) do optional_params_config = %{ :"$.xgafv" => :query, :access_token => :query, :alt => :query, :callback => :query, :fields => :query, :key => :query, :oauth_token => :query, :prettyPrint => :query, :quotaUser => :query, :uploadType => :query, :upload_protocol => :query, :languageCode => :query, :timeZone => :query, :body => :body } request = Request.new() |> Request.method(:post) |> Request.url("/{merchantId}/merchantsupport/renderaccountissues", %{ "merchantId" => URI.encode(merchant_id, &URI.char_unreserved?/1) }) |> Request.add_optional_params(optional_params_config, optional_params) |> Request.library_version(@library_version) connection |> Connection.execute(request) |> Response.decode( opts ++ [struct: %GoogleApi.Content.V21.Model.RenderAccountIssuesResponse{}] ) end @doc """ Provide a list of issues for merchant's product with a support content and available actions. This content and actions are meant to be rendered and shown in third-party applications. ## Parameters * `connection` (*type:* `GoogleApi.Content.V21.Connection.t`) - Connection to server * `merchant_id` (*type:* `String.t`) - Required. The ID of the account that contains the product. * `product_id` (*type:* `String.t`) - Required. The [REST_ID](https://developers.google.com/shopping-content/reference/rest/v2.1/products#Product.FIELDS.id) of the product to fetch issues for. * `optional_params` (*type:* `keyword()`) - Optional parameters * `:"$.xgafv"` (*type:* `String.t`) - V1 error format. * `:access_token` (*type:* `String.t`) - OAuth access token. * `:alt` (*type:* `String.t`) - Data format for response. * `:callback` (*type:* `String.t`) - JSONP * `:fields` (*type:* `String.t`) - Selector specifying which fields to include in a partial response. * `:key` (*type:* `String.t`) - 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. * `:oauth_token` (*type:* `String.t`) - OAuth 2.0 token for the current user. * `:prettyPrint` (*type:* `boolean()`) - Returns response with indentations and line breaks. * `:quotaUser` (*type:* `String.t`) - 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. * `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart"). * `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart"). * `:languageCode` (*type:* `String.t`) - Optional. The [IETF BCP-47](https://tools.ietf.org/html/bcp47) language code used to localize support content. If not set, the result will be in default language `en-US`. * `:timeZone` (*type:* `String.t`) - Optional. The [IANA](https://www.iana.org/time-zones) timezone used to localize times in support content. For example 'America/Los_Angeles'. If not set, results will use as a default UTC. * `:body` (*type:* `GoogleApi.Content.V21.Model.RenderProductIssuesRequestPayload.t`) - * `opts` (*type:* `keyword()`) - Call options ## Returns * `{:ok, %GoogleApi.Content.V21.Model.RenderProductIssuesResponse{}}` on success * `{:error, info}` on failure """ @spec content_merchantsupport_renderproductissues( Tesla.Env.client(), String.t(), String.t(), keyword(), keyword() ) :: {:ok, GoogleApi.Content.V21.Model.RenderProductIssuesResponse.t()} | {:ok, Tesla.Env.t()} | {:ok, list()} | {:error, any()} def content_merchantsupport_renderproductissues( connection, merchant_id, product_id, optional_params \\ [], opts \\ [] ) do optional_params_config = %{ :"$.xgafv" => :query, :access_token => :query, :alt => :query, :callback => :query, :fields => :query, :key => :query, :oauth_token => :query, :prettyPrint => :query, :quotaUser => :query, :uploadType => :query, :upload_protocol => :query, :languageCode => :query, :timeZone => :query, :body => :body } request = Request.new() |> Request.method(:post) |> Request.url("/{merchantId}/merchantsupport/renderproductissues/{productId}", %{ "merchantId" => URI.encode(merchant_id, &URI.char_unreserved?/1), "productId" => URI.encode(product_id, &(URI.char_unreserved?(&1) || &1 == ?/)) }) |> Request.add_optional_params(optional_params_config, optional_params) |> Request.library_version(@library_version) connection |> Connection.execute(request) |> Response.decode( opts ++ [struct: %GoogleApi.Content.V21.Model.RenderProductIssuesResponse{}] ) end end