File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.24.1-2~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 554,032 kB
  • sloc: java: 15,941; makefile: 419; sh: 175
file content (709 lines) | stat: -rw-r--r-- 20,595 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type BaseModelName string

// Enum values for BaseModelName
const (
	BaseModelNameNarrowBand BaseModelName = "NarrowBand"
	BaseModelNameWideBand   BaseModelName = "WideBand"
)

// Values returns all known values for BaseModelName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BaseModelName) Values() []BaseModelName {
	return []BaseModelName{
		"NarrowBand",
		"WideBand",
	}
}

type CallAnalyticsJobStatus string

// Enum values for CallAnalyticsJobStatus
const (
	CallAnalyticsJobStatusQueued     CallAnalyticsJobStatus = "QUEUED"
	CallAnalyticsJobStatusInProgress CallAnalyticsJobStatus = "IN_PROGRESS"
	CallAnalyticsJobStatusFailed     CallAnalyticsJobStatus = "FAILED"
	CallAnalyticsJobStatusCompleted  CallAnalyticsJobStatus = "COMPLETED"
)

// Values returns all known values for CallAnalyticsJobStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CallAnalyticsJobStatus) Values() []CallAnalyticsJobStatus {
	return []CallAnalyticsJobStatus{
		"QUEUED",
		"IN_PROGRESS",
		"FAILED",
		"COMPLETED",
	}
}

type CLMLanguageCode string

// Enum values for CLMLanguageCode
const (
	CLMLanguageCodeEnUs CLMLanguageCode = "en-US"
	CLMLanguageCodeHiIn CLMLanguageCode = "hi-IN"
	CLMLanguageCodeEsUs CLMLanguageCode = "es-US"
	CLMLanguageCodeEnGb CLMLanguageCode = "en-GB"
	CLMLanguageCodeEnAu CLMLanguageCode = "en-AU"
	CLMLanguageCodeDeDe CLMLanguageCode = "de-DE"
	CLMLanguageCodeJaJp CLMLanguageCode = "ja-JP"
)

// Values returns all known values for CLMLanguageCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CLMLanguageCode) Values() []CLMLanguageCode {
	return []CLMLanguageCode{
		"en-US",
		"hi-IN",
		"es-US",
		"en-GB",
		"en-AU",
		"de-DE",
		"ja-JP",
	}
}

type InputType string

// Enum values for InputType
const (
	InputTypeRealTime InputType = "REAL_TIME"
	InputTypePostCall InputType = "POST_CALL"
)

// Values returns all known values for InputType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (InputType) Values() []InputType {
	return []InputType{
		"REAL_TIME",
		"POST_CALL",
	}
}

type LanguageCode string

