Class: Google::Apis::DfareportingV3_4::CustomEventsBatchInsertRequest
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::CustomEventsBatchInsertRequest
- 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
Insert Custom Events Request.
Instance Attribute Summary collapse
-
#custom_events ⇒ Array<Google::Apis::DfareportingV3_4::CustomEvent>
The set of custom events to insert.
-
#kind ⇒ String
Identifies what kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomEventsBatchInsertRequest
constructor
A new instance of CustomEventsBatchInsertRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomEventsBatchInsertRequest
Returns a new instance of CustomEventsBatchInsertRequest.
4904 4905 4906 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4904 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_events ⇒ Array<Google::Apis::DfareportingV3_4::CustomEvent>
The set of custom events to insert.
Corresponds to the JSON property customEvents
4896 4897 4898 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4896 def custom_events @custom_events end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#customEventsBatchInsertRequest".
Corresponds to the JSON property kind
4902 4903 4904 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4902 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4909 4910 4911 4912 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4909 def update!(**args) @custom_events = args[:custom_events] if args.key?(:custom_events) @kind = args[:kind] if args.key?(:kind) end |