Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified ShoppingMerchantIssueResolution/metadata/V1/Issueresolution.php
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -76,24 +76,24 @@ final class AggregateProductStatusesServiceClient
private const CODEGEN_NAME = 'gapic';

/** The default scopes required by the service. */
public static $serviceScopes = [
'https://www.googleapis.com/auth/content',
];
public static $serviceScopes = ['https://www.googleapis.com/auth/content'];

private static function getClientDefaults()
{
return [
'serviceName' => self::SERVICE_NAME,
'apiEndpoint' => self::SERVICE_ADDRESS . ':' . self::DEFAULT_SERVICE_PORT,
'clientConfig' => __DIR__ . '/../resources/aggregate_product_statuses_service_client_config.json',
'descriptorsConfigPath' => __DIR__ . '/../resources/aggregate_product_statuses_service_descriptor_config.php',
'descriptorsConfigPath' =>
__DIR__ . '/../resources/aggregate_product_statuses_service_descriptor_config.php',
'gcpApiConfigPath' => __DIR__ . '/../resources/aggregate_product_statuses_service_grpc_config.json',
'credentialsConfig' => [
'defaultScopes' => self::$serviceScopes,
],
'transportConfig' => [
'rest' => [
'restClientConfigPath' => __DIR__ . '/../resources/aggregate_product_statuses_service_rest_client_config.php',
'restClientConfigPath' =>
__DIR__ . '/../resources/aggregate_product_statuses_service_rest_client_config.php',
],
],
];
Expand Down Expand Up @@ -250,8 +250,10 @@ public function __call($method, $args)
*
* @throws ApiException Thrown if the API call fails.
*/
public function listAggregateProductStatuses(ListAggregateProductStatusesRequest $request, array $callOptions = []): PagedListResponse
{
public function listAggregateProductStatuses(
ListAggregateProductStatusesRequest $request,
array $callOptions = []
): PagedListResponse {
return $this->startApiCall('ListAggregateProductStatuses', $request, $callOptions);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ final class IssueResolutionServiceClient
private const CODEGEN_NAME = 'gapic';

/** The default scopes required by the service. */
public static $serviceScopes = [
'https://www.googleapis.com/auth/content',
];
public static $serviceScopes = ['https://www.googleapis.com/auth/content'];

private static function getClientDefaults()
{
Expand Down Expand Up @@ -272,8 +270,10 @@ public function __call($method, $args)
*
* @throws ApiException Thrown if the API call fails.
*/
public function renderAccountIssues(RenderAccountIssuesRequest $request, array $callOptions = []): RenderAccountIssuesResponse
{
public function renderAccountIssues(
RenderAccountIssuesRequest $request,
array $callOptions = []
): RenderAccountIssuesResponse {
return $this->startApiCall('RenderAccountIssues', $request, $callOptions)->wait();
}

Expand Down Expand Up @@ -301,8 +301,10 @@ public function renderAccountIssues(RenderAccountIssuesRequest $request, array $
*
* @throws ApiException Thrown if the API call fails.
*/
public function renderProductIssues(RenderProductIssuesRequest $request, array $callOptions = []): RenderProductIssuesResponse
{
public function renderProductIssues(
RenderProductIssuesRequest $request,
array $callOptions = []
): RenderProductIssuesResponse {
return $this->startApiCall('RenderProductIssues', $request, $callOptions)->wait();
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading