class Google::Apis::AdsenseV1_4::UrlChannel

Attributes

id[RW]

Unique identifier of this URL channel. This should be considered an opaque identifier; it is not safe to rely on it being in any particular format. Corresponds to the JSON property `id` @return [String]

kind[RW]

Kind of resource this is, in this case adsense#urlChannel. Corresponds to the JSON property `kind` @return [String]

url_pattern[RW]

URL Pattern of this URL channel. Does not include “http://” or “https://”. Example: www.example.com/home Corresponds to the JSON property `urlPattern` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adsense_v1_4/classes.rb, line 1241
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adsense_v1_4/classes.rb, line 1246
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @url_pattern = args[:url_pattern] if args.key?(:url_pattern)
end