bodySpeechToTextV1SpeechToTextPostTimestampsGranularityExplodedListToJson function

String bodySpeechToTextV1SpeechToTextPostTimestampsGranularityExplodedListToJson(
  1. List<BodySpeechToTextV1SpeechToTextPostTimestampsGranularity>? bodySpeechToTextV1SpeechToTextPostTimestampsGranularity
)

Implementation

String
    bodySpeechToTextV1SpeechToTextPostTimestampsGranularityExplodedListToJson(
        List<enums.BodySpeechToTextV1SpeechToTextPostTimestampsGranularity>?
            bodySpeechToTextV1SpeechToTextPostTimestampsGranularity) {
  return bodySpeechToTextV1SpeechToTextPostTimestampsGranularity
          ?.map((e) => e.value!)
          .join(',') ??
      '';
}