(b bool, s string)
| 751 | } |
| 752 | |
| 753 | func stringOrEmpty(b bool, s string) string { |
| 754 | if b { |
| 755 | return s |
| 756 | } |
| 757 | return "" |
| 758 | } |
| 759 | |
| 760 | // GenFieldsFromProperties produce corresponding field names with JSON annotations, |
| 761 | // given a list of schema descriptors |
no outgoing calls
no test coverage detected