GetPropertiesResponse constructor
GetPropertiesResponse({})
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;
}