class Google::Ads::GoogleAds::WrapperUtil

Public Class Methods

bool(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 38
def self.bool(v)
  Google::Protobuf::BoolValue.new(value: v)
end
bytes(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 50
def self.bytes(v)
  Google::Protobuf::BytesValue.new(value: v)
end
double(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 42
def self.double(v)
  Google::Protobuf::DoubleValue.new(value: v)
end
float(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 46
def self.float(v)
  Google::Protobuf::FloatValue.new(value: v)
end
int32(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 26
def self.int32(v)
  Google::Protobuf::Int32Value.new(value: v)
end
int64(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 30
def self.int64(v)
  Google::Protobuf::Int64Value.new(value: v)
end
string(v) click to toggle source
# File lib/google/ads/google_ads/wrapper_util.rb, line 34
def self.string(v)
  Google::Protobuf::StringValue.new(value: v)
end