Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.24 KB

File metadata and controls

28 lines (22 loc) · 1.24 KB

Zernio::BulkUploadResult

Properties

Name Type Description Notes
total Integer Number of data rows processed from the CSV [optional]
valid Integer Count of rows that succeeded (results[].ok === true) [optional]
invalid Integer Count of rows that failed (total - valid) [optional]
results Array<BulkUploadResultResultsInner> One entry per CSV data row, in row order. [optional]
warnings Array<String> Top-level advisory warnings (e.g. `rows_exceed_advisory_limit:500`). Empty when none. [optional]
rate_limited_accounts Array<BulkUploadResultRateLimitedAccountsInner> Present only when one or more rows targeted an account currently in cooldown. Lets callers map `rate_limited:*` row errors back to structured metadata without parsing the error strings. [optional]

Example

require 'zernio-sdk'

instance = Zernio::BulkUploadResult.new(
  total: null,
  valid: null,
  invalid: null,
  results: null,
  warnings: null,
  rate_limited_accounts: null
)