| 411 | } |
| 412 | |
| 413 | std::string MetadataTagProcessorImpl::ValidateAndFormat_drive_through(std::string v) |
| 414 | { |
| 415 | strings::AsciiToLower(v); |
| 416 | if (v == "yes" || v == "sidewalk" || v == "terrace" || v == "pedestrian_zone" || v == "patio" || v == "only" || v == "veranda" || v == "garden" || v == "parklet" || v == "street" || v == "balcony" || v == "beach" || v == "roof") |
| 417 | return "yes"; |
| 418 | else if (v == "no") |
| 419 | return v; |
| 420 | return {}; |
| 421 | } |
| 422 | |
| 423 | std::string MetadataTagProcessorImpl::ValidateAndFormat_self_service(std::string v) |
| 424 | { |
nothing calls this directly
no test coverage detected