-
Notifications
You must be signed in to change notification settings - Fork 0
player
milan edited this page Jun 6, 2023
·
1 revision
//app/org.mjdev.balldontlie.model/Player/Player
[androidJvm]
constructor(@Json(name = "id")id: Int? = null, @Json(name = "first_name")firstName: String? = null, @Json(name = "last_name")lastName: String? = null, @Json(name = "position")position: String? = null, @Json(name = "team")team: Team = Team(), @Json(name = "height_feet")heightFeet: Int? = null, @Json(name = "height_inches")heightInches: Int? = null, @Json(name = "weight_pounds")weightPounds: Int? = null)