copyWithWrapped method
BodyCreateAgentV1ConvaiAgentsCreatePost
copyWithWrapped({
- Wrapped<
ConversationalConfigAPIModelInput> ? conversationConfig, - Wrapped? platformSettings,
- Wrapped? name,
- Wrapped? tags,
Implementation
BodyCreateAgentV1ConvaiAgentsCreatePost copyWithWrapped(
{Wrapped<ConversationalConfigAPIModelInput>? conversationConfig,
Wrapped<dynamic>? platformSettings,
Wrapped<dynamic>? name,
Wrapped<dynamic>? tags}) {
return BodyCreateAgentV1ConvaiAgentsCreatePost(
conversationConfig: (conversationConfig != null
? conversationConfig.value
: this.conversationConfig),
platformSettings: (platformSettings != null
? platformSettings.value
: this.platformSettings),
name: (name != null ? name.value : this.name),
tags: (tags != null ? tags.value : this.tags));
}