()
| 154 | } |
| 155 | |
| 156 | func (m *AnyValue) GetKvlistValue() *KeyValueList { |
| 157 | if x, ok := m.GetValue().(*AnyValue_KvlistValue); ok { |
| 158 | return x.KvlistValue |
| 159 | } |
| 160 | return nil |
| 161 | } |
| 162 | |
| 163 | func (m *AnyValue) GetBytesValue() []byte { |
| 164 | if x, ok := m.GetValue().(*AnyValue_BytesValue); ok { |
no test coverage detected