()
| 119 | } |
| 120 | |
| 121 | func (m *AnyValue) GetStringValue() string { |
| 122 | if x, ok := m.GetValue().(*AnyValue_StringValue); ok { |
| 123 | return x.StringValue |
| 124 | } |
| 125 | return "" |
| 126 | } |
| 127 | |
| 128 | func (m *AnyValue) GetBoolValue() bool { |
| 129 | if x, ok := m.GetValue().(*AnyValue_BoolValue); ok { |