The ovrKeyValuePair struct represents a key-value pair, where the key is a string and the value can be either an integer, a double, or a string. This struct is used to represent data in the OculusPlatform API. See more details here.
Fields
string key_[Get]
This is a string that is used as a key for the ovrKeyValuePair struct. It will map to a value of either type integer, double, or string.
This is a explicit value that is used to indicate the type of the data that is stored in the ovrKeyValuePair struct. It can be either an integer, string, or double.
string stringValue_[Get]
This is a string value that is stored in the ovrKeyValuePair struct. It is only used if the the value type is of type string.
int intValue_[Get]
This is an integer value that is stored in the ovrKeyValuePair struct. It is only used if the the value type is of type integer.
double doubleValue_[Get]
This is a double value that is stored in the ovrKeyValuePair struct. It is only used if the the value type is of type double.