Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 834 Bytes

Players.md

File metadata and controls

30 lines (21 loc) · 834 Bytes

Players

Properties

Name Type Description Notes
id str id of the player
type str Type of the player

Example

from fireblocks.models.players import Players

# TODO update the JSON string below
json = "{}"
# create an instance of Players from a JSON string
players_instance = Players.from_json(json)
# print the JSON string representation of the object
print(Players.to_json())

# convert the object into a dict
players_dict = players_instance.to_dict()
# create an instance of Players from a dict
players_from_dict = Players.from_dict(players_dict)

[Back to Model list] [Back to API list] [Back to README]