Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,9 @@ partial void ProcessCampaignControllerCreateResponseContent(
/// <param name="squadOverrides">
/// These are the overrides for the squad and template variables for the campaign. Use this when the campaign targets a `squadId`. Per-contact `squadOverrides` are deep-merged on top of this at dispatch time.
/// </param>
/// <param name="server">
/// This is the server (URL, auth headers, timeout, etc.) for the campaign webhooks.
/// </param>
/// <param name="duplicateFromCampaignId">
/// Optional campaign ID to duplicate config from. Provided fields in the request override the source. If `customers` is omitted, contacts are copied from the source.
/// </param>
Expand All @@ -486,6 +489,7 @@ partial void ProcessCampaignControllerCreateResponseContent(
double? maxConcurrency = default,
global::Vapi.AssistantOverrides? assistantOverrides = default,
global::Vapi.AssistantOverrides? squadOverrides = default,
global::Vapi.Server? server = default,
string? duplicateFromCampaignId = default,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
Expand All @@ -503,6 +507,7 @@ partial void ProcessCampaignControllerCreateResponseContent(
MaxConcurrency = maxConcurrency,
AssistantOverrides = assistantOverrides,
SquadOverrides = squadOverrides,
Server = server,
DuplicateFromCampaignId = duplicateFromCampaignId,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,9 @@ partial void ProcessCampaignControllerCreateV2ResponseContent(
/// <param name="squadOverrides">
/// These are the overrides for the squad and template variables for the campaign. Use this when the campaign targets a `squadId`. Per-contact `squadOverrides` are deep-merged on top of this at dispatch time.
/// </param>
/// <param name="server">
/// This is the server (URL, auth headers, timeout, etc.) for the campaign webhooks.
/// </param>
/// <param name="duplicateFromCampaignId">
/// Optional campaign ID to duplicate config from. Provided fields in the request override the source. If `customers` is omitted, contacts are copied from the source.
/// </param>
Expand All @@ -486,6 +489,7 @@ partial void ProcessCampaignControllerCreateV2ResponseContent(
double? maxConcurrency = default,
global::Vapi.AssistantOverrides? assistantOverrides = default,
global::Vapi.AssistantOverrides? squadOverrides = default,
global::Vapi.Server? server = default,
string? duplicateFromCampaignId = default,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
Expand All @@ -503,6 +507,7 @@ partial void ProcessCampaignControllerCreateV2ResponseContent(
MaxConcurrency = maxConcurrency,
AssistantOverrides = assistantOverrides,
SquadOverrides = squadOverrides,
Server = server,
DuplicateFromCampaignId = duplicateFromCampaignId,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public partial interface ICampaignsClient
/// <param name="squadOverrides">
/// These are the overrides for the squad and template variables for the campaign. Use this when the campaign targets a `squadId`. Per-contact `squadOverrides` are deep-merged on top of this at dispatch time.
/// </param>
/// <param name="server">
/// This is the server (URL, auth headers, timeout, etc.) for the campaign webhooks.
/// </param>
/// <param name="duplicateFromCampaignId">
/// Optional campaign ID to duplicate config from. Provided fields in the request override the source. If `customers` is omitted, contacts are copied from the source.
/// </param>
Expand All @@ -83,6 +86,7 @@ public partial interface ICampaignsClient
double? maxConcurrency = default,
global::Vapi.AssistantOverrides? assistantOverrides = default,
global::Vapi.AssistantOverrides? squadOverrides = default,
global::Vapi.Server? server = default,
string? duplicateFromCampaignId = default,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public partial interface ICampaignsClient
/// <param name="squadOverrides">
/// These are the overrides for the squad and template variables for the campaign. Use this when the campaign targets a `squadId`. Per-contact `squadOverrides` are deep-merged on top of this at dispatch time.
/// </param>
/// <param name="server">
/// This is the server (URL, auth headers, timeout, etc.) for the campaign webhooks.
/// </param>
/// <param name="duplicateFromCampaignId">
/// Optional campaign ID to duplicate config from. Provided fields in the request override the source. If `customers` is omitted, contacts are copied from the source.
/// </param>
Expand All @@ -83,6 +86,7 @@ public partial interface ICampaignsClient
double? maxConcurrency = default,
global::Vapi.AssistantOverrides? assistantOverrides = default,
global::Vapi.AssistantOverrides? squadOverrides = default,
global::Vapi.Server? server = default,
string? duplicateFromCampaignId = default,
global::Vapi.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
Expand Down
Loading