google-shopping-merchant-issue_resolution-v1beta 0.a → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +122 -0
  4. data/README.md +154 -8
  5. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/client.rb +692 -0
  6. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/credentials.rb +49 -0
  7. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/paths.rb +66 -0
  8. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest/client.rb +645 -0
  9. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest/service_stub.rb +269 -0
  10. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest.rb +55 -0
  11. data/lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service.rb +58 -0
  12. data/lib/google/shopping/merchant/issue_resolution/v1beta/rest.rb +39 -0
  13. data/lib/google/shopping/merchant/issue_resolution/v1beta/version.rb +7 -2
  14. data/lib/google/shopping/merchant/issue_resolution/v1beta.rb +47 -0
  15. data/lib/google/shopping/merchant/issueresolution/v1beta/issueresolution_pb.rb +87 -0
  16. data/lib/google/shopping/merchant/issueresolution/v1beta/issueresolution_services_pb.rb +66 -0
  17. data/lib/google-shopping-merchant-issue_resolution-v1beta.rb +21 -0
  18. data/proto_docs/README.md +4 -0
  19. data/proto_docs/google/api/client.rb +473 -0
  20. data/proto_docs/google/api/field_behavior.rb +85 -0
  21. data/proto_docs/google/api/launch_stage.rb +71 -0
  22. data/proto_docs/google/api/resource.rb +227 -0
  23. data/proto_docs/google/protobuf/duration.rb +98 -0
  24. data/proto_docs/google/shopping/merchant/issueresolution/v1beta/issueresolution.rb +954 -0
  25. metadata +69 -9
