aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/RRMPolicyRatio2.java
blob: 5669971d9542bc5a520f9b2c9603ffb0d29ce8d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731;
import java.lang.Integer;
import java.lang.Short;
import java.util.List;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.common.QName;

/**
 *
 * <p>
 * This class represents the following YANG schema fragment defined in module <b>_3gpp-common-yang-types</b>
 * <pre>
 * grouping RRMPolicyRatio2 {
 *   leaf groupId {
 *     type uint16;
 *   }
 *   leaf-list sNSSAI {
 *     type t_s-NSSAI;
 *   }
 *   leaf quotaType {
 *     type t_quotaType;
 *   }
 *   leaf rRMPolicyMaxRation {
 *     type uint8;
 *   }
 *   leaf rRMPolicyMarginMaxRation {
 *     type uint8;
 *   }
 *   leaf rRMPolicyMinRation {
 *     type uint8;
 *   }
 *   leaf rRMPolicyMarginMinRation {
 *     type uint8;
 *   }
 * }
 * </pre>The schema path to identify an instance is
 * <i>_3gpp-common-yang-types/RRMPolicyRatio2</i>
 *
 */
public interface RRMPolicyRatio2
    extends
    DataObject
{



    public static final QName QNAME = $YangModuleInfoImpl.qnameOf("RRMPolicyRatio2");

    /**
     * @return <code>java.lang.Integer</code> <code>groupId</code>, or <code>null</code> if not present
     */
    @Nullable Integer getGroupId();
    
    /**
     * @return <code>java.util.List</code> <code>sNSSAI</code>, or <code>null</code> if not present
     */
    @Nullable List<TSNSSAI> getSNSSAI();
    
    /**
     * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TQuotaType</code> <code>quotaType</code>, or <code>null</code> if not present
     */
    @Nullable TQuotaType getQuotaType();
    
    /**
     * @return <code>java.lang.Short</code> <code>rRMPolicyMaxRation</code>, or <code>null</code> if not present
     */
    @Nullable Short getRRMPolicyMaxRation();
    
    /**
     * @return <code>java.lang.Short</code> <code>rRMPolicyMarginMaxRation</code>, or <code>null</code> if not present
     */
    @Nullable Short getRRMPolicyMarginMaxRation();
    
    /**
     * @return <code>java.lang.Short</code> <code>rRMPolicyMinRation</code>, or <code>null</code> if not present
     */
    @Nullable Short getRRMPolicyMinRation();
    
    /**
     * @return <code>java.lang.Short</code> <code>rRMPolicyMarginMinRation</code>, or <code>null</code> if not present
     */
    @Nullable Short getRRMPolicyMarginMinRation();

}