| 421 | } |
| 422 | |
| 423 | std::string MetadataTagProcessorImpl::ValidateAndFormat_self_service(std::string v) |
| 424 | { |
| 425 | strings::AsciiToLower(v); |
| 426 | if (v == "yes" || v == "only" || v == "partially" || v == "no") |
| 427 | return v; |
| 428 | return {}; |
| 429 | } |
| 430 | |
| 431 | std::string MetadataTagProcessorImpl::ValidateAndFormat_outdoor_seating(std::string v) |
| 432 | { |
nothing calls this directly
no test coverage detected