Class: Player
# Class: Player
# Example
const player = await client.player.uuid("20934ef9488c465180a78f861586b4cf");
1
# Extends
Method
# API
# uuid()
uuid(
uuid
):Promise
<ResultObject
<PlayerResponse
, ["player"
]>>
Returns a player's data, such as game stats.
# Parameters
• uuid: string
# Returns
Promise
<ResultObject
<PlayerResponse
, ["player"
]>>
# Example
const player = await client.player.uuid("20934ef9488c465180a78f861586b4cf");
console.log(player);
1
2
2