summaryrefslogtreecommitdiffstats
path: root/sdnr/northbound/energysavings/model/src/main/yang/Energysavings.yang
blob: 572a9d432961b361d994ce51a48b24cb04b3ec8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module energysavings {
    yang-version 1;
    namespace "urn:opendaylight:params:xml:ns:yang:energysavings";
    prefix "energysavings";

    revision "2015-01-05" {
        description "Initial revision of energysavings model";
    }
    
    rpc payload {
    	input {
    		leaf payload {
    			type string;
    		}
    	}
    	output {
    		leaf result {
    			type string;
    		}
    	}
    }
}