Class: Google::Apis::DfareportingV3_2::ConversionsBatchInsertResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::ConversionsBatchInsertResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Insert Conversions Response.
Instance Attribute Summary collapse
-
#has_failures ⇒ Boolean
(also: #has_failures?)
Indicates that some or all conversions failed to insert.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#status ⇒ Array<Google::Apis::DfareportingV3_2::ConversionStatus>
The insert status of each conversion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConversionsBatchInsertResponse
constructor
A new instance of ConversionsBatchInsertResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConversionsBatchInsertResponse
Returns a new instance of ConversionsBatchInsertResponse
2621 2622 2623 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2621 def initialize(**args) update!(**args) end |
Instance Attribute Details
#has_failures ⇒ Boolean Also known as: has_failures?
Indicates that some or all conversions failed to insert.
Corresponds to the JSON property hasFailures
2606 2607 2608 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2606 def has_failures @has_failures end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#conversionsBatchInsertResponse".
Corresponds to the JSON property kind
2613 2614 2615 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2613 def kind @kind end |
#status ⇒ Array<Google::Apis::DfareportingV3_2::ConversionStatus>
The insert status of each conversion. Statuses are returned in the same order
that conversions are inserted.
Corresponds to the JSON property status
2619 2620 2621 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2619 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2626 2627 2628 2629 2630 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2626 def update!(**args) @has_failures = args[:has_failures] if args.key?(:has_failures) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |