GetPropertiesResponse constructor
GetPropertiesResponse({ - bool? classificationsSupported,
- bool? detectionsSupported,
- bool? objectPointCloudsSupported,
})
Implementation
factory GetPropertiesResponse({
$core.bool? classificationsSupported,
$core.bool? detectionsSupported,
$core.bool? objectPointCloudsSupported,
}) {
final $result = create();
if (classificationsSupported != null) {
$result.classificationsSupported = classificationsSupported;
}
if (detectionsSupported != null) {
$result.detectionsSupported = detectionsSupported;
}
if (objectPointCloudsSupported != null) {
$result.objectPointCloudsSupported = objectPointCloudsSupported;
}
return $result;
}