Exemple #1
0
        internal StructType(IStructTypeProxy structTypeProxy)
        {
            this.structTypeProxy = structTypeProxy;
            var jsonSchema = structTypeProxy.ToJson();

            FromJson(jsonSchema);
        }
Exemple #2
0
 public string ToJson()
 {
     return(structTypeProxy.ToJson());
 }
Exemple #3
0
 internal StructType(IStructTypeProxy structTypeProxy)
 {
     this.structTypeProxy = structTypeProxy;
     var jsonSchema = structTypeProxy.ToJson();
     FromJson(jsonSchema);
 }