module Google::Ads::GoogleAds::V8::Services::ExpandedLandingPageViewService::Paths

Path helper methods for the ExpandedLandingPageViewService API.

Public Instance Methods

expanded_landing_page_view_path(customer_id:, expanded_final_url_fingerprint: raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/") click to toggle source

Create a fully-qualified ExpandedLandingPageView resource string.

The resource will be in the following format:

`customers/{customer_id}/expandedLandingPageViews/{expanded_final_url_fingerprint}`

@param customer_id [String] @param expanded_final_url_fingerprint [String]

@return [::String]

# File lib/google/ads/google_ads/v8/services/expanded_landing_page_view_service/paths.rb, line 39
def expanded_landing_page_view_path customer_id:, expanded_final_url_fingerprint:
  raise ::ArgumentError, "customer_id cannot contain /" if customer_id.to_s.include? "/"

  "customers/#{customer_id}/expandedLandingPageViews/#{expanded_final_url_fingerprint}"
end