// Enum values for LanguageCode
const (
	LanguageCodeAfZa  LanguageCode = "af-ZA"
	LanguageCodeArAe  LanguageCode = "ar-AE"
	LanguageCodeArSa  LanguageCode = "ar-SA"
	LanguageCodeDaDk  LanguageCode = "da-DK"
	LanguageCodeDeCh  LanguageCode = "de-CH"
	LanguageCodeDeDe  LanguageCode = "de-DE"
	LanguageCodeEnAb  LanguageCode = "en-AB"
	LanguageCodeEnAu  LanguageCode = "en-AU"
	LanguageCodeEnGb  LanguageCode = "en-GB"
	LanguageCodeEnIe  LanguageCode = "en-IE"
	LanguageCodeEnIn  LanguageCode = "en-IN"
	LanguageCodeEnUs  LanguageCode = "en-US"
	LanguageCodeEnWl  LanguageCode = "en-WL"
	LanguageCodeEsEs  LanguageCode = "es-ES"
	LanguageCodeEsUs  LanguageCode = "es-US"
	LanguageCodeFaIr  LanguageCode = "fa-IR"
	LanguageCodeFrCa  LanguageCode = "fr-CA"
	LanguageCodeFrFr  LanguageCode = "fr-FR"
	LanguageCodeHeIl  LanguageCode = "he-IL"
	LanguageCodeHiIn  LanguageCode = "hi-IN"
	LanguageCodeIdId  LanguageCode = "id-ID"
	LanguageCodeItIt  LanguageCode = "it-IT"
	LanguageCodeJaJp  LanguageCode = "ja-JP"
	LanguageCodeKoKr  LanguageCode = "ko-KR"
	LanguageCodeMsMy  LanguageCode = "ms-MY"
	LanguageCodeNlNl  LanguageCode = "nl-NL"
	LanguageCodePtBr  LanguageCode = "pt-BR"
	LanguageCodePtPt  LanguageCode = "pt-PT"
	LanguageCodeRuRu  LanguageCode = "ru-RU"
	LanguageCodeTaIn  LanguageCode = "ta-IN"
	LanguageCodeTeIn  LanguageCode = "te-IN"
	LanguageCodeTrTr  LanguageCode = "tr-TR"
	LanguageCodeZhCn  LanguageCode = "zh-CN"
	LanguageCodeZhTw  LanguageCode = "zh-TW"
	LanguageCodeThTh  LanguageCode = "th-TH"
	LanguageCodeEnZa  LanguageCode = "en-ZA"
	LanguageCodeEnNz  LanguageCode = "en-NZ"
	LanguageCodeViVn  LanguageCode = "vi-VN"
	LanguageCodeSvSe  LanguageCode = "sv-SE"
	LanguageCodeAbGe  LanguageCode = "ab-GE"
	LanguageCodeAstEs LanguageCode = "ast-ES"
	LanguageCodeAzAz  LanguageCode = "az-AZ"
	LanguageCodeBaRu  LanguageCode = "ba-RU"
	LanguageCodeBeBy  LanguageCode = "be-BY"
	LanguageCodeBgBg  LanguageCode = "bg-BG"
	LanguageCodeBnIn  LanguageCode = "bn-IN"
	LanguageCodeBsBa  LanguageCode = "bs-BA"
	LanguageCodeCaEs  LanguageCode = "ca-ES"
	LanguageCodeCkbIq LanguageCode = "ckb-IQ"
	LanguageCodeCkbIr LanguageCode = "ckb-IR"
	LanguageCodeCsCz  LanguageCode = "cs-CZ"
	LanguageCodeCyWl  LanguageCode = "cy-WL"
	LanguageCodeElGr  LanguageCode = "el-GR"
	LanguageCodeEtEt  LanguageCode = "et-ET"
	LanguageCodeEuEs  LanguageCode = "eu-ES"
	LanguageCodeFiFi  LanguageCode = "fi-FI"
	LanguageCodeGlEs  LanguageCode = "gl-ES"
	LanguageCodeGuIn  LanguageCode = "gu-IN"
	LanguageCodeHaNg  LanguageCode = "ha-NG"
	LanguageCodeHrHr  LanguageCode = "hr-HR"
	LanguageCodeHuHu  LanguageCode = "hu-HU"
	LanguageCodeHyAm  LanguageCode = "hy-AM"
	LanguageCodeIsIs  LanguageCode = "is-IS"
	LanguageCodeKaGe  LanguageCode = "ka-GE"
	LanguageCodeKabDz LanguageCode = "kab-DZ"
	LanguageCodeKkKz  LanguageCode = "kk-KZ"
	LanguageCodeKnIn  LanguageCode = "kn-IN"
	LanguageCodeKyKg  LanguageCode = "ky-KG"
	LanguageCodeLgIn  LanguageCode = "lg-IN"
	LanguageCodeLtLt  LanguageCode = "lt-LT"
	LanguageCodeLvLv  LanguageCode = "lv-LV"
	LanguageCodeMhrRu LanguageCode = "mhr-RU"
	LanguageCodeMiNz  LanguageCode = "mi-NZ"
	LanguageCodeMkMk  LanguageCode = "mk-MK"
	LanguageCodeMlIn  LanguageCode = "ml-IN"
	LanguageCodeMnMn  LanguageCode = "mn-MN"
	LanguageCodeMrIn  LanguageCode = "mr-IN"
	LanguageCodeMtMt  LanguageCode = "mt-MT"
	LanguageCodeNoNo  LanguageCode = "no-NO"
	LanguageCodeOrIn  LanguageCode = "or-IN"
	LanguageCodePaIn  LanguageCode = "pa-IN"
	LanguageCodePlPl  LanguageCode = "pl-PL"
	LanguageCodePsAf  LanguageCode = "ps-AF"
	LanguageCodeRoRo  LanguageCode = "ro-RO"
	LanguageCodeRwRw  LanguageCode = "rw-RW"
	LanguageCodeSiLk  LanguageCode = "si-LK"
	LanguageCodeSkSk  LanguageCode = "sk-SK"
	LanguageCodeSlSi  LanguageCode = "sl-SI"
	LanguageCodeSoSo  LanguageCode = "so-SO"
	LanguageCodeSrRs  LanguageCode = "sr-RS"
	LanguageCodeSuId  LanguageCode = "su-ID"
	LanguageCodeSwBi  LanguageCode = "sw-BI"
	LanguageCodeSwKe  LanguageCode = "sw-KE"
	LanguageCodeSwRw  LanguageCode = "sw-RW"
	LanguageCodeSwTz  LanguageCode = "sw-TZ"
	LanguageCodeSwUg  LanguageCode = "sw-UG"
	LanguageCodeTlPh  LanguageCode = "tl-PH"
	LanguageCodeTtRu  LanguageCode = "tt-RU"
	LanguageCodeUgCn  LanguageCode = "ug-CN"
	LanguageCodeUkUa  LanguageCode = "uk-UA"
	LanguageCodeUzUz  LanguageCode = "uz-UZ"
	LanguageCodeWoSn  LanguageCode = "wo-SN"
	LanguageCodeZuZa  LanguageCode = "zu-ZA"
)

