toValue method
Implementation
String toValue() {
switch (this) {
case VideoJobStatus.inProgress:
return 'IN_PROGRESS';
case VideoJobStatus.succeeded:
return 'SUCCEEDED';
case VideoJobStatus.failed:
return 'FAILED';
}
}