Class: Google::Apis::DfareportingV3_4::DfpSettings

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

Overview

Google Ad Manager Settings

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

Returns a new instance of DfpSettings.



5357
5358
5359
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5357

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

Instance Attribute Details

#dfp_network_codeString

Ad Manager network code for this directory site. Corresponds to the JSON property dfpNetworkCode

Returns:

  • (String)


5332
5333
5334
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5332

def dfp_network_code
  @dfp_network_code
end

#dfp_network_nameString

Ad Manager network name for this directory site. Corresponds to the JSON property dfpNetworkName

Returns:

  • (String)


5337
5338
5339
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5337

def dfp_network_name
  @dfp_network_name
end

#programmatic_placement_acceptedBoolean Also known as: programmatic_placement_accepted?

Whether this directory site accepts programmatic placements. Corresponds to the JSON property programmaticPlacementAccepted

Returns:

  • (Boolean)


5342
5343
5344
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5342

def programmatic_placement_accepted
  @programmatic_placement_accepted
end

#pub_paid_placement_acceptedBoolean Also known as: pub_paid_placement_accepted?

Whether this directory site accepts publisher-paid tags. Corresponds to the JSON property pubPaidPlacementAccepted

Returns:

  • (Boolean)


5348
5349
5350
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5348

def pub_paid_placement_accepted
  @pub_paid_placement_accepted
end

#publisher_portal_onlyBoolean Also known as: publisher_portal_only?

Whether this directory site is available only via Publisher Portal. Corresponds to the JSON property publisherPortalOnly

Returns:

  • (Boolean)


5354
5355
5356
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5354

def publisher_portal_only
  @publisher_portal_only
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5362
5363
5364
5365
5366
5367
5368
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5362

def update!(**args)
  @dfp_network_code = args[:dfp_network_code] if args.key?(:dfp_network_code)
  @dfp_network_name = args[:dfp_network_name] if args.key?(:dfp_network_name)
  @programmatic_placement_accepted = args[:programmatic_placement_accepted] if args.key?(:programmatic_placement_accepted)
  @pub_paid_placement_accepted = args[:pub_paid_placement_accepted] if args.key?(:pub_paid_placement_accepted)
  @publisher_portal_only = args[:publisher_portal_only] if args.key?(:publisher_portal_only)
end