toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conversationConfig = this.conversationConfig;
final gcsSource = this.gcsSource;
final parent = this.parent;
final redactionConfig = this.redactionConfig;
final sampleSize = this.sampleSize;
final speechConfig = this.speechConfig;
final transcriptObjectConfig = this.transcriptObjectConfig;
return {
'conversationConfig': ?conversationConfig,
'gcsSource': ?gcsSource,
'parent': ?parent,
'redactionConfig': ?redactionConfig,
'sampleSize': ?sampleSize,
'speechConfig': ?speechConfig,
'transcriptObjectConfig': ?transcriptObjectConfig,
};
}