All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| revenueRecognitionRule | array of RevenueRecognitionRuleDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"revenueRecognitionRule" : [ {
"code" : "...",
"description" : "...",
"disabled" : true,
"startDelay" : 12345,
"startUnit" : "DAY",
"startEvent" : "SERVICE_PERIOD_STOP",
"stopDelay" : 12345,
"stopUnit" : "DAY",
"stopEvent" : "SERVICE_PERIOD_START",
"script" : {
"executionRoles" : [ { }, { } ],
"sourcingRoles" : [ { }, { } ],
"code" : "...",
"description" : "...",
"type" : "JAVA",
"script" : "..."
}
}, {
"code" : "...",
"description" : "...",
"disabled" : true,
"startDelay" : 12345,
"startUnit" : "MONTH",
"startEvent" : "INVOICE_DATE",
"stopDelay" : 12345,
"stopUnit" : "DAY",
"stopEvent" : "INVOICE_DUE_DATE",
"script" : {
"executionRoles" : [ { }, { } ],
"sourcingRoles" : [ { }, { } ],
"code" : "...",
"description" : "...",
"type" : "JAVA",
"script" : "..."
}
} ],
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "BUSINESS_API_EXCEPTION",
"message" : "..."
}
}