Vidyashree Rama | 1396065 | 2016-04-26 15:06:06 +0530 | [diff] [blame] | 1 | module Test { |
2 | yang-version 1; | ||||
3 | namespace http://huawei.com; | ||||
4 | prefix Ant; | ||||
Bharat saraswal | 0663aff | 2016-10-18 23:16:14 +0530 | [diff] [blame] | 5 | container food { |
Vidyashree Rama | 1396065 | 2016-04-26 15:06:06 +0530 | [diff] [blame] | 6 | choice snack { |
7 | case sports-arena { | ||||
8 | leaf pretzel { | ||||
9 | type string; | ||||
10 | } | ||||
11 | leaf beer { | ||||
12 | type string; | ||||
13 | } | ||||
14 | } | ||||
15 | case late-night { | ||||
16 | leaf chocolate { | ||||
17 | type string; | ||||
18 | } | ||||
19 | } | ||||
20 | } | ||||
Bharat saraswal | 0663aff | 2016-10-18 23:16:14 +0530 | [diff] [blame] | 21 | container dinner { |
22 | leaf cheese { | ||||
23 | type string; | ||||
24 | } | ||||
25 | } | ||||
26 | choice snack2 { | ||||
27 | case sports-arena { | ||||
28 | leaf pretzel { | ||||
29 | type string; | ||||
30 | } | ||||
31 | leaf beer { | ||||
32 | type string; | ||||
33 | } | ||||
34 | } | ||||
35 | case late-night { | ||||
36 | leaf chocolate { | ||||
37 | type string; | ||||
38 | } | ||||
39 | } | ||||
40 | } | ||||
Vidyashree Rama | 1396065 | 2016-04-26 15:06:06 +0530 | [diff] [blame] | 41 | } |
42 | } |