v1SpeechToSpeechVoiceIdPostOutputFormatExplodedListToJson function

String v1SpeechToSpeechVoiceIdPostOutputFormatExplodedListToJson(
  1. List<V1SpeechToSpeechVoiceIdPostOutputFormat>? v1SpeechToSpeechVoiceIdPostOutputFormat
)

Implementation

String v1SpeechToSpeechVoiceIdPostOutputFormatExplodedListToJson(
    List<enums.V1SpeechToSpeechVoiceIdPostOutputFormat>?
        v1SpeechToSpeechVoiceIdPostOutputFormat) {
  return v1SpeechToSpeechVoiceIdPostOutputFormat
          ?.map((e) => e.value!)
          .join(',') ??
      '';
}