# PulpcoreClient::ProgressReport ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **message** | **String** | The message shown to the user for the progress report. | [optional] **code** | **String** | Identifies the type of progress report'. | [optional] **state** | **String** | The current state of the progress report. The possible values are: 'waiting', 'skipped', 'running', 'completed', 'failed' and 'canceled'. The default is 'waiting'. | [optional] **total** | **Integer** | The total count of items. | [optional] **done** | **Integer** | The count of items already processed. Defaults to 0. | [optional] **suffix** | **String** | The suffix to be shown with the progress report. | [optional] ## Code Sample ```ruby require 'PulpcoreClient' instance = PulpcoreClient::ProgressReport.new(message: null, code: null, state: null, total: null, done: null, suffix: null) ```