toValue method

String toValue()

Implementation

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