All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| calendars | CalendarsDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"calendars" : {
"calendar" : [ {
"code" : "...",
"description" : "...",
"calendarType" : "INTERVAL",
"days" : [ { }, { } ],
"hours" : [ { }, { } ],
"periodLength" : 12345,
"periodUnit" : "DAY_OF_MONTH",
"nbPeriods" : 12345,
"joinCalendar1Code" : "...",
"joinCalendar2Code" : "...",
"intervalType" : "WDAY",
"intervals" : [ { }, { } ],
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"calendarType" : "YEARLY",
"days" : [ { }, { } ],
"hours" : [ { }, { } ],
"periodLength" : 12345,
"periodUnit" : "MONTH",
"nbPeriods" : 12345,
"joinCalendar1Code" : "...",
"joinCalendar2Code" : "...",
"intervalType" : "DAY",
"intervals" : [ { }, { } ],
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "DUPLICATE_ACCESS",
"message" : "..."
}
}