Class: Google::Apis::DfareportingV4::CreativeGroupAssignment
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::CreativeGroupAssignment
- 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
Creative Group Assignment.
Instance Attribute Summary collapse
-
#creative_group_id ⇒ Fixnum
ID of the creative group to be assigned.
-
#creative_group_number ⇒ String
Creative group number of the creative group assignment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreativeGroupAssignment
constructor
A new instance of CreativeGroupAssignment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreativeGroupAssignment
Returns a new instance of CreativeGroupAssignment.
4970 4971 4972 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4970 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_group_id ⇒ Fixnum
ID of the creative group to be assigned.
Corresponds to the JSON property creativeGroupId
4963 4964 4965 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4963 def creative_group_id @creative_group_id end |
#creative_group_number ⇒ String
Creative group number of the creative group assignment.
Corresponds to the JSON property creativeGroupNumber
4968 4969 4970 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4968 def creative_group_number @creative_group_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4975 4976 4977 4978 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4975 def update!(**args) @creative_group_id = args[:creative_group_id] if args.key?(:creative_group_id) @creative_group_number = args[:creative_group_number] if args.key?(:creative_group_number) end |