Class: Google::Apis::DfareportingV4::MeasurementPartnerWrappingData
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::MeasurementPartnerWrappingData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Placement tag wrapping
Instance Attribute Summary collapse
-
#link_status ⇒ String
Placement wrapping status.
-
#measurement_partner ⇒ String
Measurement partner used for wrapping the placement.
-
#tag_wrapping_mode ⇒ String
Measurement mode for the wrapped placement.
-
#wrapped_tag ⇒ String
Tag provided by the measurement partner during wrapping.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MeasurementPartnerWrappingData
constructor
A new instance of MeasurementPartnerWrappingData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MeasurementPartnerWrappingData
Returns a new instance of MeasurementPartnerWrappingData.
7856 7857 7858 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7856 def initialize(**args) update!(**args) end |
Instance Attribute Details
#link_status ⇒ String
Placement wrapping status.
Corresponds to the JSON property linkStatus
7839 7840 7841 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7839 def link_status @link_status end |
#measurement_partner ⇒ String
Measurement partner used for wrapping the placement.
Corresponds to the JSON property measurementPartner
7844 7845 7846 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7844 def measurement_partner @measurement_partner end |
#tag_wrapping_mode ⇒ String
Measurement mode for the wrapped placement.
Corresponds to the JSON property tagWrappingMode
7849 7850 7851 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7849 def tag_wrapping_mode @tag_wrapping_mode end |
#wrapped_tag ⇒ String
Tag provided by the measurement partner during wrapping.
Corresponds to the JSON property wrappedTag
7854 7855 7856 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7854 def wrapped_tag @wrapped_tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7861 7862 7863 7864 7865 7866 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 7861 def update!(**args) @link_status = args[:link_status] if args.key?(:link_status) @measurement_partner = args[:measurement_partner] if args.key?(:measurement_partner) @tag_wrapping_mode = args[:tag_wrapping_mode] if args.key?(:tag_wrapping_mode) @wrapped_tag = args[:wrapped_tag] if args.key?(:wrapped_tag) end |