All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| calendar | CalendarDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"calendar" : {
"code" : "...",
"description" : "...",
"calendarType" : "YEARLY",
"days" : [ {
"day" : 12345,
"month" : "AUGUST"
}, {
"day" : 12345,
"month" : "MAY"
} ],
"hours" : [ {
"hour" : 12345,
"min" : 12345
}, {
"hour" : 12345,
"min" : 12345
} ],
"periodLength" : 12345,
"periodUnit" : "MONTH",
"nbPeriods" : 12345,
"joinCalendar1Code" : "...",
"joinCalendar2Code" : "...",
"intervalType" : "HOUR",
"intervals" : [ {
"intervalBegin" : 12345,
"intervalEnd" : 12345
}, {
"intervalBegin" : 12345,
"intervalEnd" : 12345
} ],
"updatedCode" : "..."
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "ACTION_FORBIDDEN",
"message" : "..."
}
}