Class: Google::Apis::DfareportingV4::IngestionStatus

Inherits:
Object
  • Object
show all
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

Contains the ingestion status of the dynamic feed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IngestionStatus

Returns a new instance of IngestionStatus.



8138
8139
8140
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8138

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

Instance Attribute Details

#num_active_rowsFixnum

Output only. The number of active rows in the feed. Corresponds to the JSON property numActiveRows

Returns:

  • (Fixnum)


8116
8117
8118
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8116

def num_active_rows
  @num_active_rows
end

#num_rows_processedFixnum

Output only. The number of rows processed in the feed. Corresponds to the JSON property numRowsProcessed

Returns:

  • (Fixnum)


8121
8122
8123
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8121

def num_rows_processed
  @num_rows_processed
end

#num_rows_totalFixnum

Output only. The total number of rows in the feed. Corresponds to the JSON property numRowsTotal

Returns:

  • (Fixnum)


8126
8127
8128
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8126

def num_rows_total
  @num_rows_total
end

#num_rows_with_errorsFixnum

Output only. The number of rows with errors in the feed. Corresponds to the JSON property numRowsWithErrors

Returns:

  • (Fixnum)


8131
8132
8133
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8131

def num_rows_with_errors
  @num_rows_with_errors
end

#num_warnings_totalFixnum

Output only. The total number of warnings in the feed. Corresponds to the JSON property numWarningsTotal

Returns:

  • (Fixnum)


8136
8137
8138
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8136

def num_warnings_total
  @num_warnings_total
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8143
8144
8145
8146
8147
8148
8149
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8143

def update!(**args)
  @num_active_rows = args[:num_active_rows] if args.key?(:num_active_rows)
  @num_rows_processed = args[:num_rows_processed] if args.key?(:num_rows_processed)
  @num_rows_total = args[:num_rows_total] if args.key?(:num_rows_total)
  @num_rows_with_errors = args[:num_rows_with_errors] if args.key?(:num_rows_with_errors)
  @num_warnings_total = args[:num_warnings_total] if args.key?(:num_warnings_total)
end