// Values returns all known values for LanguageCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LanguageCode) Values() []LanguageCode {
	return []LanguageCode{
		"af-ZA",
		"ar-AE",
		"ar-SA",
		"da-DK",
		"de-CH",
		"de-DE",
		"en-AB",
		"en-AU",
		"en-GB",
		"en-IE",
		"en-IN",
		"en-US",
		"en-WL",
		"es-ES",
		"es-US",
		"fa-IR",
		"fr-CA",
		"fr-FR",
		"he-IL",
		"hi-IN",
		"id-ID",
		"it-IT",
		"ja-JP",
		"ko-KR",
		"ms-MY",
		"nl-NL",
		"pt-BR",
		"pt-PT",
		"ru-RU",
		"ta-IN",
		"te-IN",
		"tr-TR",
		"zh-CN",
		"zh-TW",
		"th-TH",
		"en-ZA",
		"en-NZ",
		"vi-VN",
		"sv-SE",
		"ab-GE",
		"ast-ES",
		"az-AZ",
		"ba-RU",
		"be-BY",
		"bg-BG",
		"bn-IN",
		"bs-BA",
		"ca-ES",
		"ckb-IQ",
		"ckb-IR",
		"cs-CZ",
		"cy-WL",
		"el-GR",
		"et-ET",
		"eu-ES",
		"fi-FI",
		"gl-ES",
		"gu-IN",
		"ha-NG",
		"hr-HR",
		"hu-HU",
		"hy-AM",
		"is-IS",
		"ka-GE",
		"kab-DZ",
		"kk-KZ",
		"kn-IN",
		"ky-KG",
		"lg-IN",
		"lt-LT",
		"lv-LV",
		"mhr-RU",
		"mi-NZ",
		"mk-MK",
		"ml-IN",
		"mn-MN",
		"mr-IN",
		"mt-MT",
		"no-NO",
		"or-IN",
		"pa-IN",
		"pl-PL",
		"ps-AF",
		"ro-RO",
		"rw-RW",
		"si-LK",
		"sk-SK",
		"sl-SI",
		"so-SO",
		"sr-RS",
		"su-ID",
		"sw-BI",
		"sw-KE",
		"sw-RW",
		"sw-TZ",
		"sw-UG",
		"tl-PH",
		"tt-RU",
		"ug-CN",
		"uk-UA",
		"uz-UZ",
		"wo-SN",
		"zu-ZA",
	}
}

type MediaFormat string

// Enum values for MediaFormat
const (
	MediaFormatMp3  MediaFormat = "mp3"
	MediaFormatMp4  MediaFormat = "mp4"
	MediaFormatWav  MediaFormat = "wav"
	MediaFormatFlac MediaFormat = "flac"
	MediaFormatOgg  MediaFormat = "ogg"
	MediaFormatAmr  MediaFormat = "amr"
	MediaFormatWebm MediaFormat = "webm"
	MediaFormatM4a  MediaFormat = "m4a"
)

// Values returns all known values for MediaFormat. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (MediaFormat) Values() []MediaFormat {
	return []MediaFormat{
		"mp3",
		"mp4",
		"wav",
		"flac",
		"ogg",
		"amr",
		"webm",
		"m4a",
	}
}

type MedicalContentIdentificationType string

// Enum values for MedicalContentIdentificationType
const (
	MedicalContentIdentificationTypePhi MedicalContentIdentificationType = "PHI"
)

// Values returns all known values for MedicalContentIdentificationType. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (MedicalContentIdentificationType) Values() []MedicalContentIdentificationType {
	return []MedicalContentIdentificationType{
		"PHI",
	}
}

type MedicalScribeJobStatus string

