copyWith method

Implementation

ConversationConfigClientOverrideConfigInput copyWith(
    {TTSConversationalConfigOverrideConfig? tts,
    ConversationConfigOverrideConfig? conversation,
    AgentConfigOverrideConfig? agent}) {
  return ConversationConfigClientOverrideConfigInput(
      tts: tts ?? this.tts,
      conversation: conversation ?? this.conversation,
      agent: agent ?? this.agent);
}