Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 814 Bytes

File metadata and controls

28 lines (22 loc) · 814 Bytes

UltracartClient::BulkRecordsResponse

Properties

Name Type Description Notes
error Error [optional]
metadata ResponseMetadata [optional]
next_cursor String Opaque cursor for the next page, null when exhausted [optional]
records Array<BulkRecord> Per-record results [optional]
success Boolean Indicates if API call was successful [optional]
warning Warning [optional]

Example

require 'ultracart_api'

instance = UltracartClient::BulkRecordsResponse.new(
  error: null,
  metadata: null,
  next_cursor: null,
  records: null,
  success: null,
  warning: null
)