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

Path helper methods for the LandingPageViewService API.

Public Instance Methods

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

Create a fully-qualified LandingPageView resource string.

The resource will be in the following format:

`customers/{customer_id}/landingPageViews/{unexpanded_final_url_fingerprint}`

@param customer_id [String] @param unexpanded_final_url_fingerprint [String]

@return [::String]

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

  "customers/#{customer_id}/landingPageViews/#{unexpanded_final_url_fingerprint}"
end