blob: e2b39c93f55727dba1ffa3c68db5ddb255c31894 [file] [log] [blame]
Mahesh Poojary Sbbd48492016-07-19 10:58:07 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5
6 leaf message {
7 type union {
8 type int32;
9 type enumeration {
10 enum "unbounded";
11 }
12 }
13 default "unbounded";
14 }
15}