Module: Google::Shopping::Merchant::Accounts::V1::AccountServicesService::Paths
- Extended by:
- Paths
- Included in:
- Client, Paths, Rest::Client
- Defined in:
- lib/google/shopping/merchant/accounts/v1/account_services_service/paths.rb
Overview
Path helper methods for the AccountServicesService API.
Instance Method Summary collapse
-
#account_path(account:) ⇒ ::String
Create a fully-qualified Account resource string.
-
#account_service_path(account:, service:) ⇒ ::String
Create a fully-qualified AccountService 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/accounts/v1/account_services_service/paths.rb', line 38 def account_path account: "accounts/#{account}" end |
#account_service_path(account:, service:) ⇒ ::String
Create a fully-qualified AccountService resource string.
The resource will be in the following format:
accounts/{account}/services/{service}
53 54 55 56 57 |
# File 'lib/google/shopping/merchant/accounts/v1/account_services_service/paths.rb', line 53 def account_service_path account:, service: raise ::ArgumentError, "account cannot contain /" if account.to_s.include? "/" "accounts/#{account}/services/#{service}" end |