GetPropertiesResponse constructor

GetPropertiesResponse({
  1. bool? classificationsSupported,
  2. bool? detectionsSupported,
  3. 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;
}