export classOcaVariant{
/**
* A classholdingthevalueofanOcaVariant.
* @classOcaVariant
*/
constructor(index, value) {
/**
* The index of the variant alternative.
* @type number
*/
this.Index = index;
/**
* The value.
* @type any
*/
this.Value = value;
}
}