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