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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ public sealed partial class CreateDrainResponseVariant1Schemas
[global::System.Text.Json.Serialization.JsonPropertyName("ai_gateway")]
public object? AiGateway { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("ai_gateway_trace")]
public object? AiGatewayTrace { get; set; }

/// <summary>
///
/// </summary>
Expand All @@ -64,7 +58,6 @@ public sealed partial class CreateDrainResponseVariant1Schemas
/// <param name="analytics"></param>
/// <param name="speedInsights"></param>
/// <param name="aiGateway"></param>
/// <param name="aiGatewayTrace"></param>
/// <param name="auditLog"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand All @@ -75,15 +68,13 @@ public CreateDrainResponseVariant1Schemas(
object? analytics,
object? speedInsights,
object? aiGateway,
object? aiGatewayTrace,
object? auditLog)
{
this.Log = log;
this.Trace = trace;
this.Analytics = analytics;
this.SpeedInsights = speedInsights;
this.AiGateway = aiGateway;
this.AiGatewayTrace = aiGatewayTrace;
this.AuditLog = auditLog;
}

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ public sealed partial class CreateDrainResponseVariant2Schemas
[global::System.Text.Json.Serialization.JsonPropertyName("ai_gateway")]
public object? AiGateway { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("ai_gateway_trace")]
public object? AiGatewayTrace { get; set; }

/// <summary>
///
/// </summary>
Expand All @@ -64,7 +58,6 @@ public sealed partial class CreateDrainResponseVariant2Schemas
/// <param name="analytics"></param>
/// <param name="speedInsights"></param>
/// <param name="aiGateway"></param>
/// <param name="aiGatewayTrace"></param>
/// <param name="auditLog"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand All @@ -75,15 +68,13 @@ public CreateDrainResponseVariant2Schemas(
object? analytics,
object? speedInsights,
object? aiGateway,
object? aiGatewayTrace,
object? auditLog)
{
this.Log = log;
this.Trace = trace;
this.Analytics = analytics;
this.SpeedInsights = speedInsights;
this.AiGateway = aiGateway;
this.AiGatewayTrace = aiGatewayTrace;
this.AuditLog = auditLog;
}

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ public sealed partial class GetAllLogDrainsResponseDrainsVariant1ItemSchemas
[global::System.Text.Json.Serialization.JsonPropertyName("ai_gateway")]
public object? AiGateway { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("ai_gateway_trace")]
public object? AiGatewayTrace { get; set; }

/// <summary>
///
/// </summary>
Expand All @@ -64,7 +58,6 @@ public sealed partial class GetAllLogDrainsResponseDrainsVariant1ItemSchemas
/// <param name="analytics"></param>
/// <param name="speedInsights"></param>
/// <param name="aiGateway"></param>
/// <param name="aiGatewayTrace"></param>
/// <param name="auditLog"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand All @@ -75,15 +68,13 @@ public GetAllLogDrainsResponseDrainsVariant1ItemSchemas(
object? analytics,
object? speedInsights,
object? aiGateway,
object? aiGatewayTrace,
object? auditLog)
{
this.Log = log;
this.Trace = trace;
this.Analytics = analytics;
this.SpeedInsights = speedInsights;
this.AiGateway = aiGateway;
this.AiGatewayTrace = aiGatewayTrace;
this.AuditLog = auditLog;
}

Expand Down
Loading