toValue method
Implementation
String toValue() {
switch (this) {
case DeliverabilityTestStatus.inProgress:
return 'IN_PROGRESS';
case DeliverabilityTestStatus.completed:
return 'COMPLETED';
}
}
String toValue() {
switch (this) {
case DeliverabilityTestStatus.inProgress:
return 'IN_PROGRESS';
case DeliverabilityTestStatus.completed:
return 'COMPLETED';
}
}