@@ -0,0 +1,269 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/shopping/merchant/issueresolution/v1beta/issueresolution_pb"
20
+
21
+ module Google
22
+ module Shopping
23
+ module Merchant
24
+ module IssueResolution
25
+ module V1beta
26
+ module IssueResolutionService
27
+ module Rest
28
+ ##
29
+ # REST service stub for the IssueResolutionService service.
30
+ # Service stub contains baseline method implementations
31
+ # including transcoding, making the REST call, and deserialing the response.
32
+ #
33
+ class ServiceStub
34
+ # @private
35
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
36
+ # These require statements are intentionally placed here to initialize
37
+ # the REST modules only when it's required.
38
+ require "gapic/rest"
39
+
40
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
41
+ endpoint_template: endpoint_template,
42
+ universe_domain: universe_domain,
43
+ credentials: credentials,
44
+ numeric_enums: true,
45
+ service_name: self.class,
46
+ raise_faraday_errors: false,
47
+ logger: logger
48
+ end
49
+
50
+ ##
51
+ # The effective universe domain
52
+ #
53
+ # @return [String]
54
+ #
55
+ def universe_domain
56
+ @client_stub.universe_domain
57
+ end
58
+
59
+ ##
60
+ # The effective endpoint
61
+ #
62
+ # @return [String]
63
+ #
64
+ def endpoint
65
+ @client_stub.endpoint
66
+ end
67
+
68
+ ##
69
+ # The logger used for request/response debug logging.
70
+ #
71
+ # @return [Logger]
72
+ #
73
+ def logger stub: false
74
+ stub ? @client_stub.stub_logger : @client_stub.logger
75
+ end
76
+
77
+ ##
78
+ # Baseline implementation for the render_account_issues REST call
79
+ #
80
+ # @param request_pb [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderAccountIssuesRequest]
81
+ # A request object representing the call parameters. Required.
82
+ # @param options [::Gapic::CallOptions]
83
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
84
+ #
85
+ # @yield [result, operation] Access the result along with the TransportOperation object
86
+ # @yieldparam result [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderAccountIssuesResponse]
87
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
88
+ #
89
+ # @return [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderAccountIssuesResponse]
90
+ # A result object deserialized from the server's reply
91
+ def render_account_issues request_pb, options = nil
92
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
93
+
94
+ verb, uri, query_string_params, body = ServiceStub.transcode_render_account_issues_request request_pb
95
+ query_string_params = if query_string_params.any?
96
+ query_string_params.to_h { |p| p.split "=", 2 }
97
+ else
98
+ {}
99
+ end
100
+
101
+ response = @client_stub.make_http_request(
102
+ verb,
103
+ uri: uri,
104
+ body: body || "",
105
+ params: query_string_params,
106
+ method_name: "render_account_issues",
107
+ options: options
108
+ )
109
+ operation = ::Gapic::Rest::TransportOperation.new response
110
+ result = ::Google::Shopping::Merchant::IssueResolution::V1beta::RenderAccountIssuesResponse.decode_json response.body, ignore_unknown_fields: true
111
+ catch :response do
112
+ yield result, operation if block_given?
113
+ result
114
+ end
115
+ end
116
+
117
+ ##
118
+ # Baseline implementation for the render_product_issues REST call
119
+ #
120
+ # @param request_pb [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderProductIssuesRequest]
121
+ # A request object representing the call parameters. Required.
122
+ # @param options [::Gapic::CallOptions]
123
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
124
+ #
125
+ # @yield [result, operation] Access the result along with the TransportOperation object
126
+ # @yieldparam result [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderProductIssuesResponse]
127
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
128
+ #
129
+ # @return [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderProductIssuesResponse]
130
+ # A result object deserialized from the server's reply
131
+ def render_product_issues request_pb, options = nil
132
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
133
+
134
+ verb, uri, query_string_params, body = ServiceStub.transcode_render_product_issues_request request_pb
135
+ query_string_params = if query_string_params.any?
136
+ query_string_params.to_h { |p| p.split "=", 2 }
137
+ else
138
+ {}
139
+ end
140
+
141
+ response = @client_stub.make_http_request(
142
+ verb,
143
+ uri: uri,
144
+ body: body || "",
145
+ params: query_string_params,
146
+ method_name: "render_product_issues",
147
+ options: options
148
+ )
149
+ operation = ::Gapic::Rest::TransportOperation.new response
150
+ result = ::Google::Shopping::Merchant::IssueResolution::V1beta::RenderProductIssuesResponse.decode_json response.body, ignore_unknown_fields: true
151
+ catch :response do
152
+ yield result, operation if block_given?
153
+ result
154
+ end
155
+ end
156
+
157
+ ##
158
+ # Baseline implementation for the trigger_action REST call
159
+ #
160
+ # @param request_pb [::Google::Shopping::Merchant::IssueResolution::V1beta::TriggerActionRequest]
161
+ # A request object representing the call parameters. Required.
162
+ # @param options [::Gapic::CallOptions]
163
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
164
+ #
165
+ # @yield [result, operation] Access the result along with the TransportOperation object
166
+ # @yieldparam result [::Google::Shopping::Merchant::IssueResolution::V1beta::TriggerActionResponse]
167
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
168
+ #
169
+ # @return [::Google::Shopping::Merchant::IssueResolution::V1beta::TriggerActionResponse]
170
+ # A result object deserialized from the server's reply
171
+ def trigger_action request_pb, options = nil
172
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
173
+
174
+ verb, uri, query_string_params, body = ServiceStub.transcode_trigger_action_request request_pb
175
+ query_string_params = if query_string_params.any?
176
+ query_string_params.to_h { |p| p.split "=", 2 }
177
+ else
178
+ {}
179
+ end
180
+
181
+ response = @client_stub.make_http_request(
182
+ verb,
183
+ uri: uri,
184
+ body: body || "",
185
+ params: query_string_params,
186
+ method_name: "trigger_action",
187
+ options: options
188
+ )
189
+ operation = ::Gapic::Rest::TransportOperation.new response
190
+ result = ::Google::Shopping::Merchant::IssueResolution::V1beta::TriggerActionResponse.decode_json response.body, ignore_unknown_fields: true
191
+ catch :response do
192
+ yield result, operation if block_given?
193
+ result
194
+ end
195
+ end
196
+
197
+ ##
198
+ # @private
199
+ #
200
+ # GRPC transcoding helper method for the render_account_issues REST call
201
+ #
202
+ # @param request_pb [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderAccountIssuesRequest]
203
+ # A request object representing the call parameters. Required.
204
+ # @return [Array(String, [String, nil], Hash{String => String})]
205
+ # Uri, Body, Query string parameters
206
+ def self.transcode_render_account_issues_request request_pb
207
+ transcoder = Gapic::Rest::GrpcTranscoder.new
208
+ .with_bindings(
209
+ uri_method: :post,
210
+ uri_template: "/issueresolution/v1beta/{name}:renderaccountissues",
211
+ body: "payload",
212
+ matches: [
213
+ ["name", %r{^accounts/[^/]+/?$}, false]
214
+ ]
215
+ )
216
+ transcoder.transcode request_pb
217
+ end
218
+
219
+ ##
220
+ # @private
221
+ #
222
+ # GRPC transcoding helper method for the render_product_issues REST call
223
+ #
224
+ # @param request_pb [::Google::Shopping::Merchant::IssueResolution::V1beta::RenderProductIssuesRequest]
225
+ # A request object representing the call parameters. Required.
226
+ # @return [Array(String, [String, nil], Hash{String => String})]
227
+ # Uri, Body, Query string parameters
228
+ def self.transcode_render_product_issues_request request_pb
229
+ transcoder = Gapic::Rest::GrpcTranscoder.new
230
+ .with_bindings(
231
+ uri_method: :post,
232
+ uri_template: "/issueresolution/v1beta/{name}:renderproductissues",
233
+ body: "payload",
234
+ matches: [
235
+ ["name", %r{^accounts/[^/]+/products/[^/]+/?$}, false]
236
+ ]
237
+ )
238
+ transcoder.transcode request_pb
239
+ end
240
+
241
+ ##
242
+ # @private
243
+ #
244
+ # GRPC transcoding helper method for the trigger_action REST call
245
+ #
246
+ # @param request_pb [::Google::Shopping::Merchant::IssueResolution::V1beta::TriggerActionRequest]
247
+ # A request object representing the call parameters. Required.
248
+ # @return [Array(String, [String, nil], Hash{String => String})]
249
+ # Uri, Body, Query string parameters
250
+ def self.transcode_trigger_action_request request_pb
251
+ transcoder = Gapic::Rest::GrpcTranscoder.new
252
+ .with_bindings(
253
+ uri_method: :post,
254
+ uri_template: "/issueresolution/v1beta/{name}:triggeraction",
255
+ body: "payload",
256
+ matches: [
257
+ ["name", %r{^accounts/[^/]+/?$}, false]
258
+ ]
259
+ )
260
+ transcoder.transcode request_pb
261
+ end
262
+ end
263
+ end
264
+ end
265
+ end
266
+ end
267
+ end
268
+ end
269
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/rest"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/shopping/merchant/issue_resolution/v1beta/version"
24
+
25
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/credentials"
26
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/paths"
27
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest/client"
28
+
29
+ module Google
30
+ module Shopping
31
+ module Merchant
32
+ module IssueResolution
33
+ module V1beta
34
+ ##
35
+ # Service to provide an issue resolution content for account issues and product
36
+ # issues.
37
+ #
38
+ # To load this service and instantiate a REST client:
39
+ #
40
+ # require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest"
41
+ # client = ::Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Rest::Client.new
42
+ #
43
+ module IssueResolutionService
44
+ # Client for the REST transport
45
+ module Rest
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
53
+
54
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
55
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest/helpers" if ::File.file? helper_path
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/common"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/shopping/merchant/issue_resolution/v1beta/version"
24
+
25
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/credentials"
26
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/paths"
27
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/client"
28
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest"
29
+
30
+ module Google
31
+ module Shopping
32
+ module Merchant
33
+ module IssueResolution
34
+ module V1beta
35
+ ##
36
+ # Service to provide an issue resolution content for account issues and product
37
+ # issues.
38
+ #
39
+ # @example Load this service and instantiate a gRPC client
40
+ #
41
+ # require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service"
42
+ # client = ::Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Client.new
43
+ #
44
+ # @example Load this service and instantiate a REST client
45
+ #
46
+ # require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest"
47
+ # client = ::Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Rest::Client.new
48
+ #
49
+ module IssueResolutionService
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
56
+
57
+ helper_path = ::File.join __dir__, "issue_resolution_service", "helpers.rb"
58
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/helpers" if ::File.file? helper_path
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/rest"
20
+ require "google/shopping/merchant/issue_resolution/v1beta/version"
21
+
22
+ module Google
23
+ module Shopping
24
+ module Merchant
25
+ module IssueResolution
26
+ ##
27
+ # To load just the REST part of this package, including all its services, and instantiate a REST client:
28
+ #
29
+ # @example
30
+ #
31
+ # require "google/shopping/merchant/issue_resolution/v1beta/rest"
32
+ # client = ::Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Rest::Client.new
33
+ #
34
+ module V1beta
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -1,10 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright 2025 Google LLC
2
4
  #
