Class: Google::Apis::DfareportingV2_6::AdSlot

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

Overview

Ad Slot

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

Returns a new instance of AdSlot.



968
969
970
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 968

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

Instance Attribute Details

#commentString

Comment for this ad slot. Corresponds to the JSON property comment

Returns:

  • (String)


926
927
928
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 926

def comment
  @comment
end

#compatibilityString

Ad slot compatibility. DISPLAY and DISPLAY_INTERSTITIAL refer to rendering either on desktop, mobile devices or in mobile apps for regular or interstitial ads respectively. APP and APP_INTERSTITIAL are for rendering in mobile apps. IN_STREAM_VIDEO refers to rendering in in-stream video ads developed with the VAST standard. Corresponds to the JSON property compatibility

Returns:

  • (String)


935
936
937
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 935

def compatibility
  @compatibility
end

#heightString

Height of this ad slot. Corresponds to the JSON property height

Returns:

  • (String)


940
941
942
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 940

def height
  @height
end

#linked_placement_idString

ID of the placement from an external platform that is linked to this ad slot. Corresponds to the JSON property linkedPlacementId

Returns:

  • (String)


945
946
947
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 945

def linked_placement_id
  @linked_placement_id
end

#nameString

Name of this ad slot. Corresponds to the JSON property name

Returns:

  • (String)


950
951
952
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 950

def name
  @name
end

#payment_source_typeString

Payment source type of this ad slot. Corresponds to the JSON property paymentSourceType

Returns:

  • (String)


955
956
957
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 955

def payment_source_type
  @payment_source_type
end

#primaryBoolean Also known as: primary?

Primary ad slot of a roadblock inventory item. Corresponds to the JSON property primary

Returns:

  • (Boolean)


960
961
962
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 960

def primary
  @primary
end

#widthString

Width of this ad slot. Corresponds to the JSON property width

Returns:

  • (String)


966
967
968
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 966

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



973
974
975
976
977
978
979
980
981
982
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 973

def update!(**args)
  @comment = args[:comment] if args.key?(:comment)
  @compatibility = args[:compatibility] if args.key?(:compatibility)
  @height = args[:height] if args.key?(:height)
  @linked_placement_id = args[:linked_placement_id] if args.key?(:linked_placement_id)
  @name = args[:name] if args.key?(:name)
  @payment_source_type = args[:payment_source_type] if args.key?(:payment_source_type)
  @primary = args[:primary] if args.key?(:primary)
  @width = args[:width] if args.key?(:width)
end