Class RecognitionJob
- All Implemented Interfaces:
- com.ibm.cloud.sdk.core.service.model.ObjectModel
public class RecognitionJob
extends com.ibm.cloud.sdk.core.service.model.GenericModel
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static interfaceRecognitionJob.StatusThe current status of the job: * `waiting`: The service is preparing the job for processing.
- 
Constructor SummaryConstructors Constructor Description RecognitionJob()
- 
Method SummaryModifier and Type Method Description StringgetCreated()Gets the created.StringgetId()Gets the id.List<SpeechRecognitionResults>getResults()Gets the results.StringgetStatus()Gets the status.StringgetUpdated()Gets the updated.StringgetUrl()Gets the url.StringgetUserToken()Gets the userToken.List<String>getWarnings()Gets the warnings.Methods inherited from class com.ibm.cloud.sdk.core.service.model.GenericModelequals, hashCode, toString
- 
Constructor Details- 
RecognitionJobpublic RecognitionJob()
 
- 
- 
Method Details- 
getIdGets the id.The ID of the asynchronous job. - Returns:
- the id
 
- 
getStatusGets the status.The current status of the job: * `waiting`: The service is preparing the job for processing. The service returns this status when the job is initially created or when it is waiting for capacity to process the job. The job remains in this state until the service has the capacity to begin processing it. * `processing`: The service is actively processing the job. * `completed`: The service has finished processing the job. If the job specified a callback URL and the event `recognitions.completed_with_results`, the service sent the results with the callback notification. Otherwise, you must retrieve the results by checking the individual job. * `failed`: The job failed. - Returns:
- the status
 
- 
getCreatedGets the created.The date and time in Coordinated Universal Time (UTC) at which the job was created. The value is provided in full ISO 8601 format (`YYYY-MM-DDThh:mm:ss.sTZD`). - Returns:
- the created
 
- 
getUpdatedGets the updated.The date and time in Coordinated Universal Time (UTC) at which the job was last updated by the service. The value is provided in full ISO 8601 format (`YYYY-MM-DDThh:mm:ss.sTZD`). This field is returned only by the [Check jobs](#checkjobs) and [Check a job[(#checkjob) methods. - Returns:
- the updated
 
- 
getUrlGets the url.The URL to use to request information about the job with the [Check a job](#checkjob) method. This field is returned only by the [Create a job](#createjob) method. - Returns:
- the url
 
- 
getUserTokenGets the userToken.The user token associated with a job that was created with a callback URL and a user token. This field can be returned only by the [Check jobs](#checkjobs) method. - Returns:
- the userToken
 
- 
getResultsGets the results.If the status is `completed`, the results of the recognition request as an array that includes a single instance of a `SpeechRecognitionResults` object. This field is returned only by the [Check a job](#checkjob) method. - Returns:
- the results
 
- 
getWarningsGets the warnings.An array of warning messages about invalid parameters included with the request. Each warning includes a descriptive message and a list of invalid argument strings, for example, `"unexpected query parameter 'user_token', query parameter 'callback_url' was not specified"`. The request succeeds despite the warnings. This field can be returned only by the [Create a job](#createjob) method. - Returns:
- the warnings
 
 
-