toValue method
Implementation
String toValue() {
switch (this) {
case BillingMode.provisioned:
return 'PROVISIONED';
case BillingMode.payPerRequest:
return 'PAY_PER_REQUEST';
}
}
String toValue() {
switch (this) {
case BillingMode.provisioned:
return 'PROVISIONED';
case BillingMode.payPerRequest:
return 'PAY_PER_REQUEST';
}
}