common User¶ @Serializable data class User( val _id: ObjectId, val profile: Profile, val pets: List<Pet> ) Constructors¶ User¶ constructor( _id: ObjectId, profile: Profile, pets: List<Pet> ) Properties¶ _id¶ val _id: ObjectId pets¶ val pets: List<Pet> profile¶ val profile: Profile