Class: Google::Apis::AdexchangesellerV2_0::UrlChannel

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangeseller_v2_0/classes.rb,
generated/google/apis/adexchangeseller_v2_0/representations.rb,
generated/google/apis/adexchangeseller_v2_0/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.



741
742
743
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 741

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)


728
729
730
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 728

def id
  @id
end

#kindString

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

Returns:

  • (String)


733
734
735
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 733

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)


739
740
741
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 739

def url_pattern
  @url_pattern
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



746
747
748
749
750
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 746

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