module Google::Shopping::Merchant::Accounts::V1beta::AccountsService::Paths

def account_path account:

Returns:
  • (::String) -

Parameters:
  • account (String) --
def account_path account:
  "accounts/#{account}"
end

def terms_of_service_path version:

Returns:
  • (::String) -

Parameters:
  • version (String) --
def terms_of_service_path version:
  "termsOfService/#{version}"
end

def user_path account:, email:

Returns:
  • (::String) -

Parameters:
  • email (String) --
  • account (String) --
def user_path account:, email:
  raise ::ArgumentError, "account cannot contain /" if account.to_s.include? "/"
  "accounts/#{account}/users/#{email}"
end