toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case InstanceAttributeType.inboundCalls:
      return 'INBOUND_CALLS';
    case InstanceAttributeType.outboundCalls:
      return 'OUTBOUND_CALLS';
    case InstanceAttributeType.contactflowLogs:
      return 'CONTACTFLOW_LOGS';
    case InstanceAttributeType.contactLens:
      return 'CONTACT_LENS';
    case InstanceAttributeType.autoResolveBestVoices:
      return 'AUTO_RESOLVE_BEST_VOICES';
    case InstanceAttributeType.useCustomTtsVoices:
      return 'USE_CUSTOM_TTS_VOICES';
    case InstanceAttributeType.earlyMedia:
      return 'EARLY_MEDIA';
  }
}