open class ServiceBaseResponse : ServiceResponse
| ServiceBaseResponse() | 
| var error: ResponseStatus! | |
| var trackingId: String! | 
| static val HTTP_OK_CODE: Int | 
| open fun getErrorMessage(): String!The error message if applicable. | |
| open fun getResponseStatus(): ResponseStatus!The error which occurred during the query process. It might be null. | |
| open fun getTrackingId(): Optional<String!>!An identifier for the request replicated in the response. | |
| open fun hasError(): BooleanSpecifies if the response has error. |