()
| 133 | } |
| 134 | |
| 135 | func (m *AnyValue) GetIntValue() int64 { |
| 136 | if x, ok := m.GetValue().(*AnyValue_IntValue); ok { |
| 137 | return x.IntValue |
| 138 | } |
| 139 | return 0 |
| 140 | } |
| 141 | |
| 142 | func (m *AnyValue) GetDoubleValue() float64 { |
| 143 | if x, ok := m.GetValue().(*AnyValue_DoubleValue); ok { |
no test coverage detected