AATKitGender

enum class AATKitGender(val value: String) {
    MALE("M"),
    FEMALE("F"),
    OTHER("O")
}

Last updated