Kotlin AndroidServiceClient - Using Enum

Hello,

When generating ServiceStack references Enum type is defined as string (lower case) which produce error.
Example:
Server side:

public class User
{
    public Status UserStatus { get; set; }
}
public enum Status { Ok, Bad, Waiting };

Client side (kotlin):

open class User
{
    var UserStatus:string? = null //error
}

enum class Status
{
    Ok,
    Bad,
    Waiting
}

I’m not seeing this behavior, are you using the latest version of ServiceStack or are using some non-default configuration?

This is what I get:

open class User
{
    var UserStatus:Status? = null
}

enum class Status(val value:Int)
{
    Ok(Ok),
    Bad(Bad),
    Waiting(Waiting),
}

Yes, sorry about this.
I was on 4.0.60 - just updated to 4.0.62 and now is OK.

Thank you