// Enum values for MedicalScribeJobStatus
const (
	MedicalScribeJobStatusQueued     MedicalScribeJobStatus = "QUEUED"
	MedicalScribeJobStatusInProgress MedicalScribeJobStatus = "IN_PROGRESS"
	MedicalScribeJobStatusFailed     MedicalScribeJobStatus = "FAILED"
	MedicalScribeJobStatusCompleted  MedicalScribeJobStatus = "COMPLETED"
)

// Values returns all known values for MedicalScribeJobStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (MedicalScribeJobStatus) Values() []MedicalScribeJobStatus {
	return []MedicalScribeJobStatus{
		"QUEUED",
		"IN_PROGRESS",
		"FAILED",
		"COMPLETED",
	}
}

type MedicalScribeLanguageCode string

// Enum values for MedicalScribeLanguageCode
const (
	MedicalScribeLanguageCodeEnUs MedicalScribeLanguageCode = "en-US"
)

// Values returns all known values for MedicalScribeLanguageCode. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (MedicalScribeLanguageCode) Values() []MedicalScribeLanguageCode {
	return []MedicalScribeLanguageCode{
		"en-US",
	}
}

type MedicalScribeParticipantRole string

// Enum values for MedicalScribeParticipantRole
const (
	MedicalScribeParticipantRolePatient   MedicalScribeParticipantRole = "PATIENT"
	MedicalScribeParticipantRoleClinician MedicalScribeParticipantRole = "CLINICIAN"
)

// Values returns all known values for MedicalScribeParticipantRole. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (MedicalScribeParticipantRole) Values() []MedicalScribeParticipantRole {
	return []MedicalScribeParticipantRole{
		"PATIENT",
		"CLINICIAN",
	}
}

type ModelStatus string

// Enum values for ModelStatus
const (
	ModelStatusInProgress ModelStatus = "IN_PROGRESS"
	ModelStatusFailed     ModelStatus = "FAILED"
	ModelStatusCompleted  ModelStatus = "COMPLETED"
)

// Values returns all known values for ModelStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ModelStatus) Values() []ModelStatus {
	return []ModelStatus{
		"IN_PROGRESS",
		"FAILED",
		"COMPLETED",
	}
}

type OutputLocationType string

// Enum values for OutputLocationType
const (
	OutputLocationTypeCustomerBucket OutputLocationType = "CUSTOMER_BUCKET"
	OutputLocationTypeServiceBucket  OutputLocationType = "SERVICE_BUCKET"
)

// Values returns all known values for OutputLocationType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (OutputLocationType) Values() []OutputLocationType {
	return []OutputLocationType{
		"CUSTOMER_BUCKET",
		"SERVICE_BUCKET",
	}
}

type ParticipantRole string

// Enum values for ParticipantRole
const (
	ParticipantRoleAgent    ParticipantRole = "AGENT"
	ParticipantRoleCustomer ParticipantRole = "CUSTOMER"
)

// Values returns all known values for ParticipantRole. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ParticipantRole) Values() []ParticipantRole {
	return []ParticipantRole{
		"AGENT",
		"CUSTOMER",
	}
}

type PiiEntityType string

// Enum values for PiiEntityType
const (
	PiiEntityTypeBankAccountNumber PiiEntityType = "BANK_ACCOUNT_NUMBER"
	PiiEntityTypeBankRouting       PiiEntityType = "BANK_ROUTING"
	PiiEntityTypeCreditDebitNumber PiiEntityType = "CREDIT_DEBIT_NUMBER"
	PiiEntityTypeCreditDebitCvv    PiiEntityType = "CREDIT_DEBIT_CVV"
	PiiEntityTypeCreditDebitExpiry PiiEntityType = "CREDIT_DEBIT_EXPIRY"
	PiiEntityTypePin               PiiEntityType = "PIN"
	PiiEntityTypeEmail             PiiEntityType = "EMAIL"
	PiiEntityTypeAddress           PiiEntityType = "ADDRESS"
	PiiEntityTypeName              PiiEntityType = "NAME"
	PiiEntityTypePhone             PiiEntityType = "PHONE"
	PiiEntityTypeSsn               PiiEntityType = "SSN"
	PiiEntityTypeAll               PiiEntityType = "ALL"
)

// Values returns all known values for PiiEntityType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PiiEntityType) Values() []PiiEntityType {
	return []PiiEntityType{
		"BANK_ACCOUNT_NUMBER",
		"BANK_ROUTING",
		"CREDIT_DEBIT_NUMBER",
		"CREDIT_DEBIT_CVV",
		"CREDIT_DEBIT_EXPIRY",
		"PIN",
		"EMAIL",
		"ADDRESS",
		"NAME",
		"PHONE",
		"SSN",
		"ALL",
	}
}

type RedactionOutput string

