We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ddcd23 commit 7da7032Copy full SHA for 7da7032
src/Nest/Domain/ICustomJson.cs
@@ -2,12 +2,17 @@
2
3
namespace Nest
4
{
5
- // If an object implements this then it can handle its own json representation
+ /// <summary>
6
+ /// If an object implements this then it can handle its own json representation
7
+ /// </summary>
8
public interface ICustomJson
9
10
object GetCustomJson();
11
}
12
- // Any object that implements this will automatically be added to the serialization contract
13
14
+ /// Any object that implements this interface will automatically have all
15
+ /// JsonProperties of all of its implementing interfaces discovered.
16
17
public interface INestSerializable { }
18
0 commit comments