toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case TemplateType.email:
      return 'EMAIL';
    case TemplateType.sms:
      return 'SMS';
    case TemplateType.voice:
      return 'VOICE';
    case TemplateType.push:
      return 'PUSH';
  }
}