Class: Google::Apis::AdsensehostV4_1::UrlChannel

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adsensehost_v4_1/classes.rb,
generated/google/apis/adsensehost_v4_1/representations.rb,
generated/google/apis/adsensehost_v4_1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UrlChannel

Returns a new instance of UrlChannel.



786
787
788
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 786

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

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

Returns:

  • (String)


773
774
775
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 773

def id
  @id
end

#kindString

Kind of resource this is, in this case adsensehost#urlChannel. Corresponds to the JSON property kind

Returns:

  • (String)


778
779
780
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 778

def kind
  @kind
end

#url_patternString

URL Pattern of this URL channel. Does not include "http://" or "https://". Example: www.example.com/home Corresponds to the JSON property urlPattern

Returns:

  • (String)


784
785
786
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 784

def url_pattern
  @url_pattern
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



791
792
793
794
795
# 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