设备属性Key信息
class AutelKeyInfo
描述: 设备属性Key信息
public class AutelKeyInfo<T> {
    /**
     * 模块类型
     */
    public int componentType;
    /**
     * 子模块类型
     */
    public int mSubComponentIndex;
    /**
     * 键名
     */
    public String keyName;
    /**
     * 生成消息的转换器
     */
    private IAutelConverter<T, ? extends GeneratedMessageV3> converter;
    /**
     * 关于是否获得的布尔值
     */
    public boolean canGet;
    /**
     * 关于是否设置的布尔值
     */
    public boolean canSet;
    /**
     * 关于是否收听的布尔值
     */
    public boolean canListen;
    /**
     * 关于是否执行操作的布尔值
     */
    public boolean canPerformAction;
    /**
     * 关于是否报告的布尔值
     */
    public boolean canReport;
    /**
     * 关于事件检测与否的布尔值
     */
    public boolean mIsEvent;
    /**
     * 定义标识符
     */
    public String identifier;
    /**
     * 内部标识符定义
     */
    public String innerIdentifier;
}