class Google::Apis::AdsensehostV4_1::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 adsensehost#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 generated/google/apis/adsensehost_v4_1/classes.rb, line 786
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/adsensehost_v4_1/classes.rb, line 791
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