# PulpcoreClient::VersionResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **component** | **String** | Name of a versioned component of Pulp | **version** | **String** | Version of the component (e.g. 3.0.0) | **package** | **String** | Python package name providing the component | **_module** | **String** | Python module name of the component | **domain_compatible** | **Boolean** | Domain feature compatibility of component | ## Code Sample ```ruby require 'PulpcoreClient' instance = PulpcoreClient::VersionResponse.new(component: null, version: null, package: null, _module: null, domain_compatible: null) ```