GET api/StudentCourseStudyPlan/GetStudentStudyPlanHours?registrationId={registrationId}
Used to get the required and available hours for study plan hours
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| registrationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StudentStudyPlanHours| Name | Description | Type | Additional information |
|---|---|---|---|
| AvailableHours |
Gets or sets the available hours |
decimal number |
None. |
| RequiredHours |
Gets or sets the required hours |
decimal number |
None. |
| IsRevisionRequired |
Gets or sets whether the revison is required or not |
boolean |
None. |
| RevisionCount |
Used to get the count of revision |
integer |
None. |
| TotalSubjectHours | decimal number |
None. |
|
| TotalRevisionHours | decimal number |
None. |
|
| IsChangehoursRequired | boolean |
None. |
|
| IsEditStudyPlan | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"AvailableHours": 1.1,
"RequiredHours": 2.1,
"IsRevisionRequired": true,
"RevisionCount": 4,
"TotalSubjectHours": 5.1,
"TotalRevisionHours": 6.1,
"IsChangehoursRequired": true,
"IsEditStudyPlan": true
}