diff --git a/src/libs/Fal/Generated/Fal.IServerlessClient.ServerlessGetRunnerHistory.g.cs b/src/libs/Fal/Generated/Fal.IServerlessClient.ServerlessGetRunnerHistory.g.cs
new file mode 100644
index 0000000..89bf9f1
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.IServerlessClient.ServerlessGetRunnerHistory.g.cs
@@ -0,0 +1,110 @@
+#nullable enable
+
+namespace Fal
+{
+ public partial interface IServerlessClient
+ {
+ ///
+ /// Runner State History
+ /// Returns historical runner counts by state (running, idle, pending, draining)
+ /// for an application, bucketed over time.
+ /// **Use cases:**
+ /// - Capacity/utilization analysis: compare idle vs running over days or weeks
+ /// to see how much reserved capacity goes unused (use `aggregation=avg`)
+ /// - Incident forensics: correlate error spikes with runner drops or drain
+ /// events around the incident window (use `aggregation=max`)
+ /// **Time range:** up to 90 days of history. Defaults to the last 24 hours when
+ /// `start`/`end` are omitted. Bucket size is auto-detected from the range
+ /// unless `timeframe` is specified.
+ /// **Authentication:** Required via API key. Only the app owner can query it.
+ ///
+ ///
+ /// Username of the app owner
+ /// Example: user_123
+ ///
+ ///
+ /// Application name
+ /// Example: my-app
+ ///
+ ///
+ /// Start date in ISO8601 format (e.g., '2025-01-01T00:00:00Z' or '2025-01-01'). Defaults to 24 hours ago.
+ /// Example: 2025-01-01T00:00:00Z
+ ///
+ ///
+ /// End date in ISO8601 format, exclusive (e.g., '2025-02-01T00:00:00Z' or '2025-02-01'). Data up to but not including this timestamp is returned. Defaults to current time.
+ /// Example: 2025-02-01T00:00:00Z
+ ///
+ ///
+ /// Bucket size for the time series (auto-detected from the date range if not specified). Auto-detection uses: minute (<2h), hour (<2d), day (<64d), week (<183d), month (>=183d).
+ /// Example: day
+ ///
+ ///
+ /// How runner counts are aggregated within each bucket: 'max' shows peak concurrency (capacity analysis), 'avg' shows mean concurrency (utilization analysis).
+ /// Default Value: max
+ /// Example: max
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task ServerlessGetRunnerHistoryAsync(
+ string owner,
+ string name,
+ global::Fal.AnyOf? start = default,
+ global::Fal.AnyOf? end = default,
+ global::Fal.ServerlessGetRunnerHistoryTimeframe? timeframe = default,
+ global::Fal.ServerlessGetRunnerHistoryAggregation? aggregation = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Runner State History
+ /// Returns historical runner counts by state (running, idle, pending, draining)
+ /// for an application, bucketed over time.
+ /// **Use cases:**
+ /// - Capacity/utilization analysis: compare idle vs running over days or weeks
+ /// to see how much reserved capacity goes unused (use `aggregation=avg`)
+ /// - Incident forensics: correlate error spikes with runner drops or drain
+ /// events around the incident window (use `aggregation=max`)
+ /// **Time range:** up to 90 days of history. Defaults to the last 24 hours when
+ /// `start`/`end` are omitted. Bucket size is auto-detected from the range
+ /// unless `timeframe` is specified.
+ /// **Authentication:** Required via API key. Only the app owner can query it.
+ ///
+ ///
+ /// Username of the app owner
+ /// Example: user_123
+ ///
+ ///
+ /// Application name
+ /// Example: my-app
+ ///
+ ///
+ /// Start date in ISO8601 format (e.g., '2025-01-01T00:00:00Z' or '2025-01-01'). Defaults to 24 hours ago.
+ /// Example: 2025-01-01T00:00:00Z
+ ///
+ ///
+ /// End date in ISO8601 format, exclusive (e.g., '2025-02-01T00:00:00Z' or '2025-02-01'). Data up to but not including this timestamp is returned. Defaults to current time.
+ /// Example: 2025-02-01T00:00:00Z
+ ///
+ ///
+ /// Bucket size for the time series (auto-detected from the date range if not specified). Auto-detection uses: minute (<2h), hour (<2d), day (<64d), week (<183d), month (>=183d).
+ /// Example: day
+ ///
+ ///
+ /// How runner counts are aggregated within each bucket: 'max' shows peak concurrency (capacity analysis), 'avg' shows mean concurrency (utilization analysis).
+ /// Default Value: max
+ /// Example: max
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> ServerlessGetRunnerHistoryAsResponseAsync(
+ string owner,
+ string name,
+ global::Fal.AnyOf? start = default,
+ global::Fal.AnyOf? end = default,
+ global::Fal.ServerlessGetRunnerHistoryTimeframe? timeframe = default,
+ global::Fal.ServerlessGetRunnerHistoryAggregation? aggregation = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryAggregation.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryAggregation.g.cs
new file mode 100644
index 0000000..5bdef27
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryAggregation.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryAggregationJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryAggregation Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryAggregationExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryAggregation)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryAggregation);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryAggregation value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryAggregationExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullable.g.cs
new file mode 100644
index 0000000..5f20d55
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryAggregationNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryAggregation? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryAggregationExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryAggregation)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryAggregation?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryAggregation? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryAggregationExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregation.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregation.g.cs
new file mode 100644
index 0000000..9ea71cc
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregation.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseAggregationJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseAggregation Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseAggregationExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseAggregation)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseAggregation);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseAggregation value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseAggregationExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullable.g.cs
new file mode 100644
index 0000000..0d27628
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseAggregation? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseAggregationExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseAggregation)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseAggregation?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseAggregation? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseAggregationExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType.g.cs
new file mode 100644
index 0000000..e7c5310
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2.g.cs
new file mode 100644
index 0000000..88822ba
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType2 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType2Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType2);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType2 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType2Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2Nullable.g.cs
new file mode 100644
index 0000000..f6d2743
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType2? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType2Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType2?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType2? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType2Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3.g.cs
new file mode 100644
index 0000000..963a94d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType3JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType3 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType3Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType3);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType3 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType3Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3Nullable.g.cs
new file mode 100644
index 0000000..4fb9627
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType3? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType3Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType3?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType3? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType3Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4.g.cs
new file mode 100644
index 0000000..5e64022
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType4JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType4 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType4Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType4);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType4 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType4Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4Nullable.g.cs
new file mode 100644
index 0000000..a7a7dd4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType4? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType4Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType4?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType4? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType4Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5.g.cs
new file mode 100644
index 0000000..9e8d751
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType5JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType5 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType5Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType5);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType5 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType5Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5Nullable.g.cs
new file mode 100644
index 0000000..d4ae68c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType5? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType5Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType5?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType5? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType5Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6.g.cs
new file mode 100644
index 0000000..1e3e990
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType6JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType6 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType6Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType6);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType6 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType6Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6Nullable.g.cs
new file mode 100644
index 0000000..d15e4e5
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType6? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorType6Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType6?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType6? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorType6Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullable.g.cs
new file mode 100644
index 0000000..b5b6cb4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseErrorType? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseErrorTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseErrorType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseErrorTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframe.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframe.g.cs
new file mode 100644
index 0000000..6720fbf
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframe.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseTimeframeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseTimeframe Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseTimeframeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseTimeframe);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseTimeframe value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseTimeframeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullable.g.cs
new file mode 100644
index 0000000..dfba453
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryResponseTimeframe? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryResponseTimeframeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryResponseTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryResponseTimeframe?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryResponseTimeframe? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryResponseTimeframeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframe.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframe.g.cs
new file mode 100644
index 0000000..73ef4d6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframe.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryTimeframeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryTimeframe Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryTimeframeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryTimeframe);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryTimeframe value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryTimeframeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullable.g.cs
new file mode 100644
index 0000000..938b31a
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetRunnerHistoryTimeframeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetRunnerHistoryTimeframe? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Fal.ServerlessGetRunnerHistoryTimeframeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetRunnerHistoryTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetRunnerHistoryTimeframe?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetRunnerHistoryTimeframe? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Fal.ServerlessGetRunnerHistoryTimeframeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
index 2108062..84d4a34 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
@@ -125,6 +125,14 @@ namespace Fal
typeof(global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceNullableJsonConverter),
@@ -1841,6 +1849,38 @@ namespace Fal
typeof(global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeNullableJsonConverter),
@@ -2363,6 +2403,10 @@ namespace Fal
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -2497,6 +2541,8 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsTagMode), TypeInfoPropertyName = "ListAssetCollectionAssetsTagMode2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetAnalyticsTimeframe), TypeInfoPropertyName = "ServerlessGetAnalyticsTimeframe2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetAnalyticsBoundToTimeframe), TypeInfoPropertyName = "ServerlessGetAnalyticsBoundToTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryTimeframe), TypeInfoPropertyName = "ServerlessGetRunnerHistoryTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryAggregation), TypeInfoPropertyName = "ServerlessGetRunnerHistoryAggregation2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryRunSource), TypeInfoPropertyName = "ServerlessLogsHistoryRunSource2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsStreamRunSource), TypeInfoPropertyName = "ServerlessLogsStreamRunSource2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointStatus), TypeInfoPropertyName = "ServerlessListRequestsByEndpointStatus2")]
@@ -2909,8 +2955,6 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType4), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType5), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType52")]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -3034,6 +3078,14 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceNullableJsonConverter),
@@ -4750,6 +4802,38 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeNullableJsonConverter),
@@ -5272,6 +5356,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -5320,6 +5408,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType5), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType6), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType62")]
@@ -5818,8 +5908,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError3))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType3), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError4))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -5943,6 +6031,14 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceNullableJsonConverter),
@@ -7659,6 +7755,38 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeNullableJsonConverter),
@@ -8181,6 +8309,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -8229,6 +8361,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType4), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError5))]
@@ -8659,6 +8793,29 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessFlushAppQueueResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessFlushAppQueueResponseError6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessFlushAppQueueResponseErrorType6), TypeInfoPropertyName = "ServerlessFlushAppQueueResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseTimeframe), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseAggregation), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseAggregation2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseHistoryItem))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType2), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType3), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType4), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType5), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType6), TypeInfoPropertyName = "ServerlessGetRunnerHistoryResponseErrorType62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRootResponseItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRootResponse))]
@@ -8704,31 +8861,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadFromUrlResponseErrorType3), TypeInfoPropertyName = "ServerlessUploadFromUrlResponseErrorType32")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType2), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType3), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType4), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseErrorType), TypeInfoPropertyName = "ServerlessGetMetricsResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseErrorType2), TypeInfoPropertyName = "ServerlessGetMetricsResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseErrorType3), TypeInfoPropertyName = "ServerlessGetMetricsResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseItem))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseErrorType), TypeInfoPropertyName = "ServerlessLogsHistoryResponseErrorType2_3")]
internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -8852,6 +8984,14 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceNullableJsonConverter),
@@ -10568,6 +10708,38 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeNullableJsonConverter),
@@ -11090,6 +11262,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -11138,6 +11314,31 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType2), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType3), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessUploadLocalFileResponseErrorType4), TypeInfoPropertyName = "ServerlessUploadLocalFileResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseErrorType), TypeInfoPropertyName = "ServerlessGetMetricsResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseErrorType2), TypeInfoPropertyName = "ServerlessGetMetricsResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetMetricsResponseErrorType3), TypeInfoPropertyName = "ServerlessGetMetricsResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseItem))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseErrorType), TypeInfoPropertyName = "ServerlessLogsHistoryResponseErrorType2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse3))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseError2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseErrorType2), TypeInfoPropertyName = "ServerlessLogsHistoryResponseErrorType22")]
@@ -11452,6 +11653,8 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsTagMode?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsTagMode2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetAnalyticsTimeframe?), TypeInfoPropertyName = "NullableServerlessGetAnalyticsTimeframe2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetAnalyticsBoundToTimeframe?), TypeInfoPropertyName = "NullableServerlessGetAnalyticsBoundToTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryTimeframe?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryAggregation?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryAggregation2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryRunSource?), TypeInfoPropertyName = "NullableServerlessLogsHistoryRunSource2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsStreamRunSource?), TypeInfoPropertyName = "NullableServerlessLogsStreamRunSource2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointStatus?), TypeInfoPropertyName = "NullableServerlessListRequestsByEndpointStatus2")]
@@ -11611,33 +11814,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseCollectionType?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseCollectionType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType2?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType3?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType4?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType5?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType6?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType7?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType72")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType8?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType82")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType9?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType92")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseAssetType?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseAssetType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType2?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType3?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType4?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType5?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType6?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType7?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType72")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType8?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType82")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType9?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType92")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType2?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType3?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType4?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType5?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType6?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType7?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType72")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType8?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType82")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType9?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType92")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionResponseErrorType?), TypeInfoPropertyName = "NullableRemoveAssetFromCollectionResponseErrorType2_3")]
internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -11761,6 +11937,14 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceNullableJsonConverter),
@@ -13477,6 +13661,38 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeNullableJsonConverter),
@@ -13999,6 +14215,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -14047,6 +14267,33 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType3?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType4?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType5?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType6?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType7?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType8?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType82")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType9?), TypeInfoPropertyName = "NullableMoveAssetCollectionResponseErrorType92")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseAssetType?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseAssetType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType2?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType3?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType4?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType5?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType6?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType7?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType8?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType82")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseErrorType9?), TypeInfoPropertyName = "NullableListAssetCollectionAssetsResponseErrorType92")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType2?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType3?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType4?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType5?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType6?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType7?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType8?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType82")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionResponseErrorType9?), TypeInfoPropertyName = "NullableAddAssetToCollectionResponseErrorType92")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionResponseErrorType?), TypeInfoPropertyName = "NullableRemoveAssetFromCollectionResponseErrorType2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionResponseErrorType2?), TypeInfoPropertyName = "NullableRemoveAssetFromCollectionResponseErrorType22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionResponseErrorType3?), TypeInfoPropertyName = "NullableRemoveAssetFromCollectionResponseErrorType32")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionResponseErrorType4?), TypeInfoPropertyName = "NullableRemoveAssetFromCollectionResponseErrorType42")]
@@ -14292,6 +14539,14 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessFlushAppQueueResponseErrorType4?), TypeInfoPropertyName = "NullableServerlessFlushAppQueueResponseErrorType42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessFlushAppQueueResponseErrorType5?), TypeInfoPropertyName = "NullableServerlessFlushAppQueueResponseErrorType52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessFlushAppQueueResponseErrorType6?), TypeInfoPropertyName = "NullableServerlessFlushAppQueueResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseTimeframe?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseAggregation?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseAggregation2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType2?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType3?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType4?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType5?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetRunnerHistoryResponseErrorType6?), TypeInfoPropertyName = "NullableServerlessGetRunnerHistoryResponseErrorType62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRootResponseErrorType?), TypeInfoPropertyName = "NullableServerlessListRootResponseErrorType2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRootResponseErrorType2?), TypeInfoPropertyName = "NullableServerlessListRootResponseErrorType22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRootResponseErrorType3?), TypeInfoPropertyName = "NullableServerlessListRootResponseErrorType32")]
@@ -14447,6 +14702,7 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
@@ -14564,6 +14820,10 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetAnalyticsTimeframeNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetAnalyticsBoundToTimeframeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryTimeframeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryAggregationNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessLogsHistoryRunSourceNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessLogsStreamRunSourceJsonConverter());
@@ -15422,6 +15682,22 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType5NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6JsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessFlushAppQueueResponseErrorType6NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType2NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType3NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType4NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType5NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorType6NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRootResponseErrorTypeNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRootResponseErrorType2JsonConverter());
@@ -15683,6 +15959,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
index 2b1eb51..7c671c1 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
@@ -368,6771 +368,6871 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Fal.ServerlessLogsHistoryRunSource? Type85 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryTimeframe? Type85 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRunSource? Type86 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryAggregation? Type86 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointStatus? Type87 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRunSource? Type87 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointSortBy? Type88 { get; set; }
+ public global::Fal.ServerlessLogsStreamRunSource? Type88 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageTimeframe? Type89 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointStatus? Type89 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageBoundToTimeframe? Type90 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointSortBy? Type90 { get; set; }
///
///
///
- public global::Fal.GetFocusReportSource? Type91 { get; set; }
+ public global::Fal.ServerlessGetUsageTimeframe? Type91 { get; set; }
///
///
///
- public global::Fal.GetFocusReportTimeframe? Type92 { get; set; }
+ public global::Fal.ServerlessGetUsageBoundToTimeframe? Type92 { get; set; }
///
///
///
- public global::Fal.GetFocusReportBoundToTimeframe? Type93 { get; set; }
+ public global::Fal.GetFocusReportSource? Type93 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageTimeframe? Type94 { get; set; }
+ public global::Fal.GetFocusReportTimeframe? Type94 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageBoundToTimeframe? Type95 { get; set; }
+ public global::Fal.GetFocusReportBoundToTimeframe? Type95 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse? Type96 { get; set; }
+ public global::Fal.GetOrganizationUsageTimeframe? Type96 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type97 { get; set; }
+ public global::Fal.GetOrganizationUsageBoundToTimeframe? Type97 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModel? Type98 { get; set; }
+ public global::Fal.GetModelsResponse? Type98 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadata? Type99 { get; set; }
+ public global::System.Collections.Generic.IList? Type99 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataStatus? Type100 { get; set; }
+ public global::Fal.GetModelsResponseModel? Type100 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataLicenseType? Type101 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadata? Type101 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataGroup? Type102 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataStatus? Type102 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataKind? Type103 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataLicenseType? Type103 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type104 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataGroup? Type104 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant1? Type105 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataKind? Type105 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2? Type106 { get; set; }
+ public global::Fal.AnyOf? Type106 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type107 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant1? Type107 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type108 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2? Type108 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type109 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type109 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type110 { get; set; }
+ public global::Fal.AnyOf? Type110 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type111 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type111 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse2? Type112 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type112 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError? Type113 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type113 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType? Type114 { get; set; }
+ public global::Fal.GetModelsResponse2? Type114 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse3? Type115 { get; set; }
+ public global::Fal.GetModelsResponseError? Type115 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError2? Type116 { get; set; }
+ public global::Fal.GetModelsResponseErrorType? Type116 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType2? Type117 { get; set; }
+ public global::Fal.GetModelsResponse3? Type117 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse4? Type118 { get; set; }
+ public global::Fal.GetModelsResponseError2? Type118 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError3? Type119 { get; set; }
+ public global::Fal.GetModelsResponseErrorType2? Type119 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType3? Type120 { get; set; }
+ public global::Fal.GetModelsResponse4? Type120 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse5? Type121 { get; set; }
+ public global::Fal.GetModelsResponseError3? Type121 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError4? Type122 { get; set; }
+ public global::Fal.GetModelsResponseErrorType3? Type122 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType4? Type123 { get; set; }
+ public global::Fal.GetModelsResponse5? Type123 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse? Type124 { get; set; }
+ public global::Fal.GetModelsResponseError4? Type124 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type125 { get; set; }
+ public global::Fal.GetModelsResponseErrorType4? Type125 { get; set; }
///
///
///
- public global::Fal.GetPricingResponsePrice? Type126 { get; set; }
+ public global::Fal.GetPricingResponse? Type126 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse2? Type127 { get; set; }
+ public global::System.Collections.Generic.IList? Type127 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError? Type128 { get; set; }
+ public global::Fal.GetPricingResponsePrice? Type128 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType? Type129 { get; set; }
+ public global::Fal.GetPricingResponse2? Type129 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse3? Type130 { get; set; }
+ public global::Fal.GetPricingResponseError? Type130 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError2? Type131 { get; set; }
+ public global::Fal.GetPricingResponseErrorType? Type131 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType2? Type132 { get; set; }
+ public global::Fal.GetPricingResponse3? Type132 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse4? Type133 { get; set; }
+ public global::Fal.GetPricingResponseError2? Type133 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError3? Type134 { get; set; }
+ public global::Fal.GetPricingResponseErrorType2? Type134 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType3? Type135 { get; set; }
+ public global::Fal.GetPricingResponse4? Type135 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse5? Type136 { get; set; }
+ public global::Fal.GetPricingResponseError3? Type136 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError4? Type137 { get; set; }
+ public global::Fal.GetPricingResponseErrorType3? Type137 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType4? Type138 { get; set; }
+ public global::Fal.GetPricingResponse5? Type138 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse? Type139 { get; set; }
+ public global::Fal.GetPricingResponseError4? Type139 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseEstimateType? Type140 { get; set; }
+ public global::Fal.GetPricingResponseErrorType4? Type140 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse2? Type141 { get; set; }
+ public global::Fal.EstimatePricingResponse? Type141 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError? Type142 { get; set; }
+ public global::Fal.EstimatePricingResponseEstimateType? Type142 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType? Type143 { get; set; }
+ public global::Fal.EstimatePricingResponse2? Type143 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse3? Type144 { get; set; }
+ public global::Fal.EstimatePricingResponseError? Type144 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError2? Type145 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType? Type145 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType2? Type146 { get; set; }
+ public global::Fal.EstimatePricingResponse3? Type146 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse4? Type147 { get; set; }
+ public global::Fal.EstimatePricingResponseError2? Type147 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError3? Type148 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType2? Type148 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType3? Type149 { get; set; }
+ public global::Fal.EstimatePricingResponse4? Type149 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse5? Type150 { get; set; }
+ public global::Fal.EstimatePricingResponseError3? Type150 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError4? Type151 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType3? Type151 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType4? Type152 { get; set; }
+ public global::Fal.EstimatePricingResponse5? Type152 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse? Type153 { get; set; }
+ public global::Fal.EstimatePricingResponseError4? Type153 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type154 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType4? Type154 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerie? Type155 { get; set; }
+ public global::Fal.GetUsageResponse? Type155 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type156 { get; set; }
+ public global::System.Collections.Generic.IList? Type156 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerieResult? Type157 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerie? Type157 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured? Type158 { get; set; }
+ public global::System.Collections.Generic.IList? Type158 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type159 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerieResult? Type159 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseSummaryItem? Type160 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured? Type160 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseSummaryItemAuthMethodStructured? Type161 { get; set; }
+ public global::System.Collections.Generic.IList? Type161 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse2? Type162 { get; set; }
+ public global::Fal.GetUsageResponseSummaryItem? Type162 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError? Type163 { get; set; }
+ public global::Fal.GetUsageResponseSummaryItemAuthMethodStructured? Type163 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType? Type164 { get; set; }
+ public global::Fal.GetUsageResponse2? Type164 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse3? Type165 { get; set; }
+ public global::Fal.GetUsageResponseError? Type165 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError2? Type166 { get; set; }
+ public global::Fal.GetUsageResponseErrorType? Type166 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType2? Type167 { get; set; }
+ public global::Fal.GetUsageResponse3? Type167 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse4? Type168 { get; set; }
+ public global::Fal.GetUsageResponseError2? Type168 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError3? Type169 { get; set; }
+ public global::Fal.GetUsageResponseErrorType2? Type169 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType3? Type170 { get; set; }
+ public global::Fal.GetUsageResponse4? Type170 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse5? Type171 { get; set; }
+ public global::Fal.GetUsageResponseError3? Type171 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError4? Type172 { get; set; }
+ public global::Fal.GetUsageResponseErrorType3? Type172 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType4? Type173 { get; set; }
+ public global::Fal.GetUsageResponse5? Type173 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse? Type174 { get; set; }
+ public global::Fal.GetUsageResponseError4? Type174 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type175 { get; set; }
+ public global::Fal.GetUsageResponseErrorType4? Type175 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerie? Type176 { get; set; }
+ public global::Fal.GetAnalyticsResponse? Type176 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type177 { get; set; }
+ public global::System.Collections.Generic.IList? Type177 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerieResult? Type178 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerie? Type178 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type179 { get; set; }
+ public global::System.Collections.Generic.IList? Type179 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseSummaryItem? Type180 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerieResult? Type180 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse2? Type181 { get; set; }
+ public global::System.Collections.Generic.IList? Type181 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError? Type182 { get; set; }
+ public global::Fal.GetAnalyticsResponseSummaryItem? Type182 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType? Type183 { get; set; }
+ public global::Fal.GetAnalyticsResponse2? Type183 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse3? Type184 { get; set; }
+ public global::Fal.GetAnalyticsResponseError? Type184 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError2? Type185 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType? Type185 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType2? Type186 { get; set; }
+ public global::Fal.GetAnalyticsResponse3? Type186 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse4? Type187 { get; set; }
+ public global::Fal.GetAnalyticsResponseError2? Type187 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError3? Type188 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType2? Type188 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType3? Type189 { get; set; }
+ public global::Fal.GetAnalyticsResponse4? Type189 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse5? Type190 { get; set; }
+ public global::Fal.GetAnalyticsResponseError3? Type190 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError4? Type191 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType3? Type191 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType4? Type192 { get; set; }
+ public global::Fal.GetAnalyticsResponse5? Type192 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse6? Type193 { get; set; }
+ public global::Fal.GetAnalyticsResponseError4? Type193 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError5? Type194 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType4? Type194 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType5? Type195 { get; set; }
+ public global::Fal.GetAnalyticsResponse6? Type195 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse7? Type196 { get; set; }
+ public global::Fal.GetAnalyticsResponseError5? Type196 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError6? Type197 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType5? Type197 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType6? Type198 { get; set; }
+ public global::Fal.GetAnalyticsResponse7? Type198 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse? Type199 { get; set; }
+ public global::Fal.GetAnalyticsResponseError6? Type199 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type200 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType6? Type200 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseBillingEvent? Type201 { get; set; }
+ public global::Fal.GetBillingEventsResponse? Type201 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseBillingEventAuthMethodStructured? Type202 { get; set; }
+ public global::System.Collections.Generic.IList? Type202 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse2? Type203 { get; set; }
+ public global::Fal.GetBillingEventsResponseBillingEvent? Type203 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError? Type204 { get; set; }
+ public global::Fal.GetBillingEventsResponseBillingEventAuthMethodStructured? Type204 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType? Type205 { get; set; }
+ public global::Fal.GetBillingEventsResponse2? Type205 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse3? Type206 { get; set; }
+ public global::Fal.GetBillingEventsResponseError? Type206 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError2? Type207 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType? Type207 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType2? Type208 { get; set; }
+ public global::Fal.GetBillingEventsResponse3? Type208 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse4? Type209 { get; set; }
+ public global::Fal.GetBillingEventsResponseError2? Type209 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError3? Type210 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType2? Type210 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType3? Type211 { get; set; }
+ public global::Fal.GetBillingEventsResponse4? Type211 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse5? Type212 { get; set; }
+ public global::Fal.GetBillingEventsResponseError3? Type212 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError4? Type213 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType3? Type213 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType4? Type214 { get; set; }
+ public global::Fal.GetBillingEventsResponse5? Type214 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse6? Type215 { get; set; }
+ public global::Fal.GetBillingEventsResponseError4? Type215 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError5? Type216 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType4? Type216 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType5? Type217 { get; set; }
+ public global::Fal.GetBillingEventsResponse6? Type217 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse? Type218 { get; set; }
+ public global::Fal.GetBillingEventsResponseError5? Type218 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type219 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType5? Type219 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type220 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse? Type220 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse2? Type221 { get; set; }
+ public global::System.Collections.Generic.IList? Type221 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError? Type222 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type222 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType? Type223 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse2? Type223 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse3? Type224 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError? Type224 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError2? Type225 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType? Type225 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type226 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse3? Type226 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse4? Type227 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError2? Type227 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError3? Type228 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type228 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type229 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse4? Type229 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse5? Type230 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError3? Type230 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError4? Type231 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type231 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type232 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse5? Type232 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse6? Type233 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError4? Type233 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError5? Type234 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type234 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type235 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse6? Type235 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse7? Type236 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError5? Type236 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError6? Type237 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type237 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type238 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse7? Type238 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse? Type239 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError6? Type239 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type240 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type240 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseItem? Type241 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse? Type241 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse2? Type242 { get; set; }
+ public global::System.Collections.Generic.IList? Type242 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError? Type243 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseItem? Type243 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType? Type244 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse2? Type244 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse3? Type245 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError? Type245 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError2? Type246 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType? Type246 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType2? Type247 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse3? Type247 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse4? Type248 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError2? Type248 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError3? Type249 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType2? Type249 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType3? Type250 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse4? Type250 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse5? Type251 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError3? Type251 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError4? Type252 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType3? Type252 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType4? Type253 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse5? Type253 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse6? Type254 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError4? Type254 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError5? Type255 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType4? Type255 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType5? Type256 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse6? Type256 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse7? Type257 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError5? Type257 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError6? Type258 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType5? Type258 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType6? Type259 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse7? Type259 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse? Type260 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError6? Type260 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type261 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType6? Type261 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseResult? Type262 { get; set; }
+ public global::Fal.SearchRequestsResponse? Type262 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse2? Type263 { get; set; }
+ public global::System.Collections.Generic.IList? Type263 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError? Type264 { get; set; }
+ public global::Fal.SearchRequestsResponseResult? Type264 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType? Type265 { get; set; }
+ public global::Fal.SearchRequestsResponse2? Type265 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse3? Type266 { get; set; }
+ public global::Fal.SearchRequestsResponseError? Type266 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError2? Type267 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType? Type267 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType2? Type268 { get; set; }
+ public global::Fal.SearchRequestsResponse3? Type268 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse4? Type269 { get; set; }
+ public global::Fal.SearchRequestsResponseError2? Type269 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError3? Type270 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType2? Type270 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType3? Type271 { get; set; }
+ public global::Fal.SearchRequestsResponse4? Type271 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse5? Type272 { get; set; }
+ public global::Fal.SearchRequestsResponseError3? Type272 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError4? Type273 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType3? Type273 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType4? Type274 { get; set; }
+ public global::Fal.SearchRequestsResponse5? Type274 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse6? Type275 { get; set; }
+ public global::Fal.SearchRequestsResponseError4? Type275 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError5? Type276 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType4? Type276 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType5? Type277 { get; set; }
+ public global::Fal.SearchRequestsResponse6? Type277 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse? Type278 { get; set; }
+ public global::Fal.SearchRequestsResponseError5? Type278 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type279 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType5? Type279 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseWorkflow? Type280 { get; set; }
+ public global::Fal.ListWorkflowsResponse? Type280 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse2? Type281 { get; set; }
+ public global::System.Collections.Generic.IList? Type281 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError? Type282 { get; set; }
+ public global::Fal.ListWorkflowsResponseWorkflow? Type282 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType? Type283 { get; set; }
+ public global::Fal.ListWorkflowsResponse2? Type283 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse3? Type284 { get; set; }
+ public global::Fal.ListWorkflowsResponseError? Type284 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError2? Type285 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType? Type285 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType2? Type286 { get; set; }
+ public global::Fal.ListWorkflowsResponse3? Type286 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse4? Type287 { get; set; }
+ public global::Fal.ListWorkflowsResponseError2? Type287 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError3? Type288 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType2? Type288 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType3? Type289 { get; set; }
+ public global::Fal.ListWorkflowsResponse4? Type289 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse5? Type290 { get; set; }
+ public global::Fal.ListWorkflowsResponseError3? Type290 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError4? Type291 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType3? Type291 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType4? Type292 { get; set; }
+ public global::Fal.ListWorkflowsResponse5? Type292 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse? Type293 { get; set; }
+ public global::Fal.ListWorkflowsResponseError4? Type293 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseWorkflow? Type294 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType4? Type294 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse2? Type295 { get; set; }
+ public global::Fal.CreateWorkflowResponse? Type295 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError? Type296 { get; set; }
+ public global::Fal.CreateWorkflowResponseWorkflow? Type296 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType? Type297 { get; set; }
+ public global::Fal.CreateWorkflowResponse2? Type297 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse3? Type298 { get; set; }
+ public global::Fal.CreateWorkflowResponseError? Type298 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError2? Type299 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType? Type299 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType2? Type300 { get; set; }
+ public global::Fal.CreateWorkflowResponse3? Type300 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse4? Type301 { get; set; }
+ public global::Fal.CreateWorkflowResponseError2? Type301 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError3? Type302 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType2? Type302 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType3? Type303 { get; set; }
+ public global::Fal.CreateWorkflowResponse4? Type303 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse5? Type304 { get; set; }
+ public global::Fal.CreateWorkflowResponseError3? Type304 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError4? Type305 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType3? Type305 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType4? Type306 { get; set; }
+ public global::Fal.CreateWorkflowResponse5? Type306 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse6? Type307 { get; set; }
+ public global::Fal.CreateWorkflowResponseError4? Type307 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError5? Type308 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType4? Type308 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType5? Type309 { get; set; }
+ public global::Fal.CreateWorkflowResponse6? Type309 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse? Type310 { get; set; }
+ public global::Fal.CreateWorkflowResponseError5? Type310 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseWorkflow? Type311 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType5? Type311 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse2? Type312 { get; set; }
+ public global::Fal.GetWorkflowResponse? Type312 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError? Type313 { get; set; }
+ public global::Fal.GetWorkflowResponseWorkflow? Type313 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType? Type314 { get; set; }
+ public global::Fal.GetWorkflowResponse2? Type314 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse3? Type315 { get; set; }
+ public global::Fal.GetWorkflowResponseError? Type315 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError2? Type316 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType? Type316 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType2? Type317 { get; set; }
+ public global::Fal.GetWorkflowResponse3? Type317 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse4? Type318 { get; set; }
+ public global::Fal.GetWorkflowResponseError2? Type318 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError3? Type319 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType2? Type319 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType3? Type320 { get; set; }
+ public global::Fal.GetWorkflowResponse4? Type320 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse5? Type321 { get; set; }
+ public global::Fal.GetWorkflowResponseError3? Type321 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError4? Type322 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType3? Type322 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType4? Type323 { get; set; }
+ public global::Fal.GetWorkflowResponse5? Type323 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse6? Type324 { get; set; }
+ public global::Fal.GetWorkflowResponseError4? Type324 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError5? Type325 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType4? Type325 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType5? Type326 { get; set; }
+ public global::Fal.GetWorkflowResponse6? Type326 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse7? Type327 { get; set; }
+ public global::Fal.GetWorkflowResponseError5? Type327 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError6? Type328 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType5? Type328 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType6? Type329 { get; set; }
+ public global::Fal.GetWorkflowResponse7? Type329 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse? Type330 { get; set; }
+ public global::Fal.GetWorkflowResponseError6? Type330 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type331 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType6? Type331 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAsset? Type332 { get; set; }
+ public global::Fal.ListAssetsResponse? Type332 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetType? Type333 { get; set; }
+ public global::System.Collections.Generic.IList? Type333 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type334 { get; set; }
+ public global::Fal.ListAssetsResponseAsset? Type334 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetTag? Type335 { get; set; }
+ public global::Fal.ListAssetsResponseAssetType? Type335 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse2? Type336 { get; set; }
+ public global::System.Collections.Generic.IList? Type336 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError? Type337 { get; set; }
+ public global::Fal.ListAssetsResponseAssetTag? Type337 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType? Type338 { get; set; }
+ public global::Fal.ListAssetsResponse2? Type338 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse3? Type339 { get; set; }
+ public global::Fal.ListAssetsResponseError? Type339 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError2? Type340 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType? Type340 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType2? Type341 { get; set; }
+ public global::Fal.ListAssetsResponse3? Type341 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse4? Type342 { get; set; }
+ public global::Fal.ListAssetsResponseError2? Type342 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError3? Type343 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType2? Type343 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType3? Type344 { get; set; }
+ public global::Fal.ListAssetsResponse4? Type344 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse5? Type345 { get; set; }
+ public global::Fal.ListAssetsResponseError3? Type345 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError4? Type346 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType3? Type346 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType4? Type347 { get; set; }
+ public global::Fal.ListAssetsResponse5? Type347 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse6? Type348 { get; set; }
+ public global::Fal.ListAssetsResponseError4? Type348 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError5? Type349 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType4? Type349 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType5? Type350 { get; set; }
+ public global::Fal.ListAssetsResponse6? Type350 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse7? Type351 { get; set; }
+ public global::Fal.ListAssetsResponseError5? Type351 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError6? Type352 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType5? Type352 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType6? Type353 { get; set; }
+ public global::Fal.ListAssetsResponse7? Type353 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse8? Type354 { get; set; }
+ public global::Fal.ListAssetsResponseError6? Type354 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError7? Type355 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType6? Type355 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType7? Type356 { get; set; }
+ public global::Fal.ListAssetsResponse8? Type356 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse9? Type357 { get; set; }
+ public global::Fal.ListAssetsResponseError7? Type357 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError8? Type358 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType7? Type358 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType8? Type359 { get; set; }
+ public global::Fal.ListAssetsResponse9? Type359 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse10? Type360 { get; set; }
+ public global::Fal.ListAssetsResponseError8? Type360 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError9? Type361 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType8? Type361 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType9? Type362 { get; set; }
+ public global::Fal.ListAssetsResponse10? Type362 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse? Type363 { get; set; }
+ public global::Fal.ListAssetsResponseError9? Type363 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type364 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType9? Type364 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollection? Type365 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse? Type365 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollectionType? Type366 { get; set; }
+ public global::System.Collections.Generic.IList? Type366 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse2? Type367 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollection? Type367 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError? Type368 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollectionType? Type368 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType? Type369 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse2? Type369 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse3? Type370 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError? Type370 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError2? Type371 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType? Type371 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType2? Type372 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse3? Type372 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse4? Type373 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError2? Type373 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError3? Type374 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType2? Type374 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType3? Type375 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse4? Type375 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse5? Type376 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError3? Type376 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError4? Type377 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType3? Type377 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType4? Type378 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse5? Type378 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse6? Type379 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError4? Type379 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError5? Type380 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType4? Type380 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType5? Type381 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse6? Type381 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse7? Type382 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError5? Type382 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError6? Type383 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType5? Type383 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType6? Type384 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse7? Type384 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse8? Type385 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError6? Type385 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError7? Type386 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType6? Type386 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType7? Type387 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse8? Type387 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse9? Type388 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError7? Type388 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError8? Type389 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType7? Type389 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType8? Type390 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse9? Type390 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse10? Type391 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError8? Type391 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError9? Type392 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType8? Type392 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType9? Type393 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse10? Type393 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse? Type394 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError9? Type394 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollection? Type395 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType9? Type395 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollectionType? Type396 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse? Type396 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse2? Type397 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollection? Type397 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError? Type398 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollectionType? Type398 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType? Type399 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse2? Type399 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse3? Type400 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError? Type400 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError2? Type401 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType? Type401 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType2? Type402 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse3? Type402 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse4? Type403 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError2? Type403 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError3? Type404 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType2? Type404 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType3? Type405 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse4? Type405 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse5? Type406 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError3? Type406 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError4? Type407 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType3? Type407 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType4? Type408 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse5? Type408 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse6? Type409 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError4? Type409 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError5? Type410 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType4? Type410 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType5? Type411 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse6? Type411 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse7? Type412 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError5? Type412 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError6? Type413 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType5? Type413 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType6? Type414 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse7? Type414 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse8? Type415 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError6? Type415 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError7? Type416 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType6? Type416 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType7? Type417 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse8? Type417 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse9? Type418 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError7? Type418 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError8? Type419 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType7? Type419 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType8? Type420 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse9? Type420 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse10? Type421 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError8? Type421 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError9? Type422 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType8? Type422 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType9? Type423 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse10? Type423 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse? Type424 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError9? Type424 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollection? Type425 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType9? Type425 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollectionType? Type426 { get; set; }
+ public global::Fal.GetAssetCollectionResponse? Type426 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse2? Type427 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollection? Type427 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError? Type428 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollectionType? Type428 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType? Type429 { get; set; }
+ public global::Fal.GetAssetCollectionResponse2? Type429 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse3? Type430 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError? Type430 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError2? Type431 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType? Type431 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType2? Type432 { get; set; }
+ public global::Fal.GetAssetCollectionResponse3? Type432 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse4? Type433 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError2? Type433 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError3? Type434 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType2? Type434 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType3? Type435 { get; set; }
+ public global::Fal.GetAssetCollectionResponse4? Type435 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse5? Type436 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError3? Type436 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError4? Type437 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType3? Type437 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType4? Type438 { get; set; }
+ public global::Fal.GetAssetCollectionResponse5? Type438 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse6? Type439 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError4? Type439 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError5? Type440 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType4? Type440 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType5? Type441 { get; set; }
+ public global::Fal.GetAssetCollectionResponse6? Type441 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse7? Type442 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError5? Type442 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError6? Type443 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType5? Type443 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType6? Type444 { get; set; }
+ public global::Fal.GetAssetCollectionResponse7? Type444 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse8? Type445 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError6? Type445 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError7? Type446 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType6? Type446 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType7? Type447 { get; set; }
+ public global::Fal.GetAssetCollectionResponse8? Type447 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse9? Type448 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError7? Type448 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError8? Type449 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType7? Type449 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType8? Type450 { get; set; }
+ public global::Fal.GetAssetCollectionResponse9? Type450 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse10? Type451 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError8? Type451 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError9? Type452 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType8? Type452 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType9? Type453 { get; set; }
+ public global::Fal.GetAssetCollectionResponse10? Type453 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse? Type454 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError9? Type454 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollection? Type455 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType9? Type455 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollectionType? Type456 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse? Type456 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse2? Type457 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollection? Type457 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError? Type458 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollectionType? Type458 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType? Type459 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse2? Type459 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse3? Type460 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError? Type460 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError2? Type461 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType? Type461 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType2? Type462 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse3? Type462 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse4? Type463 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError2? Type463 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError3? Type464 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType2? Type464 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType3? Type465 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse4? Type465 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse5? Type466 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError3? Type466 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError4? Type467 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType3? Type467 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType4? Type468 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse5? Type468 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse6? Type469 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError4? Type469 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError5? Type470 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType4? Type470 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType5? Type471 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse6? Type471 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse7? Type472 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError5? Type472 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError6? Type473 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType5? Type473 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType6? Type474 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse7? Type474 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse8? Type475 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError6? Type475 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError7? Type476 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType6? Type476 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType7? Type477 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse8? Type477 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse9? Type478 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError7? Type478 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError8? Type479 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType7? Type479 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType8? Type480 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse9? Type480 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse10? Type481 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError8? Type481 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError9? Type482 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType8? Type482 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType9? Type483 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse10? Type483 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse? Type484 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError9? Type484 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError? Type485 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType9? Type485 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType? Type486 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse? Type486 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse2? Type487 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError? Type487 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError2? Type488 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType? Type488 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType2? Type489 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse2? Type489 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse3? Type490 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError2? Type490 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError3? Type491 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType2? Type491 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType3? Type492 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse3? Type492 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse4? Type493 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError3? Type493 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError4? Type494 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType3? Type494 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType4? Type495 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse4? Type495 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse5? Type496 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError4? Type496 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError5? Type497 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType4? Type497 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType5? Type498 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse5? Type498 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse6? Type499 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError5? Type499 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError6? Type500 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType5? Type500 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType6? Type501 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse6? Type501 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse7? Type502 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError6? Type502 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError7? Type503 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType6? Type503 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType7? Type504 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse7? Type504 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse8? Type505 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError7? Type505 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError8? Type506 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType7? Type506 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType8? Type507 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse8? Type507 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse9? Type508 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError8? Type508 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError9? Type509 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType8? Type509 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType9? Type510 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse9? Type510 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse? Type511 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError9? Type511 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollection? Type512 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType9? Type512 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type513 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse? Type513 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse2? Type514 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollection? Type514 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError? Type515 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type515 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType? Type516 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse2? Type516 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse3? Type517 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError? Type517 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError2? Type518 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType? Type518 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type519 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse3? Type519 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse4? Type520 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError2? Type520 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError3? Type521 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type521 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type522 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse4? Type522 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse5? Type523 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError3? Type523 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError4? Type524 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type524 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type525 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse5? Type525 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse6? Type526 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError4? Type526 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError5? Type527 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type527 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type528 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse6? Type528 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse7? Type529 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError5? Type529 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError6? Type530 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type530 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type531 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse7? Type531 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse8? Type532 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError6? Type532 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError7? Type533 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type533 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type534 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse8? Type534 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse9? Type535 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError7? Type535 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError8? Type536 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type536 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type537 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse9? Type537 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse10? Type538 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError8? Type538 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError9? Type539 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type539 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type540 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse10? Type540 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse? Type541 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError9? Type541 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type542 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type542 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type543 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse? Type543 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse2? Type544 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type544 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError? Type545 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type545 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type546 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse2? Type546 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse3? Type547 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError? Type547 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError2? Type548 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type548 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type549 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse3? Type549 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse4? Type550 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError2? Type550 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError3? Type551 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type551 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type552 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse4? Type552 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse5? Type553 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError3? Type553 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError4? Type554 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type554 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type555 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse5? Type555 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse6? Type556 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError4? Type556 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError5? Type557 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type557 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type558 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse6? Type558 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse7? Type559 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError5? Type559 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError6? Type560 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type560 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type561 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse7? Type561 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse8? Type562 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError6? Type562 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError7? Type563 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type563 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type564 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse8? Type564 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse9? Type565 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError7? Type565 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError8? Type566 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type566 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type567 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse9? Type567 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse10? Type568 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError8? Type568 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError9? Type569 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type569 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type570 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse10? Type570 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse? Type571 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError9? Type571 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseCollection? Type572 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type572 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseCollectionType? Type573 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse? Type573 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse2? Type574 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseCollection? Type574 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError? Type575 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseCollectionType? Type575 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType? Type576 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse2? Type576 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse3? Type577 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError? Type577 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError2? Type578 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType? Type578 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType2? Type579 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse3? Type579 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse4? Type580 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError2? Type580 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError3? Type581 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType2? Type581 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType3? Type582 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse4? Type582 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse5? Type583 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError3? Type583 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError4? Type584 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType3? Type584 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType4? Type585 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse5? Type585 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse6? Type586 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError4? Type586 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError5? Type587 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType4? Type587 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType5? Type588 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse6? Type588 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse7? Type589 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError5? Type589 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError6? Type590 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType5? Type590 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType6? Type591 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse7? Type591 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse8? Type592 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError6? Type592 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError7? Type593 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType6? Type593 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType7? Type594 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse8? Type594 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse9? Type595 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError7? Type595 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError8? Type596 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType7? Type596 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType8? Type597 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse9? Type597 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponse10? Type598 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError8? Type598 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseError9? Type599 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType8? Type599 { get; set; }
///
///
///
- public global::Fal.MoveAssetCollectionResponseErrorType9? Type600 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse10? Type600 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse? Type601 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError9? Type601 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type602 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType9? Type602 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAsset? Type603 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse? Type603 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type604 { get; set; }
+ public global::System.Collections.Generic.IList? Type604 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type605 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAsset? Type605 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type606 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type606 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse2? Type607 { get; set; }
+ public global::System.Collections.Generic.IList? Type607 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError? Type608 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type608 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type609 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse2? Type609 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse3? Type610 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError? Type610 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError2? Type611 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type611 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type612 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse3? Type612 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse4? Type613 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError2? Type613 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError3? Type614 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type614 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type615 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse4? Type615 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse5? Type616 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError3? Type616 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError4? Type617 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type617 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type618 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse5? Type618 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse6? Type619 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError4? Type619 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError5? Type620 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type620 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type621 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse6? Type621 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse7? Type622 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError5? Type622 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError6? Type623 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type623 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type624 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse7? Type624 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse8? Type625 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError6? Type625 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError7? Type626 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type626 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type627 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse8? Type627 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse9? Type628 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError7? Type628 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError8? Type629 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type629 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type630 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse9? Type630 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse10? Type631 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError8? Type631 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError9? Type632 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type632 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type633 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse10? Type633 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse? Type634 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError9? Type634 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse2? Type635 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type635 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError? Type636 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse? Type636 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType? Type637 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse2? Type637 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse3? Type638 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError? Type638 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError2? Type639 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType? Type639 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType2? Type640 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse3? Type640 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse4? Type641 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError2? Type641 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError3? Type642 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType2? Type642 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType3? Type643 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse4? Type643 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse5? Type644 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError3? Type644 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError4? Type645 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType3? Type645 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType4? Type646 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse5? Type646 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse6? Type647 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError4? Type647 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError5? Type648 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType4? Type648 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType5? Type649 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse6? Type649 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse7? Type650 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError5? Type650 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError6? Type651 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType5? Type651 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType6? Type652 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse7? Type652 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse8? Type653 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError6? Type653 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError7? Type654 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType6? Type654 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType7? Type655 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse8? Type655 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse9? Type656 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError7? Type656 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError8? Type657 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType7? Type657 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType8? Type658 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse9? Type658 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse10? Type659 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError8? Type659 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError9? Type660 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType8? Type660 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType9? Type661 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse10? Type661 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse? Type662 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError9? Type662 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError? Type663 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType9? Type663 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type664 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse? Type664 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse2? Type665 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError? Type665 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError2? Type666 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type666 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type667 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse2? Type667 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse3? Type668 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError2? Type668 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError3? Type669 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type669 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type670 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse3? Type670 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse4? Type671 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError3? Type671 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError4? Type672 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type672 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type673 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse4? Type673 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse5? Type674 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError4? Type674 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError5? Type675 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type675 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type676 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse5? Type676 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse6? Type677 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError5? Type677 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError6? Type678 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type678 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type679 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse6? Type679 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse7? Type680 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError6? Type680 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError7? Type681 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type681 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type682 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse7? Type682 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse8? Type683 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError7? Type683 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError8? Type684 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type684 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type685 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse8? Type685 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse9? Type686 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError8? Type686 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError9? Type687 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type687 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type688 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse9? Type688 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse? Type689 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError9? Type689 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type690 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type690 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacter? Type691 { get; set; }
+ public global::Fal.ListAssetCharactersResponse? Type691 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacterType? Type692 { get; set; }
+ public global::System.Collections.Generic.IList? Type692 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse2? Type693 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacter? Type693 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError? Type694 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacterType? Type694 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType? Type695 { get; set; }
+ public global::Fal.ListAssetCharactersResponse2? Type695 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse3? Type696 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError? Type696 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError2? Type697 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType? Type697 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType2? Type698 { get; set; }
+ public global::Fal.ListAssetCharactersResponse3? Type698 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse4? Type699 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError2? Type699 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError3? Type700 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType2? Type700 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType3? Type701 { get; set; }
+ public global::Fal.ListAssetCharactersResponse4? Type701 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse5? Type702 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError3? Type702 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError4? Type703 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType3? Type703 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType4? Type704 { get; set; }
+ public global::Fal.ListAssetCharactersResponse5? Type704 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse6? Type705 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError4? Type705 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError5? Type706 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType4? Type706 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType5? Type707 { get; set; }
+ public global::Fal.ListAssetCharactersResponse6? Type707 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse7? Type708 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError5? Type708 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError6? Type709 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType5? Type709 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType6? Type710 { get; set; }
+ public global::Fal.ListAssetCharactersResponse7? Type710 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse8? Type711 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError6? Type711 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError7? Type712 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType6? Type712 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType7? Type713 { get; set; }
+ public global::Fal.ListAssetCharactersResponse8? Type713 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse9? Type714 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError7? Type714 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError8? Type715 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType7? Type715 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType8? Type716 { get; set; }
+ public global::Fal.ListAssetCharactersResponse9? Type716 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse10? Type717 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError8? Type717 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError9? Type718 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType8? Type718 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType9? Type719 { get; set; }
+ public global::Fal.ListAssetCharactersResponse10? Type719 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse? Type720 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError9? Type720 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacter? Type721 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType9? Type721 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacterType? Type722 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse? Type722 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse2? Type723 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacter? Type723 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError? Type724 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacterType? Type724 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType? Type725 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse2? Type725 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse3? Type726 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError? Type726 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError2? Type727 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType? Type727 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType2? Type728 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse3? Type728 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse4? Type729 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError2? Type729 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError3? Type730 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType2? Type730 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType3? Type731 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse4? Type731 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse5? Type732 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError3? Type732 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError4? Type733 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType3? Type733 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType4? Type734 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse5? Type734 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse6? Type735 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError4? Type735 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError5? Type736 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType4? Type736 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType5? Type737 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse6? Type737 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse7? Type738 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError5? Type738 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError6? Type739 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType5? Type739 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType6? Type740 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse7? Type740 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse8? Type741 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError6? Type741 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError7? Type742 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType6? Type742 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType7? Type743 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse8? Type743 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse9? Type744 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError7? Type744 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError8? Type745 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType7? Type745 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType8? Type746 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse9? Type746 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse10? Type747 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError8? Type747 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError9? Type748 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType8? Type748 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType9? Type749 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse10? Type749 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse? Type750 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError9? Type750 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacter? Type751 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType9? Type751 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacterType? Type752 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse? Type752 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse2? Type753 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacter? Type753 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError? Type754 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacterType? Type754 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType? Type755 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse2? Type755 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse3? Type756 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError? Type756 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError2? Type757 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType? Type757 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType2? Type758 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse3? Type758 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse4? Type759 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError2? Type759 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError3? Type760 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType2? Type760 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType3? Type761 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse4? Type761 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse5? Type762 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError3? Type762 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError4? Type763 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType3? Type763 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType4? Type764 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse5? Type764 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse6? Type765 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError4? Type765 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError5? Type766 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType4? Type766 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType5? Type767 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse6? Type767 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse7? Type768 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError5? Type768 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError6? Type769 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType5? Type769 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType6? Type770 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse7? Type770 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse8? Type771 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError6? Type771 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError7? Type772 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType6? Type772 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType7? Type773 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse8? Type773 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse9? Type774 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError7? Type774 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError8? Type775 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType7? Type775 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType8? Type776 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse9? Type776 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse10? Type777 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError8? Type777 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError9? Type778 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType8? Type778 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType9? Type779 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse10? Type779 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse? Type780 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError9? Type780 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacter? Type781 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType9? Type781 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacterType? Type782 { get; set; }
+ public global::Fal.GetAssetCharacterResponse? Type782 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse2? Type783 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacter? Type783 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError? Type784 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacterType? Type784 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType? Type785 { get; set; }
+ public global::Fal.GetAssetCharacterResponse2? Type785 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse3? Type786 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError? Type786 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError2? Type787 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType? Type787 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType2? Type788 { get; set; }
+ public global::Fal.GetAssetCharacterResponse3? Type788 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse4? Type789 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError2? Type789 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError3? Type790 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType2? Type790 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType3? Type791 { get; set; }
+ public global::Fal.GetAssetCharacterResponse4? Type791 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse5? Type792 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError3? Type792 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError4? Type793 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType3? Type793 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType4? Type794 { get; set; }
+ public global::Fal.GetAssetCharacterResponse5? Type794 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse6? Type795 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError4? Type795 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError5? Type796 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType4? Type796 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType5? Type797 { get; set; }
+ public global::Fal.GetAssetCharacterResponse6? Type797 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse7? Type798 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError5? Type798 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError6? Type799 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType5? Type799 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType6? Type800 { get; set; }
+ public global::Fal.GetAssetCharacterResponse7? Type800 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse8? Type801 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError6? Type801 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError7? Type802 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType6? Type802 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType7? Type803 { get; set; }
+ public global::Fal.GetAssetCharacterResponse8? Type803 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse9? Type804 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError7? Type804 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError8? Type805 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType7? Type805 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType8? Type806 { get; set; }
+ public global::Fal.GetAssetCharacterResponse9? Type806 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse10? Type807 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError8? Type807 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError9? Type808 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType8? Type808 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType9? Type809 { get; set; }
+ public global::Fal.GetAssetCharacterResponse10? Type809 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse? Type810 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError9? Type810 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError? Type811 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType9? Type811 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType? Type812 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse? Type812 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse2? Type813 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError? Type813 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError2? Type814 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType? Type814 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType2? Type815 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse2? Type815 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse3? Type816 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError2? Type816 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError3? Type817 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType2? Type817 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType3? Type818 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse3? Type818 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse4? Type819 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError3? Type819 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError4? Type820 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType3? Type820 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType4? Type821 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse4? Type821 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse5? Type822 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError4? Type822 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError5? Type823 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType4? Type823 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType5? Type824 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse5? Type824 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse6? Type825 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError5? Type825 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError6? Type826 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType5? Type826 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType6? Type827 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse6? Type827 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse7? Type828 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError6? Type828 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError7? Type829 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType6? Type829 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType7? Type830 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse7? Type830 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse8? Type831 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError7? Type831 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError8? Type832 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType7? Type832 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType8? Type833 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse8? Type833 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse9? Type834 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError8? Type834 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError9? Type835 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType8? Type835 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType9? Type836 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse9? Type836 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse? Type837 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError9? Type837 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacter? Type838 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType9? Type838 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type839 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse? Type839 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse2? Type840 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacter? Type840 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError? Type841 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type841 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType? Type842 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse2? Type842 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse3? Type843 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError? Type843 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError2? Type844 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType? Type844 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type845 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse3? Type845 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse4? Type846 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError2? Type846 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError3? Type847 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type847 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type848 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse4? Type848 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse5? Type849 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError3? Type849 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError4? Type850 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type850 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type851 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse5? Type851 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse6? Type852 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError4? Type852 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError5? Type853 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type853 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type854 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse6? Type854 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse7? Type855 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError5? Type855 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError6? Type856 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type856 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type857 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse7? Type857 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse8? Type858 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError6? Type858 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError7? Type859 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type859 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type860 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse8? Type860 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse9? Type861 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError7? Type861 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError8? Type862 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type862 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type863 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse9? Type863 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse10? Type864 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError8? Type864 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError9? Type865 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type865 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type866 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse10? Type866 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse? Type867 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError9? Type867 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type868 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type868 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type869 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse? Type869 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse2? Type870 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type870 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError? Type871 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type871 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type872 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse2? Type872 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse3? Type873 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError? Type873 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError2? Type874 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type874 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type875 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse3? Type875 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse4? Type876 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError2? Type876 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError3? Type877 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type877 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type878 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse4? Type878 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse5? Type879 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError3? Type879 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError4? Type880 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type880 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type881 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse5? Type881 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse6? Type882 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError4? Type882 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError5? Type883 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type883 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type884 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse6? Type884 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse7? Type885 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError5? Type885 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError6? Type886 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type886 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type887 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse7? Type887 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse8? Type888 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError6? Type888 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError7? Type889 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type889 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type890 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse8? Type890 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse9? Type891 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError7? Type891 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError8? Type892 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type892 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type893 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse9? Type893 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse10? Type894 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError8? Type894 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError9? Type895 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type895 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type896 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse10? Type896 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse? Type897 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError9? Type897 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type898 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type898 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseTag? Type899 { get; set; }
+ public global::Fal.ListAssetTagsResponse? Type899 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse2? Type900 { get; set; }
+ public global::System.Collections.Generic.IList? Type900 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError? Type901 { get; set; }
+ public global::Fal.ListAssetTagsResponseTag? Type901 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType? Type902 { get; set; }
+ public global::Fal.ListAssetTagsResponse2? Type902 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse3? Type903 { get; set; }
+ public global::Fal.ListAssetTagsResponseError? Type903 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError2? Type904 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType? Type904 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType2? Type905 { get; set; }
+ public global::Fal.ListAssetTagsResponse3? Type905 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse4? Type906 { get; set; }
+ public global::Fal.ListAssetTagsResponseError2? Type906 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError3? Type907 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType2? Type907 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType3? Type908 { get; set; }
+ public global::Fal.ListAssetTagsResponse4? Type908 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse5? Type909 { get; set; }
+ public global::Fal.ListAssetTagsResponseError3? Type909 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError4? Type910 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType3? Type910 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType4? Type911 { get; set; }
+ public global::Fal.ListAssetTagsResponse5? Type911 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse6? Type912 { get; set; }
+ public global::Fal.ListAssetTagsResponseError4? Type912 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError5? Type913 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType4? Type913 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType5? Type914 { get; set; }
+ public global::Fal.ListAssetTagsResponse6? Type914 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse7? Type915 { get; set; }
+ public global::Fal.ListAssetTagsResponseError5? Type915 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError6? Type916 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType5? Type916 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType6? Type917 { get; set; }
+ public global::Fal.ListAssetTagsResponse7? Type917 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse8? Type918 { get; set; }
+ public global::Fal.ListAssetTagsResponseError6? Type918 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError7? Type919 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType6? Type919 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType7? Type920 { get; set; }
+ public global::Fal.ListAssetTagsResponse8? Type920 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse9? Type921 { get; set; }
+ public global::Fal.ListAssetTagsResponseError7? Type921 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError8? Type922 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType7? Type922 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType8? Type923 { get; set; }
+ public global::Fal.ListAssetTagsResponse9? Type923 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse10? Type924 { get; set; }
+ public global::Fal.ListAssetTagsResponseError8? Type924 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError9? Type925 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType8? Type925 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType9? Type926 { get; set; }
+ public global::Fal.ListAssetTagsResponse10? Type926 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse? Type927 { get; set; }
+ public global::Fal.ListAssetTagsResponseError9? Type927 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseTag? Type928 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType9? Type928 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse2? Type929 { get; set; }
+ public global::Fal.CreateAssetTagResponse? Type929 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError? Type930 { get; set; }
+ public global::Fal.CreateAssetTagResponseTag? Type930 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType? Type931 { get; set; }
+ public global::Fal.CreateAssetTagResponse2? Type931 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse3? Type932 { get; set; }
+ public global::Fal.CreateAssetTagResponseError? Type932 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError2? Type933 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType? Type933 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType2? Type934 { get; set; }
+ public global::Fal.CreateAssetTagResponse3? Type934 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse4? Type935 { get; set; }
+ public global::Fal.CreateAssetTagResponseError2? Type935 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError3? Type936 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType2? Type936 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType3? Type937 { get; set; }
+ public global::Fal.CreateAssetTagResponse4? Type937 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse5? Type938 { get; set; }
+ public global::Fal.CreateAssetTagResponseError3? Type938 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError4? Type939 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType3? Type939 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType4? Type940 { get; set; }
+ public global::Fal.CreateAssetTagResponse5? Type940 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse6? Type941 { get; set; }
+ public global::Fal.CreateAssetTagResponseError4? Type941 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError5? Type942 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType4? Type942 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType5? Type943 { get; set; }
+ public global::Fal.CreateAssetTagResponse6? Type943 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse7? Type944 { get; set; }
+ public global::Fal.CreateAssetTagResponseError5? Type944 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError6? Type945 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType5? Type945 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType6? Type946 { get; set; }
+ public global::Fal.CreateAssetTagResponse7? Type946 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse8? Type947 { get; set; }
+ public global::Fal.CreateAssetTagResponseError6? Type947 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError7? Type948 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType6? Type948 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType7? Type949 { get; set; }
+ public global::Fal.CreateAssetTagResponse8? Type949 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse9? Type950 { get; set; }
+ public global::Fal.CreateAssetTagResponseError7? Type950 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError8? Type951 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType7? Type951 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType8? Type952 { get; set; }
+ public global::Fal.CreateAssetTagResponse9? Type952 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse10? Type953 { get; set; }
+ public global::Fal.CreateAssetTagResponseError8? Type953 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError9? Type954 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType8? Type954 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType9? Type955 { get; set; }
+ public global::Fal.CreateAssetTagResponse10? Type955 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse? Type956 { get; set; }
+ public global::Fal.CreateAssetTagResponseError9? Type956 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type957 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType9? Type957 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseTag? Type958 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse? Type958 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse2? Type959 { get; set; }
+ public global::System.Collections.Generic.IList? Type959 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError? Type960 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseTag? Type960 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType? Type961 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse2? Type961 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse3? Type962 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError? Type962 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError2? Type963 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType? Type963 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type964 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse3? Type964 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse4? Type965 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError2? Type965 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError3? Type966 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type966 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type967 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse4? Type967 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse5? Type968 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError3? Type968 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError4? Type969 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type969 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type970 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse5? Type970 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse6? Type971 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError4? Type971 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError5? Type972 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type972 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type973 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse6? Type973 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse7? Type974 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError5? Type974 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError6? Type975 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type975 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type976 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse7? Type976 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse8? Type977 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError6? Type977 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError7? Type978 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type978 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type979 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse8? Type979 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse9? Type980 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError7? Type980 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError8? Type981 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type981 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type982 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse9? Type982 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse10? Type983 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError8? Type983 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError9? Type984 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type984 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type985 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse10? Type985 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse? Type986 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError9? Type986 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseTag? Type987 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type987 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse2? Type988 { get; set; }
+ public global::Fal.UpdateAssetTagResponse? Type988 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError? Type989 { get; set; }
+ public global::Fal.UpdateAssetTagResponseTag? Type989 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType? Type990 { get; set; }
+ public global::Fal.UpdateAssetTagResponse2? Type990 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse3? Type991 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError? Type991 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError2? Type992 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType? Type992 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType2? Type993 { get; set; }
+ public global::Fal.UpdateAssetTagResponse3? Type993 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse4? Type994 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError2? Type994 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError3? Type995 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType2? Type995 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType3? Type996 { get; set; }
+ public global::Fal.UpdateAssetTagResponse4? Type996 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse5? Type997 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError3? Type997 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError4? Type998 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType3? Type998 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType4? Type999 { get; set; }
+ public global::Fal.UpdateAssetTagResponse5? Type999 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse6? Type1000 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError4? Type1000 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError5? Type1001 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType4? Type1001 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType5? Type1002 { get; set; }
+ public global::Fal.UpdateAssetTagResponse6? Type1002 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse7? Type1003 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError5? Type1003 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError6? Type1004 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType5? Type1004 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType6? Type1005 { get; set; }
+ public global::Fal.UpdateAssetTagResponse7? Type1005 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse8? Type1006 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError6? Type1006 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError7? Type1007 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType6? Type1007 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType7? Type1008 { get; set; }
+ public global::Fal.UpdateAssetTagResponse8? Type1008 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse9? Type1009 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError7? Type1009 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError8? Type1010 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType7? Type1010 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType8? Type1011 { get; set; }
+ public global::Fal.UpdateAssetTagResponse9? Type1011 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse10? Type1012 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError8? Type1012 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError9? Type1013 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType8? Type1013 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType9? Type1014 { get; set; }
+ public global::Fal.UpdateAssetTagResponse10? Type1014 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse? Type1015 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError9? Type1015 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError? Type1016 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType9? Type1016 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType? Type1017 { get; set; }
+ public global::Fal.DeleteAssetTagResponse? Type1017 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse2? Type1018 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError? Type1018 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError2? Type1019 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType? Type1019 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType2? Type1020 { get; set; }
+ public global::Fal.DeleteAssetTagResponse2? Type1020 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse3? Type1021 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError2? Type1021 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError3? Type1022 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType2? Type1022 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType3? Type1023 { get; set; }
+ public global::Fal.DeleteAssetTagResponse3? Type1023 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse4? Type1024 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError3? Type1024 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError4? Type1025 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType3? Type1025 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType4? Type1026 { get; set; }
+ public global::Fal.DeleteAssetTagResponse4? Type1026 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse5? Type1027 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError4? Type1027 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError5? Type1028 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType4? Type1028 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType5? Type1029 { get; set; }
+ public global::Fal.DeleteAssetTagResponse5? Type1029 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse6? Type1030 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError5? Type1030 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError6? Type1031 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType5? Type1031 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType6? Type1032 { get; set; }
+ public global::Fal.DeleteAssetTagResponse6? Type1032 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse7? Type1033 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError6? Type1033 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError7? Type1034 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType6? Type1034 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType7? Type1035 { get; set; }
+ public global::Fal.DeleteAssetTagResponse7? Type1035 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse8? Type1036 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError7? Type1036 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError8? Type1037 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType7? Type1037 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType8? Type1038 { get; set; }
+ public global::Fal.DeleteAssetTagResponse8? Type1038 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse9? Type1039 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError8? Type1039 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError9? Type1040 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType8? Type1040 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType9? Type1041 { get; set; }
+ public global::Fal.DeleteAssetTagResponse9? Type1041 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse? Type1042 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError9? Type1042 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAsset? Type1043 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType9? Type1043 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetType? Type1044 { get; set; }
+ public global::Fal.UploadAssetResponse? Type1044 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1045 { get; set; }
+ public global::Fal.UploadAssetResponseAsset? Type1045 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetTag? Type1046 { get; set; }
+ public global::Fal.UploadAssetResponseAssetType? Type1046 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse2? Type1047 { get; set; }
+ public global::System.Collections.Generic.IList? Type1047 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError? Type1048 { get; set; }
+ public global::Fal.UploadAssetResponseAssetTag? Type1048 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType? Type1049 { get; set; }
+ public global::Fal.UploadAssetResponse2? Type1049 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse3? Type1050 { get; set; }
+ public global::Fal.UploadAssetResponseError? Type1050 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError2? Type1051 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType? Type1051 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType2? Type1052 { get; set; }
+ public global::Fal.UploadAssetResponse3? Type1052 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse4? Type1053 { get; set; }
+ public global::Fal.UploadAssetResponseError2? Type1053 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError3? Type1054 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType2? Type1054 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType3? Type1055 { get; set; }
+ public global::Fal.UploadAssetResponse4? Type1055 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse5? Type1056 { get; set; }
+ public global::Fal.UploadAssetResponseError3? Type1056 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError4? Type1057 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType3? Type1057 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType4? Type1058 { get; set; }
+ public global::Fal.UploadAssetResponse5? Type1058 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse6? Type1059 { get; set; }
+ public global::Fal.UploadAssetResponseError4? Type1059 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError5? Type1060 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType4? Type1060 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType5? Type1061 { get; set; }
+ public global::Fal.UploadAssetResponse6? Type1061 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse7? Type1062 { get; set; }
+ public global::Fal.UploadAssetResponseError5? Type1062 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError6? Type1063 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType5? Type1063 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType6? Type1064 { get; set; }
+ public global::Fal.UploadAssetResponse7? Type1064 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse8? Type1065 { get; set; }
+ public global::Fal.UploadAssetResponseError6? Type1065 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError7? Type1066 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType6? Type1066 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType7? Type1067 { get; set; }
+ public global::Fal.UploadAssetResponse8? Type1067 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse9? Type1068 { get; set; }
+ public global::Fal.UploadAssetResponseError7? Type1068 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError8? Type1069 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType7? Type1069 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType8? Type1070 { get; set; }
+ public global::Fal.UploadAssetResponse9? Type1070 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse10? Type1071 { get; set; }
+ public global::Fal.UploadAssetResponseError8? Type1071 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError9? Type1072 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType8? Type1072 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType9? Type1073 { get; set; }
+ public global::Fal.UploadAssetResponse10? Type1073 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse? Type1074 { get; set; }
+ public global::Fal.UploadAssetResponseError9? Type1074 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAsset? Type1075 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType9? Type1075 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetType? Type1076 { get; set; }
+ public global::Fal.GetAssetResponse? Type1076 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1077 { get; set; }
+ public global::Fal.GetAssetResponseAsset? Type1077 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetTag? Type1078 { get; set; }
+ public global::Fal.GetAssetResponseAssetType? Type1078 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse2? Type1079 { get; set; }
+ public global::System.Collections.Generic.IList? Type1079 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError? Type1080 { get; set; }
+ public global::Fal.GetAssetResponseAssetTag? Type1080 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType? Type1081 { get; set; }
+ public global::Fal.GetAssetResponse2? Type1081 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse3? Type1082 { get; set; }
+ public global::Fal.GetAssetResponseError? Type1082 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError2? Type1083 { get; set; }
+ public global::Fal.GetAssetResponseErrorType? Type1083 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType2? Type1084 { get; set; }
+ public global::Fal.GetAssetResponse3? Type1084 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse4? Type1085 { get; set; }
+ public global::Fal.GetAssetResponseError2? Type1085 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError3? Type1086 { get; set; }
+ public global::Fal.GetAssetResponseErrorType2? Type1086 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType3? Type1087 { get; set; }
+ public global::Fal.GetAssetResponse4? Type1087 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse5? Type1088 { get; set; }
+ public global::Fal.GetAssetResponseError3? Type1088 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError4? Type1089 { get; set; }
+ public global::Fal.GetAssetResponseErrorType3? Type1089 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType4? Type1090 { get; set; }
+ public global::Fal.GetAssetResponse5? Type1090 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse6? Type1091 { get; set; }
+ public global::Fal.GetAssetResponseError4? Type1091 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError5? Type1092 { get; set; }
+ public global::Fal.GetAssetResponseErrorType4? Type1092 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType5? Type1093 { get; set; }
+ public global::Fal.GetAssetResponse6? Type1093 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse7? Type1094 { get; set; }
+ public global::Fal.GetAssetResponseError5? Type1094 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError6? Type1095 { get; set; }
+ public global::Fal.GetAssetResponseErrorType5? Type1095 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType6? Type1096 { get; set; }
+ public global::Fal.GetAssetResponse7? Type1096 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse8? Type1097 { get; set; }
+ public global::Fal.GetAssetResponseError6? Type1097 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError7? Type1098 { get; set; }
+ public global::Fal.GetAssetResponseErrorType6? Type1098 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType7? Type1099 { get; set; }
+ public global::Fal.GetAssetResponse8? Type1099 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse9? Type1100 { get; set; }
+ public global::Fal.GetAssetResponseError7? Type1100 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError8? Type1101 { get; set; }
+ public global::Fal.GetAssetResponseErrorType7? Type1101 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType8? Type1102 { get; set; }
+ public global::Fal.GetAssetResponse9? Type1102 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse10? Type1103 { get; set; }
+ public global::Fal.GetAssetResponseError8? Type1103 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError9? Type1104 { get; set; }
+ public global::Fal.GetAssetResponseErrorType8? Type1104 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType9? Type1105 { get; set; }
+ public global::Fal.GetAssetResponse10? Type1105 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse? Type1106 { get; set; }
+ public global::Fal.GetAssetResponseError9? Type1106 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse2? Type1107 { get; set; }
+ public global::Fal.GetAssetResponseErrorType9? Type1107 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError? Type1108 { get; set; }
+ public global::Fal.FavoriteAssetResponse? Type1108 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType? Type1109 { get; set; }
+ public global::Fal.FavoriteAssetResponse2? Type1109 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse3? Type1110 { get; set; }
+ public global::Fal.FavoriteAssetResponseError? Type1110 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError2? Type1111 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType? Type1111 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType2? Type1112 { get; set; }
+ public global::Fal.FavoriteAssetResponse3? Type1112 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse4? Type1113 { get; set; }
+ public global::Fal.FavoriteAssetResponseError2? Type1113 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError3? Type1114 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType2? Type1114 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType3? Type1115 { get; set; }
+ public global::Fal.FavoriteAssetResponse4? Type1115 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse5? Type1116 { get; set; }
+ public global::Fal.FavoriteAssetResponseError3? Type1116 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError4? Type1117 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType3? Type1117 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType4? Type1118 { get; set; }
+ public global::Fal.FavoriteAssetResponse5? Type1118 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse6? Type1119 { get; set; }
+ public global::Fal.FavoriteAssetResponseError4? Type1119 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError5? Type1120 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType4? Type1120 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType5? Type1121 { get; set; }
+ public global::Fal.FavoriteAssetResponse6? Type1121 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse7? Type1122 { get; set; }
+ public global::Fal.FavoriteAssetResponseError5? Type1122 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError6? Type1123 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType5? Type1123 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType6? Type1124 { get; set; }
+ public global::Fal.FavoriteAssetResponse7? Type1124 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse8? Type1125 { get; set; }
+ public global::Fal.FavoriteAssetResponseError6? Type1125 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError7? Type1126 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType6? Type1126 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType7? Type1127 { get; set; }
+ public global::Fal.FavoriteAssetResponse8? Type1127 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse9? Type1128 { get; set; }
+ public global::Fal.FavoriteAssetResponseError7? Type1128 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError8? Type1129 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType7? Type1129 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType8? Type1130 { get; set; }
+ public global::Fal.FavoriteAssetResponse9? Type1130 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse10? Type1131 { get; set; }
+ public global::Fal.FavoriteAssetResponseError8? Type1131 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError9? Type1132 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType8? Type1132 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType9? Type1133 { get; set; }
+ public global::Fal.FavoriteAssetResponse10? Type1133 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse? Type1134 { get; set; }
+ public global::Fal.FavoriteAssetResponseError9? Type1134 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse2? Type1135 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType9? Type1135 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError? Type1136 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse? Type1136 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType? Type1137 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse2? Type1137 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse3? Type1138 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError? Type1138 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError2? Type1139 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType? Type1139 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType2? Type1140 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse3? Type1140 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse4? Type1141 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError2? Type1141 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError3? Type1142 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType2? Type1142 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType3? Type1143 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse4? Type1143 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse5? Type1144 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError3? Type1144 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError4? Type1145 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType3? Type1145 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType4? Type1146 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse5? Type1146 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse6? Type1147 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError4? Type1147 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError5? Type1148 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType4? Type1148 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType5? Type1149 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse6? Type1149 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse7? Type1150 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError5? Type1150 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError6? Type1151 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType5? Type1151 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType6? Type1152 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse7? Type1152 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse8? Type1153 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError6? Type1153 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError7? Type1154 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType6? Type1154 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType7? Type1155 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse8? Type1155 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse9? Type1156 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError7? Type1156 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError8? Type1157 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType7? Type1157 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType8? Type1158 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse9? Type1158 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse10? Type1159 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError8? Type1159 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError9? Type1160 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType8? Type1160 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType9? Type1161 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse10? Type1161 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse? Type1162 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError9? Type1162 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1163 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType9? Type1163 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseTag? Type1164 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse? Type1164 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse2? Type1165 { get; set; }
+ public global::System.Collections.Generic.IList? Type1165 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError? Type1166 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseTag? Type1166 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1167 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse2? Type1167 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse3? Type1168 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError? Type1168 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError2? Type1169 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1169 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1170 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse3? Type1170 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse4? Type1171 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError2? Type1171 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError3? Type1172 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1172 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1173 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse4? Type1173 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse5? Type1174 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError3? Type1174 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError4? Type1175 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1175 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1176 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse5? Type1176 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse6? Type1177 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError4? Type1177 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError5? Type1178 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1178 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1179 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse6? Type1179 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse7? Type1180 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError5? Type1180 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError6? Type1181 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1181 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1182 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse7? Type1182 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse8? Type1183 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError6? Type1183 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError7? Type1184 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1184 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1185 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse8? Type1185 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse9? Type1186 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError7? Type1186 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError8? Type1187 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1187 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1188 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse9? Type1188 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse10? Type1189 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError8? Type1189 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError9? Type1190 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1190 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1191 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse10? Type1191 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse? Type1192 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError9? Type1192 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse2? Type1193 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1193 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError? Type1194 { get; set; }
+ public global::Fal.AssignAssetTagResponse? Type1194 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType? Type1195 { get; set; }
+ public global::Fal.AssignAssetTagResponse2? Type1195 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse3? Type1196 { get; set; }
+ public global::Fal.AssignAssetTagResponseError? Type1196 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError2? Type1197 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType? Type1197 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType2? Type1198 { get; set; }
+ public global::Fal.AssignAssetTagResponse3? Type1198 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse4? Type1199 { get; set; }
+ public global::Fal.AssignAssetTagResponseError2? Type1199 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError3? Type1200 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType2? Type1200 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType3? Type1201 { get; set; }
+ public global::Fal.AssignAssetTagResponse4? Type1201 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse5? Type1202 { get; set; }
+ public global::Fal.AssignAssetTagResponseError3? Type1202 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError4? Type1203 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType3? Type1203 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType4? Type1204 { get; set; }
+ public global::Fal.AssignAssetTagResponse5? Type1204 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse6? Type1205 { get; set; }
+ public global::Fal.AssignAssetTagResponseError4? Type1205 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError5? Type1206 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType4? Type1206 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType5? Type1207 { get; set; }
+ public global::Fal.AssignAssetTagResponse6? Type1207 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse7? Type1208 { get; set; }
+ public global::Fal.AssignAssetTagResponseError5? Type1208 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError6? Type1209 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType5? Type1209 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType6? Type1210 { get; set; }
+ public global::Fal.AssignAssetTagResponse7? Type1210 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse8? Type1211 { get; set; }
+ public global::Fal.AssignAssetTagResponseError6? Type1211 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError7? Type1212 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType6? Type1212 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType7? Type1213 { get; set; }
+ public global::Fal.AssignAssetTagResponse8? Type1213 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse9? Type1214 { get; set; }
+ public global::Fal.AssignAssetTagResponseError7? Type1214 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError8? Type1215 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType7? Type1215 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType8? Type1216 { get; set; }
+ public global::Fal.AssignAssetTagResponse9? Type1216 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse10? Type1217 { get; set; }
+ public global::Fal.AssignAssetTagResponseError8? Type1217 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError9? Type1218 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType8? Type1218 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType9? Type1219 { get; set; }
+ public global::Fal.AssignAssetTagResponse10? Type1219 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse? Type1220 { get; set; }
+ public global::Fal.AssignAssetTagResponseError9? Type1220 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError? Type1221 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType9? Type1221 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType? Type1222 { get; set; }
+ public global::Fal.UnassignAssetTagResponse? Type1222 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse2? Type1223 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError? Type1223 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError2? Type1224 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType? Type1224 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType2? Type1225 { get; set; }
+ public global::Fal.UnassignAssetTagResponse2? Type1225 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse3? Type1226 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError2? Type1226 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError3? Type1227 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType2? Type1227 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType3? Type1228 { get; set; }
+ public global::Fal.UnassignAssetTagResponse3? Type1228 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse4? Type1229 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError3? Type1229 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError4? Type1230 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType3? Type1230 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType4? Type1231 { get; set; }
+ public global::Fal.UnassignAssetTagResponse4? Type1231 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse5? Type1232 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError4? Type1232 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError5? Type1233 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType4? Type1233 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType5? Type1234 { get; set; }
+ public global::Fal.UnassignAssetTagResponse5? Type1234 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse6? Type1235 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError5? Type1235 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError6? Type1236 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType5? Type1236 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType6? Type1237 { get; set; }
+ public global::Fal.UnassignAssetTagResponse6? Type1237 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse7? Type1238 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError6? Type1238 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError7? Type1239 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType6? Type1239 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType7? Type1240 { get; set; }
+ public global::Fal.UnassignAssetTagResponse7? Type1240 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse8? Type1241 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError7? Type1241 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError8? Type1242 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType7? Type1242 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType8? Type1243 { get; set; }
+ public global::Fal.UnassignAssetTagResponse8? Type1243 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse9? Type1244 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError8? Type1244 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError9? Type1245 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType8? Type1245 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType9? Type1246 { get; set; }
+ public global::Fal.UnassignAssetTagResponse9? Type1246 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse? Type1247 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError9? Type1247 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseDefault? Type1248 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType9? Type1248 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1249 { get; set; }
+ public global::Fal.GetStorageFileAclResponse? Type1249 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseRule? Type1250 { get; set; }
+ public global::Fal.GetStorageFileAclResponseDefault? Type1250 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseRuleDecision? Type1251 { get; set; }
+ public global::System.Collections.Generic.IList? Type1251 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse2? Type1252 { get; set; }
+ public global::Fal.GetStorageFileAclResponseRule? Type1252 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError? Type1253 { get; set; }
+ public global::Fal.GetStorageFileAclResponseRuleDecision? Type1253 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType? Type1254 { get; set; }
+ public global::Fal.GetStorageFileAclResponse2? Type1254 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse3? Type1255 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError? Type1255 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError2? Type1256 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType? Type1256 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType2? Type1257 { get; set; }
+ public global::Fal.GetStorageFileAclResponse3? Type1257 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse4? Type1258 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError2? Type1258 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError3? Type1259 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType2? Type1259 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType3? Type1260 { get; set; }
+ public global::Fal.GetStorageFileAclResponse4? Type1260 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse5? Type1261 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError3? Type1261 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError4? Type1262 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType3? Type1262 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType4? Type1263 { get; set; }
+ public global::Fal.GetStorageFileAclResponse5? Type1263 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse6? Type1264 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError4? Type1264 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError5? Type1265 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType4? Type1265 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType5? Type1266 { get; set; }
+ public global::Fal.GetStorageFileAclResponse6? Type1266 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse7? Type1267 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError5? Type1267 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError6? Type1268 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType5? Type1268 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType6? Type1269 { get; set; }
+ public global::Fal.GetStorageFileAclResponse7? Type1269 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse? Type1270 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError6? Type1270 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseDefault? Type1271 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType6? Type1271 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1272 { get; set; }
+ public global::Fal.SetStorageFileAclResponse? Type1272 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseRule? Type1273 { get; set; }
+ public global::Fal.SetStorageFileAclResponseDefault? Type1273 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseRuleDecision? Type1274 { get; set; }
+ public global::System.Collections.Generic.IList? Type1274 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse2? Type1275 { get; set; }
+ public global::Fal.SetStorageFileAclResponseRule? Type1275 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError? Type1276 { get; set; }
+ public global::Fal.SetStorageFileAclResponseRuleDecision? Type1276 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType? Type1277 { get; set; }
+ public global::Fal.SetStorageFileAclResponse2? Type1277 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse3? Type1278 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError? Type1278 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError2? Type1279 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType? Type1279 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType2? Type1280 { get; set; }
+ public global::Fal.SetStorageFileAclResponse3? Type1280 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse4? Type1281 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError2? Type1281 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError3? Type1282 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType2? Type1282 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType3? Type1283 { get; set; }
+ public global::Fal.SetStorageFileAclResponse4? Type1283 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse5? Type1284 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError3? Type1284 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError4? Type1285 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType3? Type1285 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType4? Type1286 { get; set; }
+ public global::Fal.SetStorageFileAclResponse5? Type1286 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse6? Type1287 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError4? Type1287 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError5? Type1288 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType4? Type1288 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType5? Type1289 { get; set; }
+ public global::Fal.SetStorageFileAclResponse6? Type1289 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse7? Type1290 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError5? Type1290 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError6? Type1291 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType5? Type1291 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType6? Type1292 { get; set; }
+ public global::Fal.SetStorageFileAclResponse7? Type1292 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse? Type1293 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError6? Type1293 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse2? Type1294 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType6? Type1294 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError? Type1295 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse? Type1295 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType? Type1296 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse2? Type1296 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse3? Type1297 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError? Type1297 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError2? Type1298 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType? Type1298 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType2? Type1299 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse3? Type1299 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse4? Type1300 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError2? Type1300 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError3? Type1301 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType2? Type1301 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType3? Type1302 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse4? Type1302 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse5? Type1303 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError3? Type1303 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError4? Type1304 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType3? Type1304 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType4? Type1305 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse5? Type1305 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse6? Type1306 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError4? Type1306 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError5? Type1307 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType4? Type1307 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType5? Type1308 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse6? Type1308 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse7? Type1309 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError5? Type1309 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError6? Type1310 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType5? Type1310 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType6? Type1311 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse7? Type1311 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse? Type1312 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError6? Type1312 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAcl? Type1313 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType6? Type1313 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclDefault? Type1314 { get; set; }
+ public global::Fal.GetStorageSettingsResponse? Type1314 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1315 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAcl? Type1315 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclRule? Type1316 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclDefault? Type1316 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclRuleDecision? Type1317 { get; set; }
+ public global::System.Collections.Generic.IList? Type1317 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse2? Type1318 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclRule? Type1318 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError? Type1319 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclRuleDecision? Type1319 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType? Type1320 { get; set; }
+ public global::Fal.GetStorageSettingsResponse2? Type1320 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse3? Type1321 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError? Type1321 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError2? Type1322 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType? Type1322 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType2? Type1323 { get; set; }
+ public global::Fal.GetStorageSettingsResponse3? Type1323 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse4? Type1324 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError2? Type1324 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError3? Type1325 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType2? Type1325 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType3? Type1326 { get; set; }
+ public global::Fal.GetStorageSettingsResponse4? Type1326 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse5? Type1327 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError3? Type1327 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError4? Type1328 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType3? Type1328 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType4? Type1329 { get; set; }
+ public global::Fal.GetStorageSettingsResponse5? Type1329 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse? Type1330 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError4? Type1330 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAcl? Type1331 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType4? Type1331 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclDefault? Type1332 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse? Type1332 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1333 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAcl? Type1333 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclRule? Type1334 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclDefault? Type1334 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclRuleDecision? Type1335 { get; set; }
+ public global::System.Collections.Generic.IList? Type1335 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse2? Type1336 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclRule? Type1336 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError? Type1337 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclRuleDecision? Type1337 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType? Type1338 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse2? Type1338 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse3? Type1339 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError? Type1339 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError2? Type1340 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType? Type1340 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType2? Type1341 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse3? Type1341 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse4? Type1342 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError2? Type1342 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError3? Type1343 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType2? Type1343 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType3? Type1344 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse4? Type1344 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse5? Type1345 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError3? Type1345 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError4? Type1346 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType3? Type1346 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType4? Type1347 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse5? Type1347 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse6? Type1348 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError4? Type1348 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError5? Type1349 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType4? Type1349 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType5? Type1350 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse6? Type1350 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse? Type1351 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError5? Type1351 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1352 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType5? Type1352 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1353 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse? Type1353 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1354 { get; set; }
+ public global::System.Collections.Generic.IList? Type1354 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1355 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1355 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1356 { get; set; }
+ public global::System.Collections.Generic.IList? Type1356 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1357 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1357 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse2? Type1358 { get; set; }
+ public global::System.Collections.Generic.IList? Type1358 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError? Type1359 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1359 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1360 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse2? Type1360 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse3? Type1361 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError? Type1361 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError2? Type1362 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1362 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1363 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse3? Type1363 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse4? Type1364 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError2? Type1364 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError3? Type1365 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1365 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1366 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse4? Type1366 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse5? Type1367 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError3? Type1367 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError4? Type1368 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1368 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1369 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse5? Type1369 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse6? Type1370 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError4? Type1370 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError5? Type1371 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1371 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1372 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse6? Type1372 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse7? Type1373 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError5? Type1373 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError6? Type1374 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1374 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1375 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse7? Type1375 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponse? Type1376 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError6? Type1376 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1377 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1377 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseApp? Type1378 { get; set; }
+ public global::Fal.ServerlessListAppsResponse? Type1378 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseAppAuthMode? Type1379 { get; set; }
+ public global::System.Collections.Generic.IList? Type1379 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponse2? Type1380 { get; set; }
+ public global::Fal.ServerlessListAppsResponseApp? Type1380 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseError? Type1381 { get; set; }
+ public global::Fal.ServerlessListAppsResponseAppAuthMode? Type1381 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseErrorType? Type1382 { get; set; }
+ public global::Fal.ServerlessListAppsResponse2? Type1382 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponse3? Type1383 { get; set; }
+ public global::Fal.ServerlessListAppsResponseError? Type1383 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseError2? Type1384 { get; set; }
+ public global::Fal.ServerlessListAppsResponseErrorType? Type1384 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseErrorType2? Type1385 { get; set; }
+ public global::Fal.ServerlessListAppsResponse3? Type1385 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponse4? Type1386 { get; set; }
+ public global::Fal.ServerlessListAppsResponseError2? Type1386 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseError3? Type1387 { get; set; }
+ public global::Fal.ServerlessListAppsResponseErrorType2? Type1387 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseErrorType3? Type1388 { get; set; }
+ public global::Fal.ServerlessListAppsResponse4? Type1388 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponse5? Type1389 { get; set; }
+ public global::Fal.ServerlessListAppsResponseError3? Type1389 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseError4? Type1390 { get; set; }
+ public global::Fal.ServerlessListAppsResponseErrorType3? Type1390 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseErrorType4? Type1391 { get; set; }
+ public global::Fal.ServerlessListAppsResponse5? Type1391 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponse6? Type1392 { get; set; }
+ public global::Fal.ServerlessListAppsResponseError4? Type1392 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseError5? Type1393 { get; set; }
+ public global::Fal.ServerlessListAppsResponseErrorType4? Type1393 { get; set; }
///
///
///
- public global::Fal.ServerlessListAppsResponseErrorType5? Type1394 { get; set; }
+ public global::Fal.ServerlessListAppsResponse6? Type1394 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse? Type1395 { get; set; }
+ public global::Fal.ServerlessListAppsResponseError5? Type1395 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1396 { get; set; }
+ public global::Fal.ServerlessListAppsResponseErrorType5? Type1396 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1397 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse? Type1397 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1398 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1398 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1399 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1399 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1400 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1400 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1401 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1401 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1402 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1402 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1403 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1403 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1404 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1404 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1405 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1405 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1406 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1406 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1407 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1407 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1408 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1408 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1409 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1409 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1410 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1410 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse? Type1411 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1411 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError? Type1412 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1412 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1413 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse? Type1413 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse2? Type1414 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError? Type1414 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError2? Type1415 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1415 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1416 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse2? Type1416 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse3? Type1417 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError2? Type1417 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError3? Type1418 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1418 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1419 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse3? Type1419 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse4? Type1420 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError3? Type1420 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError4? Type1421 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1421 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1422 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse4? Type1422 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse5? Type1423 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError4? Type1423 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError5? Type1424 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1424 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1425 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse5? Type1425 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse6? Type1426 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError5? Type1426 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError6? Type1427 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1427 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1428 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse6? Type1428 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1429 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError6? Type1429 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseItem? Type1430 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1430 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse? Type1431 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse? Type1431 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError? Type1432 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseTimeframe? Type1432 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType? Type1433 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseAggregation? Type1433 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse2? Type1434 { get; set; }
+ public global::System.Collections.Generic.IList? Type1434 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError2? Type1435 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseHistoryItem? Type1435 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType2? Type1436 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse2? Type1436 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse3? Type1437 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseError? Type1437 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError3? Type1438 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseErrorType? Type1438 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType3? Type1439 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse3? Type1439 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1440 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseError2? Type1440 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseItem? Type1441 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseErrorType2? Type1441 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse? Type1442 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse4? Type1442 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError? Type1443 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseError3? Type1443 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType? Type1444 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseErrorType3? Type1444 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse2? Type1445 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse5? Type1445 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError2? Type1446 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseError4? Type1446 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1447 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseErrorType4? Type1447 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse3? Type1448 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse6? Type1448 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError3? Type1449 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseError5? Type1449 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1450 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseErrorType5? Type1450 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse2? Type1451 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponse7? Type1451 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError? Type1452 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseError6? Type1452 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType? Type1453 { get; set; }
+ public global::Fal.ServerlessGetRunnerHistoryResponseErrorType6? Type1453 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse3? Type1454 { get; set; }
+ public global::System.Collections.Generic.IList? Type1454 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError2? Type1455 { get; set; }
+ public global::Fal.ServerlessListRootResponseItem? Type1455 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1456 { get; set; }
+ public global::Fal.ServerlessListRootResponse? Type1456 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse4? Type1457 { get; set; }
+ public global::Fal.ServerlessListRootResponseError? Type1457 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError3? Type1458 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType? Type1458 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1459 { get; set; }
+ public global::Fal.ServerlessListRootResponse2? Type1459 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse5? Type1460 { get; set; }
+ public global::Fal.ServerlessListRootResponseError2? Type1460 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError4? Type1461 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType2? Type1461 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1462 { get; set; }
+ public global::Fal.ServerlessListRootResponse3? Type1462 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse? Type1463 { get; set; }
+ public global::Fal.ServerlessListRootResponseError3? Type1463 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError? Type1464 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType3? Type1464 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1465 { get; set; }
+ public global::System.Collections.Generic.IList? Type1465 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse2? Type1466 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseItem? Type1466 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError2? Type1467 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse? Type1467 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1468 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError? Type1468 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse3? Type1469 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType? Type1469 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError3? Type1470 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse2? Type1470 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1471 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError2? Type1471 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse? Type1472 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1472 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError? Type1473 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse3? Type1473 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1474 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError3? Type1474 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse2? Type1475 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1475 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError2? Type1476 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse2? Type1476 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1477 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError? Type1477 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse3? Type1478 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType? Type1478 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError3? Type1479 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse3? Type1479 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1480 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError2? Type1480 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse4? Type1481 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1481 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError4? Type1482 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse4? Type1482 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1483 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError3? Type1483 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse? Type1484 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1484 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError? Type1485 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse5? Type1485 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType? Type1486 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError4? Type1486 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse2? Type1487 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1487 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError2? Type1488 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse? Type1488 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1489 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError? Type1489 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse3? Type1490 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1490 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError3? Type1491 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse2? Type1491 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1492 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError2? Type1492 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse? Type1493 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1493 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1494 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse3? Type1494 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseItem? Type1495 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError3? Type1495 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse2? Type1496 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1496 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError? Type1497 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse? Type1497 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1498 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError? Type1498 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse3? Type1499 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1499 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError2? Type1500 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse2? Type1500 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1501 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError2? Type1501 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse4? Type1502 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1502 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError3? Type1503 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse3? Type1503 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1504 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError3? Type1504 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse2? Type1505 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1505 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError? Type1506 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse4? Type1506 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType? Type1507 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError4? Type1507 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse3? Type1508 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1508 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError2? Type1509 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse? Type1509 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1510 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError? Type1510 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse4? Type1511 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType? Type1511 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError3? Type1512 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse2? Type1512 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1513 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError2? Type1513 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse? Type1514 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1514 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1515 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse3? Type1515 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1516 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError3? Type1516 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1517 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1517 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1518 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse? Type1518 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1519 { get; set; }
+ public global::System.Collections.Generic.IList? Type1519 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1520 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseItem? Type1520 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1521 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse2? Type1521 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1522 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError? Type1522 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1523 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1523 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1524 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse3? Type1524 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1525 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError2? Type1525 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1526 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1526 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1527 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse4? Type1527 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1528 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError3? Type1528 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1529 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1529 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1530 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse2? Type1530 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1531 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError? Type1531 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1532 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType? Type1532 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1533 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse3? Type1533 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1534 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError2? Type1534 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse? Type1535 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1535 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1536 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse4? Type1536 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseTimeSerie? Type1537 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError3? Type1537 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1538 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1538 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseTimeSerieResult? Type1539 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse? Type1539 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1540 { get; set; }
+ public global::System.Collections.Generic.IList? Type1540 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseSummaryItem? Type1541 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1541 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse2? Type1542 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1542 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError? Type1543 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1543 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType? Type1544 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1544 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse3? Type1545 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1545 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError2? Type1546 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1546 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType2? Type1547 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1547 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse4? Type1548 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1548 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError3? Type1549 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1549 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType3? Type1550 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1550 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse5? Type1551 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1551 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError4? Type1552 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1552 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType4? Type1553 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1553 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse6? Type1554 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1554 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError5? Type1555 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1555 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType5? Type1556 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1556 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse7? Type1557 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1557 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError6? Type1558 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1558 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType6? Type1559 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1559 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse? Type1560 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse? Type1560 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1561 { get; set; }
+ public global::System.Collections.Generic.IList? Type1561 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstance? Type1562 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseTimeSerie? Type1562 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1563 { get; set; }
+ public global::System.Collections.Generic.IList? Type1563 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1564 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseTimeSerieResult? Type1564 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceSector? Type1565 { get; set; }
+ public global::System.Collections.Generic.IList? Type1565 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1566 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseSummaryItem? Type1566 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse2? Type1567 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse2? Type1567 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError? Type1568 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError? Type1568 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType? Type1569 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType? Type1569 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse3? Type1570 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse3? Type1570 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError2? Type1571 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError2? Type1571 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType2? Type1572 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType2? Type1572 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse4? Type1573 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse4? Type1573 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError3? Type1574 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError3? Type1574 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType3? Type1575 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType3? Type1575 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse5? Type1576 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse5? Type1576 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError4? Type1577 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError4? Type1577 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType4? Type1578 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType4? Type1578 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse? Type1579 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse6? Type1579 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseInstanceType? Type1580 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError5? Type1580 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseRegion? Type1581 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType5? Type1581 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseSector? Type1582 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse7? Type1582 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseStatus? Type1583 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError6? Type1583 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse2? Type1584 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType6? Type1584 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError? Type1585 { get; set; }
+ public global::Fal.ListComputeInstancesResponse? Type1585 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType? Type1586 { get; set; }
+ public global::System.Collections.Generic.IList? Type1586 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse3? Type1587 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstance? Type1587 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError2? Type1588 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1588 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType2? Type1589 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1589 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse4? Type1590 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceSector? Type1590 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError3? Type1591 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1591 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType3? Type1592 { get; set; }
+ public global::Fal.ListComputeInstancesResponse2? Type1592 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse5? Type1593 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError? Type1593 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError4? Type1594 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType? Type1594 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType4? Type1595 { get; set; }
+ public global::Fal.ListComputeInstancesResponse3? Type1595 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse6? Type1596 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError2? Type1596 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError5? Type1597 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType2? Type1597 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType5? Type1598 { get; set; }
+ public global::Fal.ListComputeInstancesResponse4? Type1598 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse? Type1599 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError3? Type1599 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseInstanceType? Type1600 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType3? Type1600 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseRegion? Type1601 { get; set; }
+ public global::Fal.ListComputeInstancesResponse5? Type1601 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseSector? Type1602 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError4? Type1602 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseStatus? Type1603 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType4? Type1603 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse2? Type1604 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse? Type1604 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError? Type1605 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseInstanceType? Type1605 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType? Type1606 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseRegion? Type1606 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse3? Type1607 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseSector? Type1607 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError2? Type1608 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseStatus? Type1608 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType2? Type1609 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse2? Type1609 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse4? Type1610 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError? Type1610 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError3? Type1611 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType? Type1611 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType3? Type1612 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse3? Type1612 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse5? Type1613 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError2? Type1613 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError4? Type1614 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType2? Type1614 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType4? Type1615 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse4? Type1615 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse6? Type1616 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError3? Type1616 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError5? Type1617 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType3? Type1617 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType5? Type1618 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse5? Type1618 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse? Type1619 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError4? Type1619 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError? Type1620 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType4? Type1620 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType? Type1621 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse6? Type1621 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse2? Type1622 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError5? Type1622 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError2? Type1623 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType5? Type1623 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1624 { get; set; }
+ public global::Fal.GetComputeInstanceResponse? Type1624 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse3? Type1625 { get; set; }
+ public global::Fal.GetComputeInstanceResponseInstanceType? Type1625 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError3? Type1626 { get; set; }
+ public global::Fal.GetComputeInstanceResponseRegion? Type1626 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1627 { get; set; }
+ public global::Fal.GetComputeInstanceResponseSector? Type1627 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse4? Type1628 { get; set; }
+ public global::Fal.GetComputeInstanceResponseStatus? Type1628 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError4? Type1629 { get; set; }
+ public global::Fal.GetComputeInstanceResponse2? Type1629 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1630 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError? Type1630 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse5? Type1631 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType? Type1631 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError5? Type1632 { get; set; }
+ public global::Fal.GetComputeInstanceResponse3? Type1632 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1633 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError2? Type1633 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse? Type1634 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType2? Type1634 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1635 { get; set; }
+ public global::Fal.GetComputeInstanceResponse4? Type1635 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKey? Type1636 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError3? Type1636 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKeyScope? Type1637 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType3? Type1637 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse2? Type1638 { get; set; }
+ public global::Fal.GetComputeInstanceResponse5? Type1638 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError? Type1639 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError4? Type1639 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType? Type1640 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType4? Type1640 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse3? Type1641 { get; set; }
+ public global::Fal.GetComputeInstanceResponse6? Type1641 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError2? Type1642 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError5? Type1642 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType2? Type1643 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType5? Type1643 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse4? Type1644 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse? Type1644 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError3? Type1645 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError? Type1645 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType3? Type1646 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType? Type1646 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse5? Type1647 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse2? Type1647 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError4? Type1648 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError2? Type1648 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType4? Type1649 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1649 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse? Type1650 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse3? Type1650 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse2? Type1651 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError3? Type1651 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError? Type1652 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1652 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType? Type1653 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse4? Type1653 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse3? Type1654 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError4? Type1654 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError2? Type1655 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1655 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType2? Type1656 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse5? Type1656 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse4? Type1657 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError5? Type1657 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError3? Type1658 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1658 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType3? Type1659 { get; set; }
+ public global::Fal.ListApiKeysResponse? Type1659 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse5? Type1660 { get; set; }
+ public global::System.Collections.Generic.IList? Type1660 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError4? Type1661 { get; set; }
+ public global::Fal.ListApiKeysResponseKey? Type1661 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType4? Type1662 { get; set; }
+ public global::Fal.ListApiKeysResponseKeyScope? Type1662 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse6? Type1663 { get; set; }
+ public global::Fal.ListApiKeysResponse2? Type1663 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError5? Type1664 { get; set; }
+ public global::Fal.ListApiKeysResponseError? Type1664 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType5? Type1665 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType? Type1665 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse? Type1666 { get; set; }
+ public global::Fal.ListApiKeysResponse3? Type1666 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError? Type1667 { get; set; }
+ public global::Fal.ListApiKeysResponseError2? Type1667 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType? Type1668 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType2? Type1668 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse2? Type1669 { get; set; }
+ public global::Fal.ListApiKeysResponse4? Type1669 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError2? Type1670 { get; set; }
+ public global::Fal.ListApiKeysResponseError3? Type1670 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType2? Type1671 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType3? Type1671 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse3? Type1672 { get; set; }
+ public global::Fal.ListApiKeysResponse5? Type1672 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError3? Type1673 { get; set; }
+ public global::Fal.ListApiKeysResponseError4? Type1673 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType3? Type1674 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType4? Type1674 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse4? Type1675 { get; set; }
+ public global::Fal.CreateApiKeyResponse? Type1675 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError4? Type1676 { get; set; }
+ public global::Fal.CreateApiKeyResponse2? Type1676 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType4? Type1677 { get; set; }
+ public global::Fal.CreateApiKeyResponseError? Type1677 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse? Type1678 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType? Type1678 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseCredits? Type1679 { get; set; }
+ public global::Fal.CreateApiKeyResponse3? Type1679 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse2? Type1680 { get; set; }
+ public global::Fal.CreateApiKeyResponseError2? Type1680 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError? Type1681 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType2? Type1681 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType? Type1682 { get; set; }
+ public global::Fal.CreateApiKeyResponse4? Type1682 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse3? Type1683 { get; set; }
+ public global::Fal.CreateApiKeyResponseError3? Type1683 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError2? Type1684 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType3? Type1684 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType2? Type1685 { get; set; }
+ public global::Fal.CreateApiKeyResponse5? Type1685 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse4? Type1686 { get; set; }
+ public global::Fal.CreateApiKeyResponseError4? Type1686 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError3? Type1687 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType4? Type1687 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType3? Type1688 { get; set; }
+ public global::Fal.CreateApiKeyResponse6? Type1688 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse5? Type1689 { get; set; }
+ public global::Fal.CreateApiKeyResponseError5? Type1689 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError4? Type1690 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType5? Type1690 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType4? Type1691 { get; set; }
+ public global::Fal.DeleteApiKeyResponse? Type1691 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse6? Type1692 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError? Type1692 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError5? Type1693 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType? Type1693 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType5? Type1694 { get; set; }
+ public global::Fal.DeleteApiKeyResponse2? Type1694 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse? Type1695 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError2? Type1695 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError? Type1696 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType2? Type1696 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType? Type1697 { get; set; }
+ public global::Fal.DeleteApiKeyResponse3? Type1697 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse2? Type1698 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError3? Type1698 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError2? Type1699 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType3? Type1699 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType2? Type1700 { get; set; }
+ public global::Fal.DeleteApiKeyResponse4? Type1700 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse3? Type1701 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError4? Type1701 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError3? Type1702 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType4? Type1702 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType3? Type1703 { get; set; }
+ public global::Fal.GetAccountBillingResponse? Type1703 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse4? Type1704 { get; set; }
+ public global::Fal.GetAccountBillingResponseCredits? Type1704 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError4? Type1705 { get; set; }
+ public global::Fal.GetAccountBillingResponse2? Type1705 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType4? Type1706 { get; set; }
+ public global::Fal.GetAccountBillingResponseError? Type1706 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse5? Type1707 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType? Type1707 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError5? Type1708 { get; set; }
+ public global::Fal.GetAccountBillingResponse3? Type1708 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType5? Type1709 { get; set; }
+ public global::Fal.GetAccountBillingResponseError2? Type1709 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse? Type1710 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType2? Type1710 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError? Type1711 { get; set; }
+ public global::Fal.GetAccountBillingResponse4? Type1711 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType? Type1712 { get; set; }
+ public global::Fal.GetAccountBillingResponseError3? Type1712 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse2? Type1713 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType3? Type1713 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError2? Type1714 { get; set; }
+ public global::Fal.GetAccountBillingResponse5? Type1714 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType2? Type1715 { get; set; }
+ public global::Fal.GetAccountBillingResponseError4? Type1715 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse3? Type1716 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType4? Type1716 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError3? Type1717 { get; set; }
+ public global::Fal.GetAccountBillingResponse6? Type1717 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType3? Type1718 { get; set; }
+ public global::Fal.GetAccountBillingResponseError5? Type1718 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse4? Type1719 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType5? Type1719 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError4? Type1720 { get; set; }
+ public global::Fal.GetFocusReportResponse? Type1720 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType4? Type1721 { get; set; }
+ public global::Fal.GetFocusReportResponseError? Type1721 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse? Type1722 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType? Type1722 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1723 { get; set; }
+ public global::Fal.GetFocusReportResponse2? Type1723 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseTeam? Type1724 { get; set; }
+ public global::Fal.GetFocusReportResponseError2? Type1724 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse2? Type1725 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType2? Type1725 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError? Type1726 { get; set; }
+ public global::Fal.GetFocusReportResponse3? Type1726 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType? Type1727 { get; set; }
+ public global::Fal.GetFocusReportResponseError3? Type1727 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse3? Type1728 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType3? Type1728 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError2? Type1729 { get; set; }
+ public global::Fal.GetFocusReportResponse4? Type1729 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1730 { get; set; }
+ public global::Fal.GetFocusReportResponseError4? Type1730 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse4? Type1731 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType4? Type1731 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError3? Type1732 { get; set; }
+ public global::Fal.GetFocusReportResponse5? Type1732 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1733 { get; set; }
+ public global::Fal.GetFocusReportResponseError5? Type1733 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse5? Type1734 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType5? Type1734 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError4? Type1735 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse? Type1735 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1736 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError? Type1736 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse6? Type1737 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType? Type1737 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError5? Type1738 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse2? Type1738 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1739 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError2? Type1739 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse7? Type1740 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType2? Type1740 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError6? Type1741 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse3? Type1741 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1742 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError3? Type1742 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse? Type1743 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType3? Type1743 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1744 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse4? Type1744 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1745 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError4? Type1745 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1746 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType4? Type1746 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1747 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse? Type1747 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1748 { get; set; }
+ public global::System.Collections.Generic.IList? Type1748 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1749 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseTeam? Type1749 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1750 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse2? Type1750 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1751 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError? Type1751 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse2? Type1752 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType? Type1752 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError? Type1753 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse3? Type1753 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType? Type1754 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError2? Type1754 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse3? Type1755 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1755 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError2? Type1756 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse4? Type1756 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType2? Type1757 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError3? Type1757 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse4? Type1758 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1758 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError3? Type1759 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse5? Type1759 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType3? Type1760 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError4? Type1760 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse5? Type1761 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1761 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError4? Type1762 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse6? Type1762 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType4? Type1763 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError5? Type1763 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse6? Type1764 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1764 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError5? Type1765 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse7? Type1765 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType5? Type1766 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError6? Type1766 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse7? Type1767 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1767 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError6? Type1768 { get; set; }
+ public global::Fal.GetOrganizationUsageResponse? Type1768 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType6? Type1769 { get; set; }
+ public global::System.Collections.Generic.IList? Type1769 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse? Type1770 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1770 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse2? Type1771 { get; set; }
+ public global::System.Collections.Generic.IList? Type1771 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError? Type1772 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1772 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType? Type1773 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1773 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse3? Type1774 { get; set; }
+ public global::System.Collections.Generic.IList? Type1774 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError2? Type1775 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1775 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType2? Type1776 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1776 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse2? Type1777 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError? Type1778 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType? Type1779 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse3? Type1780 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError2? Type1781 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType2? Type1782 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse4? Type1783 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError3? Type1784 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType3? Type1785 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse5? Type1786 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError4? Type1787 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType4? Type1788 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse6? Type1789 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError5? Type1790 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType5? Type1791 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse7? Type1792 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError6? Type1793 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType6? Type1794 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse? Type1795 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse2? Type1796 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError? Type1797 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType? Type1798 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse3? Type1799 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError2? Type1800 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType2? Type1801 { get; set; }
///
///
@@ -7305,54 +7405,58 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.Collections.Generic.List? ListType42 { get; set; }
+ public global::System.Collections.Generic.List? ListType42 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType43 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType43 { get; set; }
+ public global::System.Collections.Generic.List? ListType44 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType44 { get; set; }
+ public global::System.Collections.Generic.List? ListType45 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType45 { get; set; }
+ public global::System.Collections.Generic.List? ListType46 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType46 { get; set; }
+ public global::System.Collections.Generic.List? ListType47 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType47 { get; set; }
+ public global::System.Collections.Generic.List? ListType48 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType48 { get; set; }
+ public global::System.Collections.Generic.List? ListType49 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType49 { get; set; }
+ public global::System.Collections.Generic.List? ListType50 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType50 { get; set; }
+ public global::System.Collections.Generic.List? ListType51 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType51 { get; set; }
+ public global::System.Collections.Generic.List? ListType52 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType52 { get; set; }
+ public global::System.Collections.Generic.List? ListType53 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType53 { get; set; }
+ public global::System.Collections.Generic.List? ListType54 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType54 { get; set; }
+ public global::System.Collections.Generic.List? ListType55 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryAggregation.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryAggregation.g.cs
new file mode 100644
index 0000000..95d70b9
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryAggregation.g.cs
@@ -0,0 +1,53 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// How runner counts are aggregated within each bucket: 'max' shows peak concurrency (capacity analysis), 'avg' shows mean concurrency (utilization analysis).
+ /// Default Value: max
+ /// Example: max
+ ///
+ public enum ServerlessGetRunnerHistoryAggregation
+ {
+ ///
+ /// 'max' shows peak concurrency (capacity analysis), 'avg' shows mean concurrency (utilization analysis).
+ ///
+ Avg,
+ ///
+ /// 'max' shows peak concurrency (capacity analysis), 'avg' shows mean concurrency (utilization analysis).
+ ///
+ Max,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class ServerlessGetRunnerHistoryAggregationExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this ServerlessGetRunnerHistoryAggregation value)
+ {
+ return value switch
+ {
+ ServerlessGetRunnerHistoryAggregation.Avg => "avg",
+ ServerlessGetRunnerHistoryAggregation.Max => "max",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static ServerlessGetRunnerHistoryAggregation? ToEnum(string value)
+ {
+ return value switch
+ {
+ "avg" => ServerlessGetRunnerHistoryAggregation.Avg,
+ "max" => ServerlessGetRunnerHistoryAggregation.Max,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse.Json.g.cs
new file mode 100644
index 0000000..cf3f59b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse.g.cs
new file mode 100644
index 0000000..b6ec4a7
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse.g.cs
@@ -0,0 +1,94 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Historical runner state counts for an application
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse
+ {
+ ///
+ /// Canonical endpoint identifier ('<owner>/<name>')
+ /// Example: user_123/my-app
+ ///
+ /// user_123/my-app
+ [global::System.Text.Json.Serialization.JsonPropertyName("endpoint_id")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string EndpointId { get; set; }
+
+ ///
+ /// Bucket size used for the series (resolved if auto-detected)
+ /// Example: day
+ ///
+ /// day
+ [global::System.Text.Json.Serialization.JsonPropertyName("timeframe")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseTimeframeJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseTimeframe Timeframe { get; set; }
+
+ ///
+ /// Aggregation applied within each bucket
+ /// Example: max
+ ///
+ /// max
+ [global::System.Text.Json.Serialization.JsonPropertyName("aggregation")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseAggregationJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseAggregation Aggregation { get; set; }
+
+ ///
+ /// Runner state counts per time bucket, oldest first
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("history")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::System.Collections.Generic.IList History { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Canonical endpoint identifier ('<owner>/<name>')
+ /// Example: user_123/my-app
+ ///
+ ///
+ /// Bucket size used for the series (resolved if auto-detected)
+ /// Example: day
+ ///
+ ///
+ /// Aggregation applied within each bucket
+ /// Example: max
+ ///
+ ///
+ /// Runner state counts per time bucket, oldest first
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse(
+ string endpointId,
+ global::Fal.ServerlessGetRunnerHistoryResponseTimeframe timeframe,
+ global::Fal.ServerlessGetRunnerHistoryResponseAggregation aggregation,
+ global::System.Collections.Generic.IList history)
+ {
+ this.EndpointId = endpointId ?? throw new global::System.ArgumentNullException(nameof(endpointId));
+ this.Timeframe = timeframe;
+ this.Aggregation = aggregation;
+ this.History = history ?? throw new global::System.ArgumentNullException(nameof(history));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse2.Json.g.cs
new file mode 100644
index 0000000..a12f3c8
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse2.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse2
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse2),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse2;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse2? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse2? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse2;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse2.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse2.g.cs
new file mode 100644
index 0000000..563c537
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse2.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse2
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseError Error { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Error details
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse2(
+ global::Fal.ServerlessGetRunnerHistoryResponseError error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse2()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse3.Json.g.cs
new file mode 100644
index 0000000..341ceeb
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse3.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse3
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse3),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse3;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse3? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse3? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse3;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse3.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse3.g.cs
new file mode 100644
index 0000000..02aee6b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse3.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse3
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseError2 Error { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Error details
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse3(
+ global::Fal.ServerlessGetRunnerHistoryResponseError2 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse3()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse4.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse4.Json.g.cs
new file mode 100644
index 0000000..73f97e4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse4.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse4
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse4? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse4),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse4;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse4? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse4? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse4),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse4;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse4.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse4.g.cs
new file mode 100644
index 0000000..dc3b5a0
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse4.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse4
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseError3 Error { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Error details
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse4(
+ global::Fal.ServerlessGetRunnerHistoryResponseError3 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse4()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse5.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse5.Json.g.cs
new file mode 100644
index 0000000..ecca660
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse5.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse5
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse5? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse5),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse5;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse5? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse5? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse5),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse5;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse5.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse5.g.cs
new file mode 100644
index 0000000..9c438f4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse5.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse5
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseError4 Error { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Error details
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse5(
+ global::Fal.ServerlessGetRunnerHistoryResponseError4 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse5()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse6.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse6.Json.g.cs
new file mode 100644
index 0000000..69e319d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse6.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse6
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse6? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse6),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse6;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse6? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse6? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse6),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse6;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse6.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse6.g.cs
new file mode 100644
index 0000000..1da51dc
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse6.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse6
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseError5 Error { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Error details
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse6(
+ global::Fal.ServerlessGetRunnerHistoryResponseError5 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse6()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse7.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse7.Json.g.cs
new file mode 100644
index 0000000..4585a05
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse7.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponse7
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse7? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse7),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponse7;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponse7? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponse7? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponse7),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponse7;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse7.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse7.g.cs
new file mode 100644
index 0000000..e177491
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponse7.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponse7
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseError6 Error { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Error details
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponse7(
+ global::Fal.ServerlessGetRunnerHistoryResponseError6 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponse7()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseAggregation.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseAggregation.g.cs
new file mode 100644
index 0000000..6ef131c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseAggregation.g.cs
@@ -0,0 +1,52 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Aggregation applied within each bucket
+ /// Example: max
+ ///
+ public enum ServerlessGetRunnerHistoryResponseAggregation
+ {
+ ///
+ ///
+ ///
+ Avg,
+ ///
+ ///
+ ///
+ Max,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class ServerlessGetRunnerHistoryResponseAggregationExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this ServerlessGetRunnerHistoryResponseAggregation value)
+ {
+ return value switch
+ {
+ ServerlessGetRunnerHistoryResponseAggregation.Avg => "avg",
+ ServerlessGetRunnerHistoryResponseAggregation.Max => "max",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static ServerlessGetRunnerHistoryResponseAggregation? ToEnum(string value)
+ {
+ return value switch
+ {
+ "avg" => ServerlessGetRunnerHistoryResponseAggregation.Avg,
+ "max" => ServerlessGetRunnerHistoryResponseAggregation.Max,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError.Json.g.cs
new file mode 100644
index 0000000..e296590
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponseError
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponseError? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponseError),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponseError;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponseError? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponseError? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponseError),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponseError;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError.g.cs
new file mode 100644
index 0000000..87f5297
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class ServerlessGetRunnerHistoryResponseError
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetRunnerHistoryResponseErrorTypeJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetRunnerHistoryResponseErrorType Type { get; set; }
+
+ ///
+ /// Human-readable error message
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("message")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Message { get; set; }
+
+ ///
+ /// Link to relevant documentation
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("docs_url")]
+ public string? DocsUrl { get; set; }
+
+ ///
+ /// Unique request identifier for debugging
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("request_id")]
+ public string? RequestId { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// The category of error that occurred
+ ///
+ ///
+ /// Human-readable error message
+ ///
+ ///
+ /// Link to relevant documentation
+ ///
+ ///
+ /// Unique request identifier for debugging
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetRunnerHistoryResponseError(
+ global::Fal.ServerlessGetRunnerHistoryResponseErrorType type,
+ string message,
+ string? docsUrl,
+ string? requestId)
+ {
+ this.Type = type;
+ this.Message = message ?? throw new global::System.ArgumentNullException(nameof(message));
+ this.DocsUrl = docsUrl;
+ this.RequestId = requestId;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetRunnerHistoryResponseError()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError2.Json.g.cs
new file mode 100644
index 0000000..0972ca0
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetRunnerHistoryResponseError2.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetRunnerHistoryResponseError2
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponseError2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponseError2),
+ jsonSerializerContext) as global::Fal.ServerlessGetRunnerHistoryResponseError2;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetRunnerHistoryResponseError2? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::Fal.ServerlessGetRunnerHistoryResponseError2? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::Fal.ServerlessGetRunnerHistoryResponseError2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetRunnerHistoryResponseError2;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::Fal.SourceGenerationContext.Default);
+ }
+
+ ///