| 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] |
require 'zernio-sdk'
instance = Zernio::BulkUploadResult.new(
total: null,
valid: null,
invalid: null,
results: null,
warnings: null,
rate_limited_accounts: null
)