Entity ID

Report a typo

We have an entity class:

Java
public class GeekDesk {
    private String model;
    private String inventoryNumber;
    private String manufacturer;
    private String color;
}
Kotlin
class GeekDesk(
    var model: String,
    var inventoryNumber: String,
    var manufacturer: String,
    var color: String
)

Write the name of the property that best fits as an entity ID.

Select one option from the list
___

Create a free account to access the full topic