Module: Google::Shopping::Merchant::IssueResolution::V1beta::IssueResolutionService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/paths.rb
Overview
Path helper methods for the IssueResolutionService API.
Instance Method Summary collapse
-
#account_path(account:) ⇒ ::String
Create a fully-qualified Account resource string.
-
#product_path(account:, product:) ⇒ ::String
Create a fully-qualified Product resource string.
Instance Method Details
#account_path(account:) ⇒ ::String
Create a fully-qualified Account resource string.
The resource will be in the following format:
accounts/{account}
38 39 40 |
# File 'lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/paths.rb', line 38 def account_path account: "accounts/#{account}" end |
#product_path(account:, product:) ⇒ ::String
Create a fully-qualified Product resource string.
The resource will be in the following format:
accounts/{account}/products/{product}
53 54 55 56 57 |
# File 'lib/google/shopping/merchant/issue_resolution/v1beta/issue_resolution_service/paths.rb', line 53 def product_path account:, product: raise ::ArgumentError, "account cannot contain /" if account.to_s.include? "/" "accounts/#{account}/products/#{product}" end |