AutelKeyInfo
class AutelKeyInfo
Description: Device property key Info
public class AutelKeyInfo<T> {
/**
* module type
*/
public int componentType;
/**
* sub module type
*/
public int mSubComponentIndex;
/**
* key name
*/
public String keyName;
/**
* converter for generated message
*/
private IAutelConverter<T, ? extends GeneratedMessageV3> converter;
/**
* boolean about getting or not
*/
public boolean canGet;
/**
* boolean about setting or not
*/
public boolean canSet;
/**
* boolean about listening or not
*/
public boolean canListen;
/**
* boolean about perform action or not
*/
public boolean canPerformAction;
/**
* boolean about report or not
*/
public boolean canReport;
/**
* boolean about event detect or not
*/
public boolean mIsEvent;
/**
* defines identifier
*/
public String identifier;
/**
* inner identifier define
*/
public String innerIdentifier;
}