// Enum values for RedactionOutput
const (
	RedactionOutputRedacted              RedactionOutput = "redacted"
	RedactionOutputRedactedAndUnredacted RedactionOutput = "redacted_and_unredacted"
)

// Values returns all known values for RedactionOutput. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RedactionOutput) Values() []RedactionOutput {
	return []RedactionOutput{
		"redacted",
		"redacted_and_unredacted",
	}
}

type RedactionType string

// Enum values for RedactionType
const (
	RedactionTypePii RedactionType = "PII"
)

// Values returns all known values for RedactionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RedactionType) Values() []RedactionType {
	return []RedactionType{
		"PII",
	}
}

type SentimentValue string

// Enum values for SentimentValue
const (
	SentimentValuePositive SentimentValue = "POSITIVE"
	SentimentValueNegative SentimentValue = "NEGATIVE"
	SentimentValueNeutral  SentimentValue = "NEUTRAL"
	SentimentValueMixed    SentimentValue = "MIXED"
)

// Values returns all known values for SentimentValue. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SentimentValue) Values() []SentimentValue {
	return []SentimentValue{
		"POSITIVE",
		"NEGATIVE",
		"NEUTRAL",
		"MIXED",
	}
}

type Specialty string

// Enum values for Specialty
const (
	SpecialtyPrimarycare Specialty = "PRIMARYCARE"
)

// Values returns all known values for Specialty. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Specialty) Values() []Specialty {
	return []Specialty{
		"PRIMARYCARE",
	}
}

type SubtitleFormat string

// Enum values for SubtitleFormat
const (
	SubtitleFormatVtt SubtitleFormat = "vtt"
	SubtitleFormatSrt SubtitleFormat = "srt"
)

// Values returns all known values for SubtitleFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SubtitleFormat) Values() []SubtitleFormat {
	return []SubtitleFormat{
		"vtt",
		"srt",
	}
}

type ToxicityCategory string

// Enum values for ToxicityCategory
const (
	ToxicityCategoryAll ToxicityCategory = "ALL"
)

// Values returns all known values for ToxicityCategory. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ToxicityCategory) Values() []ToxicityCategory {
	return []ToxicityCategory{
		"ALL",
	}
}

type TranscriptFilterType string

// Enum values for TranscriptFilterType
const (
	TranscriptFilterTypeExact TranscriptFilterType = "EXACT"
)

// Values returns all known values for TranscriptFilterType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TranscriptFilterType) Values() []TranscriptFilterType {
	return []TranscriptFilterType{
		"EXACT",
	}
}

type TranscriptionJobStatus string

// Enum values for TranscriptionJobStatus
const (
	TranscriptionJobStatusQueued     TranscriptionJobStatus = "QUEUED"
	TranscriptionJobStatusInProgress TranscriptionJobStatus = "IN_PROGRESS"
	TranscriptionJobStatusFailed     TranscriptionJobStatus = "FAILED"
	TranscriptionJobStatusCompleted  TranscriptionJobStatus = "COMPLETED"
)

// Values returns all known values for TranscriptionJobStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TranscriptionJobStatus) Values() []TranscriptionJobStatus {
	return []TranscriptionJobStatus{
		"QUEUED",
		"IN_PROGRESS",
		"FAILED",
		"COMPLETED",
	}
}

type Type string

// Enum values for Type
const (
	TypeConversation Type = "CONVERSATION"
	TypeDictation    Type = "DICTATION"
)

// Values returns all known values for Type. Note that this can be expanded in the
// future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Type) Values() []Type {
	return []Type{
		"CONVERSATION",
		"DICTATION",
	}
}

type VocabularyFilterMethod string

// Enum values for VocabularyFilterMethod
const (
	VocabularyFilterMethodRemove VocabularyFilterMethod = "remove"
	VocabularyFilterMethodMask   VocabularyFilterMethod = "mask"
	VocabularyFilterMethodTag    VocabularyFilterMethod = "tag"
)

// Values returns all known values for VocabularyFilterMethod. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (VocabularyFilterMethod) Values() []VocabularyFilterMethod {
	return []VocabularyFilterMethod{
		"remove",
		"mask",
		"tag",
	}
}

type VocabularyState string

// Enum values for VocabularyState
const (
	VocabularyStatePending VocabularyState = "PENDING"
	VocabularyStateReady   VocabularyState = "READY"
	VocabularyStateFailed  VocabularyState = "FAILED"
)

// Values returns all known values for VocabularyState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (VocabularyState) Values() []VocabularyState {
	return []VocabularyState{
		"PENDING",
		"READY",
		"FAILED",
	}
}