Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.16 KB

PlayerTransfer.md

File metadata and controls

37 lines (29 loc) · 1.16 KB

PlayerTransfer

Properties

Name Type Description Notes
season int
first_name str
last_name str
position str
origin str
destination str
transfer_date datetime
rating float
stars int
eligibility TransferEligibility

Example

from cfbd.models.player_transfer import PlayerTransfer

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

# convert the object into a dict
player_transfer_dict = player_transfer_instance.to_dict()
# create an instance of PlayerTransfer from a dict
player_transfer_from_dict = PlayerTransfer.from_dict(player_transfer_dict)

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