()
| 126 | } |
| 127 | |
| 128 | func (m *AnyValue) GetBoolValue() bool { |
| 129 | if x, ok := m.GetValue().(*AnyValue_BoolValue); ok { |
| 130 | return x.BoolValue |
| 131 | } |
| 132 | return false |
| 133 | } |
| 134 | |
| 135 | func (m *AnyValue) GetIntValue() int64 { |
| 136 | if x, ok := m.GetValue().(*AnyValue_IntValue); ok { |
no test coverage detected