# PulpcoreClient::TaskResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **pulp_href** | **String** | | [optional] [readonly] **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly] **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly] **state** | **String** | The current state of the task. The possible values include: 'waiting', 'skipped', 'running', 'completed', 'failed', 'canceled' and 'canceling'. | [optional] [readonly] **name** | **String** | The name of task. | **logging_cid** | **String** | The logging correlation id associated with this task | **created_by** | **String** | User who dispatched this task. | [optional] [readonly] **unblocked_at** | **DateTime** | Timestamp of when this task was identified ready for pickup. | [optional] [readonly] **started_at** | **DateTime** | Timestamp of when this task started execution. | [optional] [readonly] **finished_at** | **DateTime** | Timestamp of when this task stopped execution. | [optional] [readonly] **error** | **Hash<String, Object>** | A JSON Object of a fatal error encountered during the execution of this task. | [optional] [readonly] **worker** | **String** | The worker associated with this task. This field is empty if a worker is not yet assigned. | [optional] [readonly] **parent_task** | **String** | The parent task that spawned this task. | [optional] [readonly] **child_tasks** | **Array<String>** | Any tasks spawned by this task. | [optional] [readonly] **task_group** | **String** | The task group that this task is a member of. | [optional] [readonly] **progress_reports** | [**Array<ProgressReportResponse>**](ProgressReportResponse.md) | | [optional] [readonly] **created_resources** | **Array<String>** | Resources created by this task. | [optional] [readonly] **reserved_resources_record** | **Array<String>** | A list of resources required by that task. | [optional] [readonly] ## Code Sample ```ruby require 'PulpcoreClient' instance = PulpcoreClient::TaskResponse.new(pulp_href: null, prn: null, pulp_created: null, pulp_last_updated: null, state: null, name: null, logging_cid: null, created_by: null, unblocked_at: null, started_at: null, finished_at: null, error: null, worker: null, parent_task: null, child_tasks: null, task_group: null, progress_reports: null, created_resources: null, reserved_resources_record: null) ```