Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.19 KB

File metadata and controls

39 lines (31 loc) · 1.19 KB

Transfer

Properties

Name Type Description Notes
id int
source_id str
year int
first_name str
last_name str
position str
origin TransferOrigin
destination RecruitCommittedTo
eligibility TransferEligibility
years_remaining int
stars int
rating float

Example

from cbbd.models.transfer import Transfer

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

# convert the object into a dict
transfer_dict = transfer_instance.to_dict()
# create an instance of Transfer from a dict
transfer_from_dict = Transfer.from_dict(transfer_dict)

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