lib/google/ads/google_ads/api_versions.rb in google-ads-googleads-1.1.1 vs lib/google/ads/google_ads/api_versions.rb in google-ads-googleads-2.0.0
- old
+ new
@@ -1,8 +1,16 @@
module Google
module Ads
module GoogleAds
- KNOWN_API_VERSIONS = [:V0, :V1]
+ KNOWN_API_VERSIONS = [:V1]
DEFAULT_API_VERSION = :V1
+
+ def self.default_api_version
+ DEFAULT_API_VERSION
+ end
+
+ def self.known_api_versions
+ KNOWN_API_VERSIONS
+ end
end
end
end