Hello everybody,
I have a requirement where I need to set the value of TaxBookType enum to null.
So what I did is that I used the nullValue method, but It returns the TaxBookType::NotIncluded(EnumValue = 0).
public void myMethod()
{
TaxBookType taxBookType;
taxBookType = nullValue(taxBookType);
info(strfmt("%1", taxBookType));
}
It prints Not Included.
Does anyone has any idea, if it is possible to assing nullValue to taxBookType enum?
Thank you in advance.