3
5
  # Licensed under the Apache License, Version 2.0 (the "License");
4
6
  # you may not use this file except in compliance with the License.
5
7
  # You may obtain a copy of the License at
6
8
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # https://www.apache.org/licenses/LICENSE-2.0
8
10
  #
9
11
  # Unless required by applicable law or agreed to in writing, software
10
12
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -12,12 +14,15 @@
12
14
  # See the License for the specific language governing permissions and
13
15
  # limitations under the License.
14
16
 
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
15
20
  module Google
16
21
  module Shopping
17
22
  module Merchant
18
23
  module IssueResolution
19
24
  module V1beta
20
- VERSION = "0.a"
25
+ VERSION = "0.1.0"
21
26
  end
22
27
  end
23
28
  end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service"
20
+ require "google/shopping/merchant/issue_resolution/v1beta/version"
21
+
22
+ module Google
23
+ module Shopping
24
+ module Merchant
25
+ module IssueResolution
26
+ ##
27
+ # API client module.
28
+ #
29
+ # @example Load this package, including all its services, and instantiate a gRPC client
30
+ #
31
+ # require "google/shopping/merchant/issue_resolution/v1beta"
32
+ # client = ::Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Client.new
33
+ #
34
+ # @example Load this package, including all its services, and instantiate a REST client
35
+ #
36
+ # require "google/shopping/merchant/issue_resolution/v1beta"
37
+ # client = ::Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Rest::Client.new
38
+ #
39
+ module V1beta
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+
46
+ helper_path = ::File.join __dir__, "v1beta", "_helpers.rb"
47
+ require "google/shopping/merchant/issue_resolution/v1beta/_helpers" if ::File.file? helper_path
@@ -0,0 +1,87 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: google/shopping/merchant/issueresolution/v1beta/issueresolution.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'google/api/annotations_pb'
8
+ require 'google/api/client_pb'
9
+ require 'google/api/field_behavior_pb'
10
+ require 'google/api/resource_pb'
11
+
12
+
13
+ descriptor_data = "\nEgoogle/shopping/merchant/issueresolution/v1beta/issueresolution.proto\x12/google.shopping.merchant.issueresolution.v1beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"v\n\x1bRenderAccountIssuesResponse\x12W\n\x0frendered_issues\x18\x01 \x03(\x0b\x32>.google.shopping.merchant.issueresolution.v1beta.RenderedIssue\"\xed\x01\n\x1aRenderAccountIssuesRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"merchantapi.googleapis.com/Account\x12\x1a\n\rlanguage_code\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\ttime_zone\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x61\n\x07payload\x18\x04 \x01(\x0b\x32K.google.shopping.merchant.issueresolution.v1beta.RenderIssuesRequestPayloadB\x03\xe0\x41\x01\"\xab\x02\n\x1aRenderIssuesRequestPayload\x12`\n\x0e\x63ontent_option\x18\x01 \x01(\x0e\x32>.google.shopping.merchant.issueresolution.v1beta.ContentOptionB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12{\n\x18user_input_action_option\x18\x02 \x01(\x0e\x32O.google.shopping.merchant.issueresolution.v1beta.UserInputActionRenderingOptionB\x03\xe0\x41\x01H\x01\x88\x01\x01\x42\x11\n\x0f_content_optionB\x1b\n\x19_user_input_action_option\"v\n\x1bRenderProductIssuesResponse\x12W\n\x0frendered_issues\x18\x01 \x03(\x0b\x32>.google.shopping.merchant.issueresolution.v1beta.RenderedIssue\"\xed\x01\n\x1aRenderProductIssuesRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"merchantapi.googleapis.com/Product\x12\x1a\n\rlanguage_code\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\ttime_zone\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x61\n\x07payload\x18\x04 \x01(\x0b\x32K.google.shopping.merchant.issueresolution.v1beta.RenderIssuesRequestPayloadB\x03\xe0\x41\x01\"\xb5\x02\n\rRenderedIssue\x12\x1d\n\x13prerendered_content\x18\x03 \x01(\tH\x00\x12\x35\n+prerendered_out_of_court_dispute_settlement\x18\x05 \x01(\tH\x01\x12\r\n\x05title\x18\x01 \x01(\t\x12G\n\x06impact\x18\x02 \x01(\x0b\x32\x37.google.shopping.merchant.issueresolution.v1beta.Impact\x12H\n\x07\x61\x63tions\x18\x04 \x03(\x0b\x32\x37.google.shopping.merchant.issueresolution.v1beta.ActionB\t\n\x07\x63ontentB!\n\x1fout_of_court_dispute_settlement\"\xbb\x01\n\x06Impact\x12\x14\n\x07message\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12K\n\x08severity\x18\x02 \x01(\x0e\x32\x39.google.shopping.merchant.issueresolution.v1beta.Severity\x12N\n\nbreakdowns\x18\x03 \x03(\x0b\x32:.google.shopping.merchant.issueresolution.v1beta.Breakdown\"\x96\x01\n\tBreakdown\x12R\n\x07regions\x18\x01 \x03(\x0b\x32\x41.google.shopping.merchant.issueresolution.v1beta.Breakdown.Region\x12\x0f\n\x07\x64\x65tails\x18\x04 \x03(\t\x1a$\n\x06Region\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xda\x04\n\x06\x41\x63tion\x12\x65\n\x15\x62uiltin_simple_action\x18\x02 \x01(\x0b\x32\x44.google.shopping.merchant.issueresolution.v1beta.BuiltInSimpleActionH\x00\x12Z\n\x0f\x65xternal_action\x18\x03 \x01(\x0b\x32?.google.shopping.merchant.issueresolution.v1beta.ExternalActionH\x00\x12l\n\x19\x62uiltin_user_input_action\x18\x07 \x01(\x0b\x32G.google.shopping.merchant.issueresolution.v1beta.BuiltInUserInputActionH\x00\x12\x14\n\x0c\x62utton_label\x18\x04 \x01(\t\x12\x14\n\x0cis_available\x18\x05 \x01(\x08\x12O\n\x07reasons\x18\x06 \x03(\x0b\x32>.google.shopping.merchant.issueresolution.v1beta.Action.Reason\x1a\x97\x01\n\x06Reason\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x13\n\x06\x64\x65tail\x18\x02 \x01(\tH\x00\x88\x01\x01\x12Q\n\x06\x61\x63tion\x18\x03 \x01(\x0b\x32\x37.google.shopping.merchant.issueresolution.v1beta.ActionB\x03\xe0\x41\x01H\x01\x88\x01\x01\x42\t\n\x07_detailB\t\n\x07_actionB\x08\n\x06\x61\x63tion\"\x98\x05\n\x13\x42uiltInSimpleAction\x12j\n\x04type\x18\x01 \x01(\x0e\x32\\.google.shopping.merchant.issueresolution.v1beta.BuiltInSimpleAction.BuiltInSimpleActionType\x12\x1b\n\x0e\x61ttribute_code\x18\x02 \x01(\tH\x00\x88\x01\x01\x12w\n\x12\x61\x64\x64itional_content\x18\x03 \x01(\x0b\x32V.google.shopping.merchant.issueresolution.v1beta.BuiltInSimpleAction.AdditionalContentH\x01\x88\x01\x01\x1a\x36\n\x11\x41\x64\x64itionalContent\x12\r\n\x05title\x18\x01 \x01(\t\x12\x12\n\nparagraphs\x18\x02 \x03(\t\"\x9c\x02\n\x17\x42uiltInSimpleActionType\x12+\n\'BUILT_IN_SIMPLE_ACTION_TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cVERIFY_PHONE\x10\x01\x12\x11\n\rCLAIM_WEBSITE\x10\x02\x12\x10\n\x0c\x41\x44\x44_PRODUCTS\x10\x03\x12\x14\n\x10\x41\x44\x44_CONTACT_INFO\x10\x04\x12\x14\n\x10LINK_ADS_ACCOUNT\x10\x05\x12$\n ADD_BUSINESS_REGISTRATION_NUMBER\x10\x06\x12\x17\n\x13\x45\x44IT_ITEM_ATTRIBUTE\x10\x07\x12\x15\n\x11\x46IX_ACCOUNT_ISSUE\x10\x08\x12\x1b\n\x17SHOW_ADDITIONAL_CONTENT\x10\tB\x11\n\x0f_attribute_codeB\x15\n\x13_additional_content\"|\n\x16\x42uiltInUserInputAction\x12\x16\n\x0e\x61\x63tion_context\x18\x01 \x01(\t\x12J\n\x05\x66lows\x18\x03 \x03(\x0b\x32;.google.shopping.merchant.issueresolution.v1beta.ActionFlow\"\x83\x03\n\nActionFlow\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\x12K\n\x06inputs\x18\x03 \x03(\x0b\x32;.google.shopping.merchant.issueresolution.v1beta.InputField\x12\x14\n\x0c\x64ialog_title\x18\x04 \x01(\t\x12]\n\x0e\x64ialog_message\x18\x07 \x01(\x0b\x32@.google.shopping.merchant.issueresolution.v1beta.TextWithTooltipH\x00\x88\x01\x01\x12U\n\x0e\x64ialog_callout\x18\x08 \x01(\x0b\x32\x38.google.shopping.merchant.issueresolution.v1beta.CalloutH\x01\x88\x01\x01\x12\x1b\n\x13\x64ialog_button_label\x18\t \x01(\tB\x11\n\x0f_dialog_messageB\x11\n\x0f_dialog_callout\"\xb6\t\n\nInputField\x12[\n\ntext_input\x18\x04 \x01(\x0b\x32\x45.google.shopping.merchant.issueresolution.v1beta.InputField.TextInputH\x00\x12_\n\x0c\x63hoice_input\x18\x05 \x01(\x0b\x32G.google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInputH\x00\x12\x63\n\x0e\x63heckbox_input\x18\x06 \x01(\x0b\x32I.google.shopping.merchant.issueresolution.v1beta.InputField.CheckboxInputH\x00\x12\n\n\x02id\x18\x01 \x01(\t\x12O\n\x05label\x18\x02 \x01(\x0b\x32@.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip\x12\x10\n\x08required\x18\x03 \x01(\x08\x1a\x95\x03\n\tTextInput\x12\x61\n\x04type\x18\x01 \x01(\x0e\x32S.google.shopping.merchant.issueresolution.v1beta.InputField.TextInput.TextInputType\x12^\n\x0f\x61\x64\x64itional_info\x18\x02 \x01(\x0b\x32@.google.shopping.merchant.issueresolution.v1beta.TextWithTooltipH\x00\x88\x01\x01\x12\x18\n\x0b\x66ormat_info\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x17\n\naria_label\x18\x04 \x01(\tH\x02\x88\x01\x01\"_\n\rTextInputType\x12\x1f\n\x1bTEXT_INPUT_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12GENERIC_SHORT_TEXT\x10\x01\x12\x15\n\x11GENERIC_LONG_TEXT\x10\x02\x42\x12\n\x10_additional_infoB\x0e\n\x0c_format_infoB\r\n\x0b_aria_label\x1a\xdd\x02\n\x0b\x43hoiceInput\x12j\n\x07options\x18\x01 \x03(\x0b\x32Y.google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInput.ChoiceInputOption\x1a\xe1\x01\n\x11\x43hoiceInputOption\x12\n\n\x02id\x18\x01 \x01(\t\x12O\n\x05label\x18\x02 \x01(\x0b\x32@.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip\x12Z\n\x10\x61\x64\x64itional_input\x18\x03 \x01(\x0b\x32;.google.shopping.merchant.issueresolution.v1beta.InputFieldH\x00\x88\x01\x01\x42\x13\n\x11_additional_input\x1a\x0f\n\rCheckboxInputB\r\n\x0bvalue_input\"\xa2\x02\n\x0fTextWithTooltip\x12\x16\n\x0csimple_value\x18\x01 \x01(\tH\x00\x12\x1e\n\x14simple_tooltip_value\x18\x02 \x01(\tH\x01\x12m\n\x12tooltip_icon_style\x18\x03 \x01(\x0e\x32Q.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip.TooltipIconStyle\"N\n\x10TooltipIconStyle\x12\"\n\x1eTOOLTIP_ICON_STYLE_UNSPECIFIED\x10\x00\x12\x08\n\x04INFO\x10\x01\x12\x0c\n\x08QUESTION\x10\x02\x42\x07\n\x05valueB\x0f\n\rtooltip_value\"\x9a\x02\n\x07\x43\x61llout\x12]\n\nstyle_hint\x18\x01 \x01(\x0e\x32I.google.shopping.merchant.issueresolution.v1beta.Callout.CalloutStyleHint\x12V\n\x0c\x66ull_message\x18\x03 \x01(\x0b\x32@.google.shopping.merchant.issueresolution.v1beta.TextWithTooltip\"X\n\x10\x43\x61lloutStyleHint\x12\"\n\x1e\x43\x41LLOUT_STYLE_HINT_UNSPECIFIED\x10\x00\x12\t\n\x05\x45RROR\x10\x01\x12\x0b\n\x07WARNING\x10\x02\x12\x08\n\x04INFO\x10\x03\"\xdf\x02\n\x0e\x45xternalAction\x12`\n\x04type\x18\x01 \x01(\x0e\x32R.google.shopping.merchant.issueresolution.v1beta.ExternalAction.ExternalActionType\x12\x0b\n\x03uri\x18\x02 \x01(\t\"\xdd\x01\n\x12\x45xternalActionType\x12$\n EXTERNAL_ACTION_TYPE_UNSPECIFIED\x10\x00\x12+\n\'REVIEW_PRODUCT_ISSUE_IN_MERCHANT_CENTER\x10\x01\x12+\n\'REVIEW_ACCOUNT_ISSUE_IN_MERCHANT_CENTER\x10\x02\x12\x1f\n\x1bLEGAL_APPEAL_IN_HELP_CENTER\x10\x03\x12&\n\"VERIFY_IDENTITY_IN_MERCHANT_CENTER\x10\x04\"\xc9\x01\n\x14TriggerActionRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"merchantapi.googleapis.com/Account\x12[\n\x07payload\x18\x02 \x01(\x0b\x32\x45.google.shopping.merchant.issueresolution.v1beta.TriggerActionPayloadB\x03\xe0\x41\x02\x12\x1a\n\rlanguage_code\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x8c\x01\n\x14TriggerActionPayload\x12\x1b\n\x0e\x61\x63tion_context\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12W\n\x0c\x61\x63tion_input\x18\x02 \x01(\x0b\x32<.google.shopping.merchant.issueresolution.v1beta.ActionInputB\x03\xe0\x41\x02\"(\n\x15TriggerActionResponse\x12\x0f\n\x07message\x18\x01 \x01(\t\"\x82\x01\n\x0b\x41\x63tionInput\x12\x1b\n\x0e\x61\x63tion_flow_id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12V\n\x0cinput_values\x18\x02 \x03(\x0b\x32;.google.shopping.merchant.issueresolution.v1beta.InputValueB\x03\xe0\x41\x02\"\xff\x03\n\nInputValue\x12\x66\n\x10text_input_value\x18\x02 \x01(\x0b\x32J.google.shopping.merchant.issueresolution.v1beta.InputValue.TextInputValueH\x00\x12j\n\x12\x63hoice_input_value\x18\x03 \x01(\x0b\x32L.google.shopping.merchant.issueresolution.v1beta.InputValue.ChoiceInputValueH\x00\x12n\n\x14\x63heckbox_input_value\x18\x04 \x01(\x0b\x32N.google.shopping.merchant.issueresolution.v1beta.InputValue.CheckboxInputValueH\x00\x12\x1b\n\x0einput_field_id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a$\n\x0eTextInputValue\x12\x12\n\x05value\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a\x37\n\x10\x43hoiceInputValue\x12#\n\x16\x63hoice_input_option_id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a(\n\x12\x43heckboxInputValue\x12\x12\n\x05value\x18\x01 \x01(\x08\x42\x03\xe0\x41\x02\x42\x07\n\x05value*F\n\x08Severity\x12\x18\n\x14SEVERITY_UNSPECIFIED\x10\x00\x12\t\n\x05\x45RROR\x10\x01\x12\x0b\n\x07WARNING\x10\x02\x12\x08\n\x04INFO\x10\x03*F\n\rContentOption\x12\x1e\n\x1a\x43ONTENT_OPTION_UNSPECIFIED\x10\x00\x12\x15\n\x11PRE_RENDERED_HTML\x10\x01*\x96\x01\n\x1eUserInputActionRenderingOption\x12\x32\n.USER_INPUT_ACTION_RENDERING_OPTION_UNSPECIFIED\x10\x00\x12\x1f\n\x1bREDIRECT_TO_MERCHANT_CENTER\x10\x01\x12\x1f\n\x1b\x42UILT_IN_USER_INPUT_ACTIONS\x10\x02\x32\xf2\x06\n\x16IssueResolutionService\x12\x87\x02\n\x13RenderAccountIssues\x12K.google.shopping.merchant.issueresolution.v1beta.RenderAccountIssuesRequest\x1aL.google.shopping.merchant.issueresolution.v1beta.RenderAccountIssuesResponse\"U\xda\x41\x04name\x82\xd3\xe4\x93\x02H\"=/issueresolution/v1beta/{name=accounts/*}:renderaccountissues:\x07payload\x12\x92\x02\n\x13RenderProductIssues\x12K.google.shopping.merchant.issueresolution.v1beta.RenderProductIssuesRequest\x1aL.google.shopping.merchant.issueresolution.v1beta.RenderProductIssuesResponse\"`\xda\x41\x04name\x82\xd3\xe4\x93\x02S\"H/issueresolution/v1beta/{name=accounts/*/products/*}:renderproductissues:\x07payload\x12\xef\x01\n\rTriggerAction\x12\x45.google.shopping.merchant.issueresolution.v1beta.TriggerActionRequest\x1a\x46.google.shopping.merchant.issueresolution.v1beta.TriggerActionResponse\"O\xda\x41\x04name\x82\xd3\xe4\x93\x02\x42\"7/issueresolution/v1beta/{name=accounts/*}:triggeraction:\x07payload\x1aG\xca\x41\x1amerchantapi.googleapis.com\xd2\x41\'https://www.googleapis.com/auth/contentB\xd5\x03\n3com.google.shopping.merchant.issueresolution.v1betaB\x14IssueResolutionProtoP\x01Zccloud.google.com/go/shopping/merchant/issueresolution/apiv1beta/issueresolutionpb;issueresolutionpb\xaa\x02/Google.Shopping.Merchant.IssueResolution.V1Beta\xca\x02/Google\\Shopping\\Merchant\\IssueResolution\\V1beta\xea\x02\x33Google::Shopping::Merchant::IssueResolution::V1beta\xea\x41\x38\n\"merchantapi.googleapis.com/Account\x12\x12\x61\x63\x63ounts/{account}\xea\x41K\n\"merchantapi.googleapis.com/Product\x12%accounts/{account}/products/{product}b\x06proto3"
14
+
15
+ pool = Google::Protobuf::DescriptorPool.generated_pool
16
+
17
+ begin
18
+ pool.add_serialized_file(descriptor_data)
19
+ rescue TypeError
20
+ # Compatibility code: will be removed in the next major version.
21
+ require 'google/protobuf/descriptor_pb'
22
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
23
+ parsed.clear_dependency
24
+ serialized = parsed.class.encode(parsed)
25
+ file = pool.add_serialized_file(serialized)
26
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
27
+ imports = [
28
+ ]
29
+ imports.each do |type_name, expected_filename|
30
+ import_file = pool.lookup(type_name).file_descriptor
31
+ if import_file.name != expected_filename
32
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
33
+ end
34
+ end
35
+ warn "Each proto file must use a consistent fully-qualified name."
36
+ warn "This will become an error in the next major version."
37
+ end
38
+
39
+ module Google
40
+ module Shopping
41
+ module Merchant
42
+ module IssueResolution
43
+ module V1beta
44
+ RenderAccountIssuesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.RenderAccountIssuesResponse").msgclass
45
+ RenderAccountIssuesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.RenderAccountIssuesRequest").msgclass
46
+ RenderIssuesRequestPayload = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.RenderIssuesRequestPayload").msgclass
47
+ RenderProductIssuesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.RenderProductIssuesResponse").msgclass
48
+ RenderProductIssuesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.RenderProductIssuesRequest").msgclass
49
+ RenderedIssue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.RenderedIssue").msgclass
50
+ Impact = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Impact").msgclass
51
+ Breakdown = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Breakdown").msgclass
52
+ Breakdown::Region = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Breakdown.Region").msgclass
53
+ Action = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Action").msgclass
54
+ Action::Reason = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Action.Reason").msgclass
55
+ BuiltInSimpleAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.BuiltInSimpleAction").msgclass
56
+ BuiltInSimpleAction::AdditionalContent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.BuiltInSimpleAction.AdditionalContent").msgclass
57
+ BuiltInSimpleAction::BuiltInSimpleActionType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.BuiltInSimpleAction.BuiltInSimpleActionType").enummodule
58
+ BuiltInUserInputAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.BuiltInUserInputAction").msgclass
59
+ ActionFlow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.ActionFlow").msgclass
60
+ InputField = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputField").msgclass
61
+ InputField::TextInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputField.TextInput").msgclass
62
+ InputField::TextInput::TextInputType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputField.TextInput.TextInputType").enummodule
63
+ InputField::ChoiceInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInput").msgclass
64
+ InputField::ChoiceInput::ChoiceInputOption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputField.ChoiceInput.ChoiceInputOption").msgclass
65
+ InputField::CheckboxInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputField.CheckboxInput").msgclass
66
+ TextWithTooltip = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.TextWithTooltip").msgclass
67
+ TextWithTooltip::TooltipIconStyle = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.TextWithTooltip.TooltipIconStyle").enummodule
68
+ Callout = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Callout").msgclass
69
+ Callout::CalloutStyleHint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Callout.CalloutStyleHint").enummodule
70
+ ExternalAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.ExternalAction").msgclass
71
+ ExternalAction::ExternalActionType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.ExternalAction.ExternalActionType").enummodule
72
+ TriggerActionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.TriggerActionRequest").msgclass
73
+ TriggerActionPayload = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.TriggerActionPayload").msgclass
74
+ TriggerActionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.TriggerActionResponse").msgclass
75
+ ActionInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.ActionInput").msgclass
76
+ InputValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputValue").msgclass
77
+ InputValue::TextInputValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputValue.TextInputValue").msgclass
78
+ InputValue::ChoiceInputValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputValue.ChoiceInputValue").msgclass
79
+ InputValue::CheckboxInputValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.InputValue.CheckboxInputValue").msgclass
80
+ Severity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.Severity").enummodule
81
+ ContentOption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.ContentOption").enummodule
82
+ UserInputActionRenderingOption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.issueresolution.v1beta.UserInputActionRenderingOption").enummodule
83
+ end
84
+ end
85
+ end
86
+ end
87
+ end