interface ServiceResponse
An object which represents a response to an routing request.
| static val HTTP_OK_CODE: Int | 
| abstract fun getErrorMessage(): String!The error message, as returned by the server. Only defined in case of an error. | |
| abstract fun getResponseStatus(): ResponseStatus!The error message or success,as returned by the server and code. | |
| abstract fun getTrackingId(): Optional<String!>!An identifier for the request replicated in the response. | |
| abstract fun hasError(): BooleanTrue if an error occurred, false otherwise. | 
| open class ServiceBaseResponse : ServiceResponse |