Blame view

docs/StudentDetails.md 917 Bytes
Evgeniy Pavlovskiy authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
# StudentDetails


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**student_id** | **int** |  | 
**student_name** | **str** |  | 

## Example

```python
from openapi_client.models.student_details import StudentDetails

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

# convert the object into a dict
student_details_dict = student_details_instance.to_dict()
# create an instance of StudentDetails from a dict
student_details_from_dict = StudentDetails.from_dict(student_details_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)