toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (assetModelId != null) {
    json[r'AssetModelId'] = assetModelId;
  }
  if (entityId != null) {
    json[r'EntityId'] = entityId;
  }
  if (geometryDb != null) {
    json[r'GeometryDb'] = geometryDb;
  }
  if (minZ != null) {
    json[r'MinZ'] = minZ;
  }
  if (maxZ != null) {
    json[r'MaxZ'] = maxZ;
  }
  return json;
}