GetPropertiesResponse constructor

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