Class: Google::Apis::DfareportingV2_5::ConnectionType

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

Overview

Contains information about an internet connection type that can be targeted by ads. Clients can use the connection type to target mobile vs. broadband users.

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) ⇒ ConnectionType

Returns a new instance of ConnectionType.



2114
2115
2116
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 2114

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

Instance Attribute Details

#idString

ID of this connection type. Corresponds to the JSON property id

Returns:

  • (String)


2101
2102
2103
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 2101

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#connectionType". Corresponds to the JSON property kind

Returns:

  • (String)


2107
2108
2109
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 2107

def kind
  @kind
end

#nameString

Name of this connection type. Corresponds to the JSON property name

Returns:

  • (String)


2112
2113
2114
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 2112

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2119
2120
2121
2122
2123
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 2119

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end