Module: Google::Shopping::Merchant::Conversions::V1beta::ConversionSourcesService::Paths

Extended by:
Paths
Included in:
Client, Paths, Rest::Client
Defined in:
lib/google/shopping/merchant/conversions/v1beta/conversion_sources_service/paths.rb

Overview

Path helper methods for the ConversionSourcesService API.

Instance Method Summary collapse

Instance Method Details

#account_path(account:) ⇒ ::String

Create a fully-qualified Account resource string.

The resource will be in the following format:

accounts/{account}

Parameters:

  • account (String)

Returns:

  • (::String)


38
39
40
# File 'lib/google/shopping/merchant/conversions/v1beta/conversion_sources_service/paths.rb', line 38

def  account:
  "accounts/#{}"
end

#conversion_source_path(account:, conversion_source:) ⇒ ::String

Create a fully-qualified ConversionSource resource string.

The resource will be in the following format:

accounts/{account}/conversionSources/{conversion_source}

Parameters:

  • account (String)
  • conversion_source (String)

Returns:

  • (::String)

Raises:

  • (::ArgumentError)


53
54
55
56
57
# File 'lib/google/shopping/merchant/conversions/v1beta/conversion_sources_service/paths.rb', line 53

def conversion_source_path account:, conversion_source:
  raise ::ArgumentError, "account cannot contain /" if .to_s.include? "/"

  "accounts/#{}/conversionSources/#{conversion_source}"
end