diff --git a/src/libs/Fal/Generated/Fal.IServerlessClient.ServerlessGetUsage.g.cs b/src/libs/Fal/Generated/Fal.IServerlessClient.ServerlessGetUsage.g.cs
new file mode 100644
index 0000000..03247d8
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.IServerlessClient.ServerlessGetUsage.g.cs
@@ -0,0 +1,194 @@
+#nullable enable
+
+namespace Fal
+{
+ public partial interface IServerlessClient
+ {
+ ///
+ /// Usage
+ /// Time-bucketed, aggregated serverless compute usage for **your own account** —
+ /// the machine-seconds your deployed serverless apps consumed, priced with your
+ /// machine prices and net of discounts. This matches the serverless portion of the
+ /// dashboard usage view. Unlike `/v1/models/usage` (which reports model API
+ /// endpoint calls), this reports the `sdk_billing_event` compute spend of the apps
+ /// you run on fal Serverless. Authenticate with your own API key (no admin/org key
+ /// required); results are always scoped to the apps you own.
+ /// **Filtering by app:**
+ /// - `app` — exact match on one or more app names (comma-separated or repeated,
+ /// up to 50): `?app=my-app-dev,my-app-prod`. Use the value exactly as it appears
+ /// in the response `app` field.
+ /// - `search` — case-insensitive substring match on the app name, for when you
+ /// know the name but not the exact environment/version suffix: `?search=my-app`
+ /// returns every `my-app*` variant.
+ /// - Provide both to AND them. Omit both to return every app you own — useful for
+ /// discovering the exact app names to filter on.
+ /// **Expansions:**
+ /// - `time_series`: usage grouped into time buckets (default)
+ /// - `summary`: a single aggregate row per app × machine type across the window
+ /// **Notes:**
+ /// - Each row is machine-seconds (`unit` is always `"second"`); surge and
+ /// non-surge usage of the same app/machine come back as separate rows
+ /// (`is_surge`), so sum across them for a per-app total.
+ /// - Time-series `bucket` timestamps are returned in the `timezone` you request
+ /// (ISO 8601 with offset, e.g. `2025-01-15T00:00:00-05:00`), which also controls
+ /// how usage is grouped into buckets.
+ /// **Common Use Cases:**
+ /// - Track your serverless apps' compute consumption and cost over time
+ /// - Break down spend per app, environment, and machine type
+ /// - Export usage to your own billing/observability tooling
+ ///
+ ///
+ ///
+ /// Maximum number of items to return. Actual maximum depends on query type and expansion parameters.
+ /// Example: 50
+ ///
+ ///
+ /// Pagination cursor from previous response. Encodes the page number.
+ /// Example: Mg==
+ ///
+ ///
+ /// 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
+ ///
+ ///
+ /// Timezone for date aggregation and boundaries. All timestamps in responses are in UTC, but this controls how dates are bucketed.
+ /// Default Value: UTC
+ /// Example: UTC
+ ///
+ ///
+ /// Aggregation timeframe for timeseries data (auto-detected from date range if not specified). Auto-detection uses: minute (<2h), hour (<2d), day (<64d), week (<183d), month (>=183d).
+ /// Example: day
+ ///
+ ///
+ /// Whether to adjust start/end dates to align with timeframe boundaries and use exclusive end. Defaults to true. When true, dates are aligned to the start of the timeframe period (e.g., start of day) and end is made exclusive (e.g., start of next day). When false, uses exact dates provided.
+ /// Default Value: true
+ /// Example: true
+ ///
+ ///
+ /// Filter to one or more serverless apps, matched exactly against the `app` value in the response (deployed name, owner prefix stripped). Accepts a comma-separated list or repeated parameter (1-50). For partial/name-only matching use `search`.
+ /// Example: [autohdr-raw-to-jpg-dev]
+ ///
+ ///
+ /// Case-insensitive substring match on the app name — returns every app whose name contains this term (e.g. `search=autohdr` matches all `autohdr-*` apps across environments). Combined with `app` via AND when both are given.
+ /// Example: autohdr-raw-to-jpg
+ ///
+ ///
+ /// Data to include in the response. Use 'time_series' for time-bucketed data and 'summary' for aggregate statistics across the entire window. At least one is required.
+ /// Default Value: [time_series]
+ /// Example: [time_series, summary]
+ ///
+ /// 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 ServerlessGetUsageAsync(
+ int? limit = default,
+ string? cursor = default,
+ global::Fal.AnyOf? start = default,
+ global::Fal.AnyOf? end = default,
+ string? timezone = default,
+ global::Fal.ServerlessGetUsageTimeframe? timeframe = default,
+ global::Fal.ServerlessGetUsageBoundToTimeframe? boundToTimeframe = default,
+ global::Fal.AnyOf>? app = default,
+ string? search = default,
+ global::Fal.AnyOf>? expand = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Usage
+ /// Time-bucketed, aggregated serverless compute usage for **your own account** —
+ /// the machine-seconds your deployed serverless apps consumed, priced with your
+ /// machine prices and net of discounts. This matches the serverless portion of the
+ /// dashboard usage view. Unlike `/v1/models/usage` (which reports model API
+ /// endpoint calls), this reports the `sdk_billing_event` compute spend of the apps
+ /// you run on fal Serverless. Authenticate with your own API key (no admin/org key
+ /// required); results are always scoped to the apps you own.
+ /// **Filtering by app:**
+ /// - `app` — exact match on one or more app names (comma-separated or repeated,
+ /// up to 50): `?app=my-app-dev,my-app-prod`. Use the value exactly as it appears
+ /// in the response `app` field.
+ /// - `search` — case-insensitive substring match on the app name, for when you
+ /// know the name but not the exact environment/version suffix: `?search=my-app`
+ /// returns every `my-app*` variant.
+ /// - Provide both to AND them. Omit both to return every app you own — useful for
+ /// discovering the exact app names to filter on.
+ /// **Expansions:**
+ /// - `time_series`: usage grouped into time buckets (default)
+ /// - `summary`: a single aggregate row per app × machine type across the window
+ /// **Notes:**
+ /// - Each row is machine-seconds (`unit` is always `"second"`); surge and
+ /// non-surge usage of the same app/machine come back as separate rows
+ /// (`is_surge`), so sum across them for a per-app total.
+ /// - Time-series `bucket` timestamps are returned in the `timezone` you request
+ /// (ISO 8601 with offset, e.g. `2025-01-15T00:00:00-05:00`), which also controls
+ /// how usage is grouped into buckets.
+ /// **Common Use Cases:**
+ /// - Track your serverless apps' compute consumption and cost over time
+ /// - Break down spend per app, environment, and machine type
+ /// - Export usage to your own billing/observability tooling
+ ///
+ ///
+ ///
+ /// Maximum number of items to return. Actual maximum depends on query type and expansion parameters.
+ /// Example: 50
+ ///
+ ///
+ /// Pagination cursor from previous response. Encodes the page number.
+ /// Example: Mg==
+ ///
+ ///
+ /// 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
+ ///
+ ///
+ /// Timezone for date aggregation and boundaries. All timestamps in responses are in UTC, but this controls how dates are bucketed.
+ /// Default Value: UTC
+ /// Example: UTC
+ ///
+ ///
+ /// Aggregation timeframe for timeseries data (auto-detected from date range if not specified). Auto-detection uses: minute (<2h), hour (<2d), day (<64d), week (<183d), month (>=183d).
+ /// Example: day
+ ///
+ ///
+ /// Whether to adjust start/end dates to align with timeframe boundaries and use exclusive end. Defaults to true. When true, dates are aligned to the start of the timeframe period (e.g., start of day) and end is made exclusive (e.g., start of next day). When false, uses exact dates provided.
+ /// Default Value: true
+ /// Example: true
+ ///
+ ///
+ /// Filter to one or more serverless apps, matched exactly against the `app` value in the response (deployed name, owner prefix stripped). Accepts a comma-separated list or repeated parameter (1-50). For partial/name-only matching use `search`.
+ /// Example: [autohdr-raw-to-jpg-dev]
+ ///
+ ///
+ /// Case-insensitive substring match on the app name — returns every app whose name contains this term (e.g. `search=autohdr` matches all `autohdr-*` apps across environments). Combined with `app` via AND when both are given.
+ /// Example: autohdr-raw-to-jpg
+ ///
+ ///
+ /// Data to include in the response. Use 'time_series' for time-bucketed data and 'summary' for aggregate statistics across the entire window. At least one is required.
+ /// Default Value: [time_series]
+ /// Example: [time_series, summary]
+ ///
+ /// 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> ServerlessGetUsageAsResponseAsync(
+ int? limit = default,
+ string? cursor = default,
+ global::Fal.AnyOf? start = default,
+ global::Fal.AnyOf? end = default,
+ string? timezone = default,
+ global::Fal.ServerlessGetUsageTimeframe? timeframe = default,
+ global::Fal.ServerlessGetUsageBoundToTimeframe? boundToTimeframe = default,
+ global::Fal.AnyOf>? app = default,
+ string? search = default,
+ global::Fal.AnyOf>? expand = 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.ServerlessGetUsageBoundToTimeframe.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageBoundToTimeframe.g.cs
new file mode 100644
index 0000000..615aba1
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageBoundToTimeframe.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageBoundToTimeframeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageBoundToTimeframe 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.ServerlessGetUsageBoundToTimeframeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageBoundToTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageBoundToTimeframe);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageBoundToTimeframe value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageBoundToTimeframeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullable.g.cs
new file mode 100644
index 0000000..dce0d22
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageBoundToTimeframeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageBoundToTimeframe? 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.ServerlessGetUsageBoundToTimeframeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageBoundToTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageBoundToTimeframe?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageBoundToTimeframe? 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.ServerlessGetUsageBoundToTimeframeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType.g.cs
new file mode 100644
index 0000000..59095b6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType 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.ServerlessGetUsageResponseErrorTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageResponseErrorTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType2.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType2.g.cs
new file mode 100644
index 0000000..89536d4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType2.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType2 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.ServerlessGetUsageResponseErrorType2Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType2);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType2 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageResponseErrorType2Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType2Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType2Nullable.g.cs
new file mode 100644
index 0000000..74eb3bb
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType2Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType2? 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.ServerlessGetUsageResponseErrorType2Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType2?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType2? 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.ServerlessGetUsageResponseErrorType2Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType3.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType3.g.cs
new file mode 100644
index 0000000..b6d1090
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType3.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType3JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType3 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.ServerlessGetUsageResponseErrorType3Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType3);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType3 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageResponseErrorType3Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType3Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType3Nullable.g.cs
new file mode 100644
index 0000000..00b0d32
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType3Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType3NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType3? 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.ServerlessGetUsageResponseErrorType3Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType3?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType3? 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.ServerlessGetUsageResponseErrorType3Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType4.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType4.g.cs
new file mode 100644
index 0000000..10e54a9
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType4.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType4JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType4 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.ServerlessGetUsageResponseErrorType4Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType4);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType4 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageResponseErrorType4Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType4Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType4Nullable.g.cs
new file mode 100644
index 0000000..488031f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType4Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType4NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType4? 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.ServerlessGetUsageResponseErrorType4Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType4?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType4? 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.ServerlessGetUsageResponseErrorType4Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType5.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType5.g.cs
new file mode 100644
index 0000000..59484fe
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType5.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType5JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType5 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.ServerlessGetUsageResponseErrorType5Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType5);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType5 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageResponseErrorType5Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType5Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType5Nullable.g.cs
new file mode 100644
index 0000000..f4e4683
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType5Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType5NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType5? 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.ServerlessGetUsageResponseErrorType5Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType5?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType5? 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.ServerlessGetUsageResponseErrorType5Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType6.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType6.g.cs
new file mode 100644
index 0000000..624a18f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType6.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType6JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType6 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.ServerlessGetUsageResponseErrorType6Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType6);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType6 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageResponseErrorType6Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType6Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType6Nullable.g.cs
new file mode 100644
index 0000000..0a05e19
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorType6Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorType6NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType6? 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.ServerlessGetUsageResponseErrorType6Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType6?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType6? 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.ServerlessGetUsageResponseErrorType6Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullable.g.cs
new file mode 100644
index 0000000..e71a9c1
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageResponseErrorTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageResponseErrorType? 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.ServerlessGetUsageResponseErrorTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageResponseErrorType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageResponseErrorType? 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.ServerlessGetUsageResponseErrorTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageTimeframe.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageTimeframe.g.cs
new file mode 100644
index 0000000..d0a2e69
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageTimeframe.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageTimeframeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageTimeframe 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.ServerlessGetUsageTimeframeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageTimeframe);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageTimeframe value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.ServerlessGetUsageTimeframeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageTimeframeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageTimeframeNullable.g.cs
new file mode 100644
index 0000000..2fd5cb6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.ServerlessGetUsageTimeframeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class ServerlessGetUsageTimeframeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.ServerlessGetUsageTimeframe? 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.ServerlessGetUsageTimeframeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.ServerlessGetUsageTimeframe)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.ServerlessGetUsageTimeframe?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.ServerlessGetUsageTimeframe? 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.ServerlessGetUsageTimeframeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
index 07cae4c..2a4c68c 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
@@ -141,6 +141,14 @@ namespace Fal
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointSortByNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetFocusReportSourceJsonConverter),
typeof(global::Fal.JsonConverters.GetFocusReportSourceNullableJsonConverter),
@@ -1897,6 +1905,30 @@ namespace Fal
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeNullableJsonConverter),
@@ -2275,6 +2307,14 @@ 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>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
@@ -2388,6 +2428,8 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsStreamRunSource), TypeInfoPropertyName = "ServerlessLogsStreamRunSource2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointStatus), TypeInfoPropertyName = "ServerlessListRequestsByEndpointStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointSortBy), TypeInfoPropertyName = "ServerlessListRequestsByEndpointSortBy2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageTimeframe), TypeInfoPropertyName = "ServerlessGetUsageTimeframe2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageBoundToTimeframe), TypeInfoPropertyName = "ServerlessGetUsageBoundToTimeframe2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportSource), TypeInfoPropertyName = "GetFocusReportSource2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportTimeframe), TypeInfoPropertyName = "GetFocusReportTimeframe2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportBoundToTimeframe), TypeInfoPropertyName = "GetFocusReportBoundToTimeframe2")]
@@ -2797,8 +2839,6 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType6), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType7), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType72")]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2938,6 +2978,14 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointSortByNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetFocusReportSourceJsonConverter),
typeof(global::Fal.JsonConverters.GetFocusReportSourceNullableJsonConverter),
@@ -4694,6 +4742,30 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeNullableJsonConverter),
@@ -5072,6 +5144,14 @@ 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>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
@@ -5096,6 +5176,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType7), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType72")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse8))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError8))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType8), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType82")]
@@ -5594,8 +5676,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType6), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError7))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -5735,6 +5815,14 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointSortByNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetFocusReportSourceJsonConverter),
typeof(global::Fal.JsonConverters.GetFocusReportSourceNullableJsonConverter),
@@ -7491,6 +7579,30 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeNullableJsonConverter),
@@ -7869,6 +7981,14 @@ 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>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
@@ -7893,6 +8013,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError7))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType7), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType72")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse8))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError8))]
@@ -8374,25 +8496,23 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse7))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType6), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstance))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceInstanceType), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceInstanceType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceRegion), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceRegion2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceSector), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceSector2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceStatus), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType2), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType3), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType4), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseTimeSerie))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseTimeSerieResult))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseSummaryItem))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType2), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType3), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse5))]
internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -8532,6 +8652,14 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointSortByNullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageTimeframeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetFocusReportSourceJsonConverter),
typeof(global::Fal.JsonConverters.GetFocusReportSourceNullableJsonConverter),
@@ -10288,6 +10416,30 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType6NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeNullableJsonConverter),
@@ -10666,6 +10818,14 @@ 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>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
@@ -10690,6 +10850,33 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType4), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType5), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType6), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstance))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceInstanceType), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceInstanceType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceRegion), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceRegion2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceSector), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceSector2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseInstanceStatus), TypeInfoPropertyName = "ListComputeInstancesResponseInstanceStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType2), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType3), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListComputeInstancesResponseErrorType4), TypeInfoPropertyName = "ListComputeInstancesResponseErrorType42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateComputeInstanceResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateComputeInstanceResponseInstanceType), TypeInfoPropertyName = "CreateComputeInstanceResponseInstanceType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateComputeInstanceResponseRegion), TypeInfoPropertyName = "CreateComputeInstanceResponseRegion2")]
@@ -10933,6 +11120,9 @@ internal sealed partial class SourceGenerationContextChunk2 : 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))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
@@ -11049,6 +11239,10 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRequestsByEndpointStatusNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRequestsByEndpointSortByJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRequestsByEndpointSortByNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageTimeframeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageTimeframeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageBoundToTimeframeNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.GetFocusReportSourceJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.GetFocusReportSourceNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.GetFocusReportTimeframeJsonConverter());
@@ -11927,6 +12121,18 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType5NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType6JsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ServerlessListRequestsByEndpointResponseErrorType6NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType5NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType6NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListComputeInstancesResponseInstanceInstanceTypeNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListComputeInstancesResponseInstanceRegionJsonConverter());
@@ -12116,6 +12322,10 @@ 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>());
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 467afa7..2f2a952 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
@@ -380,6439 +380,6547 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Fal.GetFocusReportSource? Type88 { get; set; }
+ public global::Fal.ServerlessGetUsageTimeframe? Type88 { get; set; }
///
///
///
- public global::Fal.GetFocusReportTimeframe? Type89 { get; set; }
+ public global::Fal.ServerlessGetUsageBoundToTimeframe? Type89 { get; set; }
///
///
///
- public global::Fal.GetFocusReportBoundToTimeframe? Type90 { get; set; }
+ public global::Fal.GetFocusReportSource? Type90 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageTimeframe? Type91 { get; set; }
+ public global::Fal.GetFocusReportTimeframe? Type91 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageBoundToTimeframe? Type92 { get; set; }
+ public global::Fal.GetFocusReportBoundToTimeframe? Type92 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse? Type93 { get; set; }
+ public global::Fal.GetOrganizationUsageTimeframe? Type93 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type94 { get; set; }
+ public global::Fal.GetOrganizationUsageBoundToTimeframe? Type94 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModel? Type95 { get; set; }
+ public global::Fal.GetModelsResponse? Type95 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadata? Type96 { get; set; }
+ public global::System.Collections.Generic.IList? Type96 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataStatus? Type97 { get; set; }
+ public global::Fal.GetModelsResponseModel? Type97 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataLicenseType? Type98 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadata? Type98 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataGroup? Type99 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataStatus? Type99 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataKind? Type100 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataLicenseType? Type100 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type101 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataGroup? Type101 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant1? Type102 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataKind? Type102 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2? Type103 { get; set; }
+ public global::Fal.AnyOf? Type103 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type104 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant1? Type104 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type105 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2? Type105 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type106 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type106 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type107 { get; set; }
+ public global::Fal.AnyOf? Type107 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type108 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type108 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse2? Type109 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type109 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError? Type110 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type110 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType? Type111 { get; set; }
+ public global::Fal.GetModelsResponse2? Type111 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse3? Type112 { get; set; }
+ public global::Fal.GetModelsResponseError? Type112 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError2? Type113 { get; set; }
+ public global::Fal.GetModelsResponseErrorType? Type113 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType2? Type114 { get; set; }
+ public global::Fal.GetModelsResponse3? Type114 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse4? Type115 { get; set; }
+ public global::Fal.GetModelsResponseError2? Type115 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError3? Type116 { get; set; }
+ public global::Fal.GetModelsResponseErrorType2? Type116 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType3? Type117 { get; set; }
+ public global::Fal.GetModelsResponse4? Type117 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse5? Type118 { get; set; }
+ public global::Fal.GetModelsResponseError3? Type118 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError4? Type119 { get; set; }
+ public global::Fal.GetModelsResponseErrorType3? Type119 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType4? Type120 { get; set; }
+ public global::Fal.GetModelsResponse5? Type120 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse? Type121 { get; set; }
+ public global::Fal.GetModelsResponseError4? Type121 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type122 { get; set; }
+ public global::Fal.GetModelsResponseErrorType4? Type122 { get; set; }
///
///
///
- public global::Fal.GetPricingResponsePrice? Type123 { get; set; }
+ public global::Fal.GetPricingResponse? Type123 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse2? Type124 { get; set; }
+ public global::System.Collections.Generic.IList? Type124 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError? Type125 { get; set; }
+ public global::Fal.GetPricingResponsePrice? Type125 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType? Type126 { get; set; }
+ public global::Fal.GetPricingResponse2? Type126 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse3? Type127 { get; set; }
+ public global::Fal.GetPricingResponseError? Type127 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError2? Type128 { get; set; }
+ public global::Fal.GetPricingResponseErrorType? Type128 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType2? Type129 { get; set; }
+ public global::Fal.GetPricingResponse3? Type129 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse4? Type130 { get; set; }
+ public global::Fal.GetPricingResponseError2? Type130 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError3? Type131 { get; set; }
+ public global::Fal.GetPricingResponseErrorType2? Type131 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType3? Type132 { get; set; }
+ public global::Fal.GetPricingResponse4? Type132 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse5? Type133 { get; set; }
+ public global::Fal.GetPricingResponseError3? Type133 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError4? Type134 { get; set; }
+ public global::Fal.GetPricingResponseErrorType3? Type134 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType4? Type135 { get; set; }
+ public global::Fal.GetPricingResponse5? Type135 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse? Type136 { get; set; }
+ public global::Fal.GetPricingResponseError4? Type136 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseEstimateType? Type137 { get; set; }
+ public global::Fal.GetPricingResponseErrorType4? Type137 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse2? Type138 { get; set; }
+ public global::Fal.EstimatePricingResponse? Type138 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError? Type139 { get; set; }
+ public global::Fal.EstimatePricingResponseEstimateType? Type139 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType? Type140 { get; set; }
+ public global::Fal.EstimatePricingResponse2? Type140 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse3? Type141 { get; set; }
+ public global::Fal.EstimatePricingResponseError? Type141 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError2? Type142 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType? Type142 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType2? Type143 { get; set; }
+ public global::Fal.EstimatePricingResponse3? Type143 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse4? Type144 { get; set; }
+ public global::Fal.EstimatePricingResponseError2? Type144 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError3? Type145 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType2? Type145 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType3? Type146 { get; set; }
+ public global::Fal.EstimatePricingResponse4? Type146 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse5? Type147 { get; set; }
+ public global::Fal.EstimatePricingResponseError3? Type147 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError4? Type148 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType3? Type148 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType4? Type149 { get; set; }
+ public global::Fal.EstimatePricingResponse5? Type149 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse? Type150 { get; set; }
+ public global::Fal.EstimatePricingResponseError4? Type150 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type151 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType4? Type151 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerie? Type152 { get; set; }
+ public global::Fal.GetUsageResponse? Type152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type153 { get; set; }
+ public global::System.Collections.Generic.IList? Type153 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerieResult? Type154 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerie? Type154 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type155 { get; set; }
+ public global::System.Collections.Generic.IList? Type155 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseSummaryItem? Type156 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerieResult? Type156 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse2? Type157 { get; set; }
+ public global::System.Collections.Generic.IList? Type157 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError? Type158 { get; set; }
+ public global::Fal.GetUsageResponseSummaryItem? Type158 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType? Type159 { get; set; }
+ public global::Fal.GetUsageResponse2? Type159 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse3? Type160 { get; set; }
+ public global::Fal.GetUsageResponseError? Type160 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError2? Type161 { get; set; }
+ public global::Fal.GetUsageResponseErrorType? Type161 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType2? Type162 { get; set; }
+ public global::Fal.GetUsageResponse3? Type162 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse4? Type163 { get; set; }
+ public global::Fal.GetUsageResponseError2? Type163 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError3? Type164 { get; set; }
+ public global::Fal.GetUsageResponseErrorType2? Type164 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType3? Type165 { get; set; }
+ public global::Fal.GetUsageResponse4? Type165 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse5? Type166 { get; set; }
+ public global::Fal.GetUsageResponseError3? Type166 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError4? Type167 { get; set; }
+ public global::Fal.GetUsageResponseErrorType3? Type167 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType4? Type168 { get; set; }
+ public global::Fal.GetUsageResponse5? Type168 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse? Type169 { get; set; }
+ public global::Fal.GetUsageResponseError4? Type169 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type170 { get; set; }
+ public global::Fal.GetUsageResponseErrorType4? Type170 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerie? Type171 { get; set; }
+ public global::Fal.GetAnalyticsResponse? Type171 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type172 { get; set; }
+ public global::System.Collections.Generic.IList? Type172 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerieResult? Type173 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerie? Type173 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type174 { get; set; }
+ public global::System.Collections.Generic.IList? Type174 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseSummaryItem? Type175 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerieResult? Type175 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse2? Type176 { get; set; }
+ public global::System.Collections.Generic.IList? Type176 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError? Type177 { get; set; }
+ public global::Fal.GetAnalyticsResponseSummaryItem? Type177 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType? Type178 { get; set; }
+ public global::Fal.GetAnalyticsResponse2? Type178 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse3? Type179 { get; set; }
+ public global::Fal.GetAnalyticsResponseError? Type179 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError2? Type180 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType? Type180 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType2? Type181 { get; set; }
+ public global::Fal.GetAnalyticsResponse3? Type181 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse4? Type182 { get; set; }
+ public global::Fal.GetAnalyticsResponseError2? Type182 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError3? Type183 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType2? Type183 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType3? Type184 { get; set; }
+ public global::Fal.GetAnalyticsResponse4? Type184 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse5? Type185 { get; set; }
+ public global::Fal.GetAnalyticsResponseError3? Type185 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError4? Type186 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType3? Type186 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType4? Type187 { get; set; }
+ public global::Fal.GetAnalyticsResponse5? Type187 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse6? Type188 { get; set; }
+ public global::Fal.GetAnalyticsResponseError4? Type188 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError5? Type189 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType4? Type189 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType5? Type190 { get; set; }
+ public global::Fal.GetAnalyticsResponse6? Type190 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse7? Type191 { get; set; }
+ public global::Fal.GetAnalyticsResponseError5? Type191 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError6? Type192 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType5? Type192 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType6? Type193 { get; set; }
+ public global::Fal.GetAnalyticsResponse7? Type193 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse? Type194 { get; set; }
+ public global::Fal.GetAnalyticsResponseError6? Type194 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type195 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType6? Type195 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseBillingEvent? Type196 { get; set; }
+ public global::Fal.GetBillingEventsResponse? Type196 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse2? Type197 { get; set; }
+ public global::System.Collections.Generic.IList? Type197 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError? Type198 { get; set; }
+ public global::Fal.GetBillingEventsResponseBillingEvent? Type198 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType? Type199 { get; set; }
+ public global::Fal.GetBillingEventsResponse2? Type199 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse3? Type200 { get; set; }
+ public global::Fal.GetBillingEventsResponseError? Type200 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError2? Type201 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType? Type201 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType2? Type202 { get; set; }
+ public global::Fal.GetBillingEventsResponse3? Type202 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse4? Type203 { get; set; }
+ public global::Fal.GetBillingEventsResponseError2? Type203 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError3? Type204 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType2? Type204 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType3? Type205 { get; set; }
+ public global::Fal.GetBillingEventsResponse4? Type205 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse5? Type206 { get; set; }
+ public global::Fal.GetBillingEventsResponseError3? Type206 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError4? Type207 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType3? Type207 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType4? Type208 { get; set; }
+ public global::Fal.GetBillingEventsResponse5? Type208 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse6? Type209 { get; set; }
+ public global::Fal.GetBillingEventsResponseError4? Type209 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError5? Type210 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType4? Type210 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType5? Type211 { get; set; }
+ public global::Fal.GetBillingEventsResponse6? Type211 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse? Type212 { get; set; }
+ public global::Fal.GetBillingEventsResponseError5? Type212 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type213 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType5? Type213 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type214 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse? Type214 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse2? Type215 { get; set; }
+ public global::System.Collections.Generic.IList? Type215 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError? Type216 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type216 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType? Type217 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse2? Type217 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse3? Type218 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError? Type218 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError2? Type219 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType? Type219 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type220 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse3? Type220 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse4? Type221 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError2? Type221 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError3? Type222 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type222 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type223 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse4? Type223 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse5? Type224 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError3? Type224 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError4? Type225 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type225 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type226 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse5? Type226 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse6? Type227 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError4? Type227 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError5? Type228 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type228 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type229 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse6? Type229 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse7? Type230 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError5? Type230 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError6? Type231 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type231 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type232 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse7? Type232 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse? Type233 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError6? Type233 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type234 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type234 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseItem? Type235 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse? Type235 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse2? Type236 { get; set; }
+ public global::System.Collections.Generic.IList? Type236 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError? Type237 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseItem? Type237 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType? Type238 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse2? Type238 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse3? Type239 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError? Type239 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError2? Type240 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType? Type240 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType2? Type241 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse3? Type241 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse4? Type242 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError2? Type242 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError3? Type243 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType2? Type243 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType3? Type244 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse4? Type244 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse5? Type245 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError3? Type245 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError4? Type246 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType3? Type246 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType4? Type247 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse5? Type247 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse6? Type248 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError4? Type248 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError5? Type249 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType4? Type249 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType5? Type250 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse6? Type250 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse7? Type251 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError5? Type251 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError6? Type252 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType5? Type252 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType6? Type253 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse7? Type253 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse? Type254 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError6? Type254 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type255 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType6? Type255 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseResult? Type256 { get; set; }
+ public global::Fal.SearchRequestsResponse? Type256 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse2? Type257 { get; set; }
+ public global::System.Collections.Generic.IList? Type257 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError? Type258 { get; set; }
+ public global::Fal.SearchRequestsResponseResult? Type258 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType? Type259 { get; set; }
+ public global::Fal.SearchRequestsResponse2? Type259 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse3? Type260 { get; set; }
+ public global::Fal.SearchRequestsResponseError? Type260 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError2? Type261 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType? Type261 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType2? Type262 { get; set; }
+ public global::Fal.SearchRequestsResponse3? Type262 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse4? Type263 { get; set; }
+ public global::Fal.SearchRequestsResponseError2? Type263 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError3? Type264 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType2? Type264 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType3? Type265 { get; set; }
+ public global::Fal.SearchRequestsResponse4? Type265 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse5? Type266 { get; set; }
+ public global::Fal.SearchRequestsResponseError3? Type266 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError4? Type267 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType3? Type267 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType4? Type268 { get; set; }
+ public global::Fal.SearchRequestsResponse5? Type268 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse6? Type269 { get; set; }
+ public global::Fal.SearchRequestsResponseError4? Type269 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError5? Type270 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType4? Type270 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType5? Type271 { get; set; }
+ public global::Fal.SearchRequestsResponse6? Type271 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse? Type272 { get; set; }
+ public global::Fal.SearchRequestsResponseError5? Type272 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type273 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType5? Type273 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseWorkflow? Type274 { get; set; }
+ public global::Fal.ListWorkflowsResponse? Type274 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse2? Type275 { get; set; }
+ public global::System.Collections.Generic.IList? Type275 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError? Type276 { get; set; }
+ public global::Fal.ListWorkflowsResponseWorkflow? Type276 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType? Type277 { get; set; }
+ public global::Fal.ListWorkflowsResponse2? Type277 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse3? Type278 { get; set; }
+ public global::Fal.ListWorkflowsResponseError? Type278 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError2? Type279 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType? Type279 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType2? Type280 { get; set; }
+ public global::Fal.ListWorkflowsResponse3? Type280 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse4? Type281 { get; set; }
+ public global::Fal.ListWorkflowsResponseError2? Type281 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError3? Type282 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType2? Type282 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType3? Type283 { get; set; }
+ public global::Fal.ListWorkflowsResponse4? Type283 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse5? Type284 { get; set; }
+ public global::Fal.ListWorkflowsResponseError3? Type284 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError4? Type285 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType3? Type285 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType4? Type286 { get; set; }
+ public global::Fal.ListWorkflowsResponse5? Type286 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse? Type287 { get; set; }
+ public global::Fal.ListWorkflowsResponseError4? Type287 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseWorkflow? Type288 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType4? Type288 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse2? Type289 { get; set; }
+ public global::Fal.CreateWorkflowResponse? Type289 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError? Type290 { get; set; }
+ public global::Fal.CreateWorkflowResponseWorkflow? Type290 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType? Type291 { get; set; }
+ public global::Fal.CreateWorkflowResponse2? Type291 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse3? Type292 { get; set; }
+ public global::Fal.CreateWorkflowResponseError? Type292 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError2? Type293 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType? Type293 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType2? Type294 { get; set; }
+ public global::Fal.CreateWorkflowResponse3? Type294 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse4? Type295 { get; set; }
+ public global::Fal.CreateWorkflowResponseError2? Type295 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError3? Type296 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType2? Type296 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType3? Type297 { get; set; }
+ public global::Fal.CreateWorkflowResponse4? Type297 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse5? Type298 { get; set; }
+ public global::Fal.CreateWorkflowResponseError3? Type298 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError4? Type299 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType3? Type299 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType4? Type300 { get; set; }
+ public global::Fal.CreateWorkflowResponse5? Type300 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse6? Type301 { get; set; }
+ public global::Fal.CreateWorkflowResponseError4? Type301 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError5? Type302 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType4? Type302 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType5? Type303 { get; set; }
+ public global::Fal.CreateWorkflowResponse6? Type303 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse? Type304 { get; set; }
+ public global::Fal.CreateWorkflowResponseError5? Type304 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseWorkflow? Type305 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType5? Type305 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse2? Type306 { get; set; }
+ public global::Fal.GetWorkflowResponse? Type306 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError? Type307 { get; set; }
+ public global::Fal.GetWorkflowResponseWorkflow? Type307 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType? Type308 { get; set; }
+ public global::Fal.GetWorkflowResponse2? Type308 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse3? Type309 { get; set; }
+ public global::Fal.GetWorkflowResponseError? Type309 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError2? Type310 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType? Type310 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType2? Type311 { get; set; }
+ public global::Fal.GetWorkflowResponse3? Type311 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse4? Type312 { get; set; }
+ public global::Fal.GetWorkflowResponseError2? Type312 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError3? Type313 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType2? Type313 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType3? Type314 { get; set; }
+ public global::Fal.GetWorkflowResponse4? Type314 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse5? Type315 { get; set; }
+ public global::Fal.GetWorkflowResponseError3? Type315 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError4? Type316 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType3? Type316 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType4? Type317 { get; set; }
+ public global::Fal.GetWorkflowResponse5? Type317 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse6? Type318 { get; set; }
+ public global::Fal.GetWorkflowResponseError4? Type318 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError5? Type319 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType4? Type319 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType5? Type320 { get; set; }
+ public global::Fal.GetWorkflowResponse6? Type320 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse7? Type321 { get; set; }
+ public global::Fal.GetWorkflowResponseError5? Type321 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError6? Type322 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType5? Type322 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType6? Type323 { get; set; }
+ public global::Fal.GetWorkflowResponse7? Type323 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse? Type324 { get; set; }
+ public global::Fal.GetWorkflowResponseError6? Type324 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type325 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType6? Type325 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAsset? Type326 { get; set; }
+ public global::Fal.ListAssetsResponse? Type326 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetType? Type327 { get; set; }
+ public global::System.Collections.Generic.IList? Type327 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type328 { get; set; }
+ public global::Fal.ListAssetsResponseAsset? Type328 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetTag? Type329 { get; set; }
+ public global::Fal.ListAssetsResponseAssetType? Type329 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse2? Type330 { get; set; }
+ public global::System.Collections.Generic.IList? Type330 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError? Type331 { get; set; }
+ public global::Fal.ListAssetsResponseAssetTag? Type331 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType? Type332 { get; set; }
+ public global::Fal.ListAssetsResponse2? Type332 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse3? Type333 { get; set; }
+ public global::Fal.ListAssetsResponseError? Type333 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError2? Type334 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType? Type334 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType2? Type335 { get; set; }
+ public global::Fal.ListAssetsResponse3? Type335 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse4? Type336 { get; set; }
+ public global::Fal.ListAssetsResponseError2? Type336 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError3? Type337 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType2? Type337 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType3? Type338 { get; set; }
+ public global::Fal.ListAssetsResponse4? Type338 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse5? Type339 { get; set; }
+ public global::Fal.ListAssetsResponseError3? Type339 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError4? Type340 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType3? Type340 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType4? Type341 { get; set; }
+ public global::Fal.ListAssetsResponse5? Type341 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse6? Type342 { get; set; }
+ public global::Fal.ListAssetsResponseError4? Type342 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError5? Type343 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType4? Type343 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType5? Type344 { get; set; }
+ public global::Fal.ListAssetsResponse6? Type344 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse7? Type345 { get; set; }
+ public global::Fal.ListAssetsResponseError5? Type345 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError6? Type346 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType5? Type346 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType6? Type347 { get; set; }
+ public global::Fal.ListAssetsResponse7? Type347 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse8? Type348 { get; set; }
+ public global::Fal.ListAssetsResponseError6? Type348 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError7? Type349 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType6? Type349 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType7? Type350 { get; set; }
+ public global::Fal.ListAssetsResponse8? Type350 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse9? Type351 { get; set; }
+ public global::Fal.ListAssetsResponseError7? Type351 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError8? Type352 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType7? Type352 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType8? Type353 { get; set; }
+ public global::Fal.ListAssetsResponse9? Type353 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse10? Type354 { get; set; }
+ public global::Fal.ListAssetsResponseError8? Type354 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError9? Type355 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType8? Type355 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType9? Type356 { get; set; }
+ public global::Fal.ListAssetsResponse10? Type356 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse? Type357 { get; set; }
+ public global::Fal.ListAssetsResponseError9? Type357 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type358 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType9? Type358 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollection? Type359 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse? Type359 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollectionType? Type360 { get; set; }
+ public global::System.Collections.Generic.IList? Type360 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse2? Type361 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollection? Type361 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError? Type362 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollectionType? Type362 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType? Type363 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse2? Type363 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse3? Type364 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError? Type364 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError2? Type365 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType? Type365 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType2? Type366 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse3? Type366 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse4? Type367 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError2? Type367 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError3? Type368 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType2? Type368 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType3? Type369 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse4? Type369 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse5? Type370 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError3? Type370 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError4? Type371 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType3? Type371 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType4? Type372 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse5? Type372 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse6? Type373 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError4? Type373 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError5? Type374 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType4? Type374 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType5? Type375 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse6? Type375 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse7? Type376 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError5? Type376 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError6? Type377 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType5? Type377 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType6? Type378 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse7? Type378 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse8? Type379 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError6? Type379 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError7? Type380 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType6? Type380 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType7? Type381 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse8? Type381 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse9? Type382 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError7? Type382 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError8? Type383 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType7? Type383 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType8? Type384 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse9? Type384 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse10? Type385 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError8? Type385 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError9? Type386 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType8? Type386 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType9? Type387 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse10? Type387 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse? Type388 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError9? Type388 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollection? Type389 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType9? Type389 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollectionType? Type390 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse? Type390 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse2? Type391 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollection? Type391 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError? Type392 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollectionType? Type392 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType? Type393 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse2? Type393 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse3? Type394 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError? Type394 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError2? Type395 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType? Type395 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType2? Type396 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse3? Type396 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse4? Type397 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError2? Type397 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError3? Type398 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType2? Type398 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType3? Type399 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse4? Type399 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse5? Type400 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError3? Type400 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError4? Type401 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType3? Type401 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType4? Type402 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse5? Type402 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse6? Type403 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError4? Type403 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError5? Type404 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType4? Type404 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType5? Type405 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse6? Type405 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse7? Type406 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError5? Type406 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError6? Type407 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType5? Type407 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType6? Type408 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse7? Type408 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse8? Type409 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError6? Type409 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError7? Type410 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType6? Type410 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType7? Type411 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse8? Type411 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse9? Type412 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError7? Type412 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError8? Type413 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType7? Type413 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType8? Type414 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse9? Type414 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse10? Type415 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError8? Type415 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError9? Type416 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType8? Type416 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType9? Type417 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse10? Type417 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse? Type418 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError9? Type418 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollection? Type419 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType9? Type419 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollectionType? Type420 { get; set; }
+ public global::Fal.GetAssetCollectionResponse? Type420 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse2? Type421 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollection? Type421 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError? Type422 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollectionType? Type422 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType? Type423 { get; set; }
+ public global::Fal.GetAssetCollectionResponse2? Type423 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse3? Type424 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError? Type424 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError2? Type425 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType? Type425 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType2? Type426 { get; set; }
+ public global::Fal.GetAssetCollectionResponse3? Type426 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse4? Type427 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError2? Type427 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError3? Type428 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType2? Type428 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType3? Type429 { get; set; }
+ public global::Fal.GetAssetCollectionResponse4? Type429 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse5? Type430 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError3? Type430 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError4? Type431 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType3? Type431 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType4? Type432 { get; set; }
+ public global::Fal.GetAssetCollectionResponse5? Type432 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse6? Type433 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError4? Type433 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError5? Type434 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType4? Type434 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType5? Type435 { get; set; }
+ public global::Fal.GetAssetCollectionResponse6? Type435 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse7? Type436 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError5? Type436 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError6? Type437 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType5? Type437 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType6? Type438 { get; set; }
+ public global::Fal.GetAssetCollectionResponse7? Type438 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse8? Type439 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError6? Type439 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError7? Type440 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType6? Type440 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType7? Type441 { get; set; }
+ public global::Fal.GetAssetCollectionResponse8? Type441 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse9? Type442 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError7? Type442 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError8? Type443 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType7? Type443 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType8? Type444 { get; set; }
+ public global::Fal.GetAssetCollectionResponse9? Type444 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse10? Type445 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError8? Type445 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError9? Type446 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType8? Type446 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType9? Type447 { get; set; }
+ public global::Fal.GetAssetCollectionResponse10? Type447 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse? Type448 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError9? Type448 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollection? Type449 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType9? Type449 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollectionType? Type450 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse? Type450 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse2? Type451 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollection? Type451 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError? Type452 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollectionType? Type452 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType? Type453 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse2? Type453 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse3? Type454 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError? Type454 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError2? Type455 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType? Type455 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType2? Type456 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse3? Type456 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse4? Type457 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError2? Type457 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError3? Type458 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType2? Type458 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType3? Type459 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse4? Type459 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse5? Type460 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError3? Type460 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError4? Type461 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType3? Type461 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType4? Type462 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse5? Type462 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse6? Type463 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError4? Type463 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError5? Type464 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType4? Type464 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType5? Type465 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse6? Type465 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse7? Type466 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError5? Type466 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError6? Type467 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType5? Type467 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType6? Type468 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse7? Type468 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse8? Type469 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError6? Type469 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError7? Type470 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType6? Type470 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType7? Type471 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse8? Type471 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse9? Type472 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError7? Type472 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError8? Type473 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType7? Type473 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType8? Type474 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse9? Type474 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse10? Type475 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError8? Type475 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError9? Type476 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType8? Type476 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType9? Type477 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse10? Type477 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse? Type478 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError9? Type478 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError? Type479 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType9? Type479 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType? Type480 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse? Type480 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse2? Type481 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError? Type481 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError2? Type482 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType? Type482 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType2? Type483 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse2? Type483 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse3? Type484 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError2? Type484 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError3? Type485 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType2? Type485 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType3? Type486 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse3? Type486 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse4? Type487 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError3? Type487 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError4? Type488 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType3? Type488 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType4? Type489 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse4? Type489 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse5? Type490 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError4? Type490 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError5? Type491 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType4? Type491 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType5? Type492 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse5? Type492 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse6? Type493 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError5? Type493 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError6? Type494 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType5? Type494 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType6? Type495 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse6? Type495 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse7? Type496 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError6? Type496 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError7? Type497 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType6? Type497 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType7? Type498 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse7? Type498 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse8? Type499 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError7? Type499 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError8? Type500 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType7? Type500 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType8? Type501 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse8? Type501 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse9? Type502 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError8? Type502 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError9? Type503 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType8? Type503 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType9? Type504 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse9? Type504 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse? Type505 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError9? Type505 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollection? Type506 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType9? Type506 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type507 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse? Type507 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse2? Type508 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollection? Type508 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError? Type509 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type509 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType? Type510 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse2? Type510 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse3? Type511 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError? Type511 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError2? Type512 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType? Type512 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type513 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse3? Type513 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse4? Type514 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError2? Type514 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError3? Type515 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type515 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type516 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse4? Type516 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse5? Type517 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError3? Type517 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError4? Type518 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type518 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type519 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse5? Type519 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse6? Type520 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError4? Type520 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError5? Type521 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type521 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type522 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse6? Type522 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse7? Type523 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError5? Type523 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError6? Type524 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type524 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type525 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse7? Type525 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse8? Type526 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError6? Type526 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError7? Type527 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type527 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type528 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse8? Type528 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse9? Type529 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError7? Type529 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError8? Type530 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type530 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type531 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse9? Type531 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse10? Type532 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError8? Type532 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError9? Type533 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type533 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type534 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse10? Type534 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse? Type535 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError9? Type535 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type536 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type536 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type537 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse? Type537 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse2? Type538 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type538 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError? Type539 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type539 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type540 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse2? Type540 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse3? Type541 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError? Type541 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError2? Type542 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type542 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type543 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse3? Type543 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse4? Type544 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError2? Type544 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError3? Type545 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type545 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type546 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse4? Type546 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse5? Type547 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError3? Type547 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError4? Type548 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type548 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type549 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse5? Type549 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse6? Type550 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError4? Type550 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError5? Type551 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type551 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type552 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse6? Type552 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse7? Type553 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError5? Type553 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError6? Type554 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type554 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type555 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse7? Type555 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse8? Type556 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError6? Type556 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError7? Type557 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type557 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type558 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse8? Type558 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse9? Type559 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError7? Type559 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError8? Type560 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type560 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type561 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse9? Type561 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse10? Type562 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError8? Type562 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError9? Type563 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type563 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type564 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse10? Type564 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse? Type565 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError9? Type565 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type566 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type566 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAsset? Type567 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse? Type567 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type568 { get; set; }
+ public global::System.Collections.Generic.IList? Type568 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type569 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAsset? Type569 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type570 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type570 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse2? Type571 { get; set; }
+ public global::System.Collections.Generic.IList? Type571 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError? Type572 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type572 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type573 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse2? Type573 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse3? Type574 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError? Type574 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError2? Type575 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type575 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type576 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse3? Type576 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse4? Type577 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError2? Type577 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError3? Type578 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type578 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type579 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse4? Type579 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse5? Type580 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError3? Type580 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError4? Type581 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type581 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type582 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse5? Type582 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse6? Type583 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError4? Type583 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError5? Type584 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type584 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type585 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse6? Type585 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse7? Type586 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError5? Type586 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError6? Type587 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type587 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type588 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse7? Type588 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse8? Type589 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError6? Type589 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError7? Type590 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type590 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type591 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse8? Type591 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse9? Type592 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError7? Type592 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError8? Type593 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type593 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type594 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse9? Type594 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse10? Type595 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError8? Type595 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError9? Type596 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type596 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type597 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse10? Type597 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse? Type598 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError9? Type598 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse2? Type599 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type599 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError? Type600 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse? Type600 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType? Type601 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse2? Type601 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse3? Type602 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError? Type602 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError2? Type603 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType? Type603 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType2? Type604 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse3? Type604 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse4? Type605 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError2? Type605 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError3? Type606 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType2? Type606 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType3? Type607 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse4? Type607 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse5? Type608 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError3? Type608 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError4? Type609 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType3? Type609 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType4? Type610 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse5? Type610 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse6? Type611 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError4? Type611 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError5? Type612 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType4? Type612 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType5? Type613 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse6? Type613 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse7? Type614 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError5? Type614 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError6? Type615 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType5? Type615 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType6? Type616 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse7? Type616 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse8? Type617 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError6? Type617 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError7? Type618 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType6? Type618 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType7? Type619 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse8? Type619 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse9? Type620 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError7? Type620 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError8? Type621 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType7? Type621 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType8? Type622 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse9? Type622 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse10? Type623 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError8? Type623 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError9? Type624 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType8? Type624 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType9? Type625 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse10? Type625 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse? Type626 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError9? Type626 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError? Type627 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType9? Type627 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type628 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse? Type628 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse2? Type629 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError? Type629 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError2? Type630 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type630 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type631 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse2? Type631 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse3? Type632 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError2? Type632 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError3? Type633 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type633 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type634 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse3? Type634 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse4? Type635 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError3? Type635 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError4? Type636 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type636 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type637 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse4? Type637 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse5? Type638 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError4? Type638 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError5? Type639 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type639 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type640 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse5? Type640 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse6? Type641 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError5? Type641 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError6? Type642 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type642 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type643 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse6? Type643 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse7? Type644 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError6? Type644 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError7? Type645 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type645 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type646 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse7? Type646 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse8? Type647 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError7? Type647 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError8? Type648 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type648 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type649 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse8? Type649 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse9? Type650 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError8? Type650 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError9? Type651 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type651 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type652 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse9? Type652 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse? Type653 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError9? Type653 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type654 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type654 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacter? Type655 { get; set; }
+ public global::Fal.ListAssetCharactersResponse? Type655 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacterType? Type656 { get; set; }
+ public global::System.Collections.Generic.IList? Type656 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse2? Type657 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacter? Type657 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError? Type658 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacterType? Type658 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType? Type659 { get; set; }
+ public global::Fal.ListAssetCharactersResponse2? Type659 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse3? Type660 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError? Type660 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError2? Type661 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType? Type661 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType2? Type662 { get; set; }
+ public global::Fal.ListAssetCharactersResponse3? Type662 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse4? Type663 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError2? Type663 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError3? Type664 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType2? Type664 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType3? Type665 { get; set; }
+ public global::Fal.ListAssetCharactersResponse4? Type665 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse5? Type666 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError3? Type666 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError4? Type667 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType3? Type667 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType4? Type668 { get; set; }
+ public global::Fal.ListAssetCharactersResponse5? Type668 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse6? Type669 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError4? Type669 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError5? Type670 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType4? Type670 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType5? Type671 { get; set; }
+ public global::Fal.ListAssetCharactersResponse6? Type671 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse7? Type672 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError5? Type672 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError6? Type673 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType5? Type673 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType6? Type674 { get; set; }
+ public global::Fal.ListAssetCharactersResponse7? Type674 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse8? Type675 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError6? Type675 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError7? Type676 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType6? Type676 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType7? Type677 { get; set; }
+ public global::Fal.ListAssetCharactersResponse8? Type677 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse9? Type678 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError7? Type678 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError8? Type679 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType7? Type679 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType8? Type680 { get; set; }
+ public global::Fal.ListAssetCharactersResponse9? Type680 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse10? Type681 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError8? Type681 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError9? Type682 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType8? Type682 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType9? Type683 { get; set; }
+ public global::Fal.ListAssetCharactersResponse10? Type683 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse? Type684 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError9? Type684 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacter? Type685 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType9? Type685 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacterType? Type686 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse? Type686 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse2? Type687 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacter? Type687 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError? Type688 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacterType? Type688 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType? Type689 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse2? Type689 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse3? Type690 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError? Type690 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError2? Type691 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType? Type691 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType2? Type692 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse3? Type692 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse4? Type693 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError2? Type693 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError3? Type694 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType2? Type694 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType3? Type695 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse4? Type695 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse5? Type696 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError3? Type696 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError4? Type697 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType3? Type697 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType4? Type698 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse5? Type698 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse6? Type699 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError4? Type699 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError5? Type700 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType4? Type700 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType5? Type701 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse6? Type701 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse7? Type702 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError5? Type702 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError6? Type703 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType5? Type703 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType6? Type704 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse7? Type704 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse8? Type705 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError6? Type705 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError7? Type706 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType6? Type706 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType7? Type707 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse8? Type707 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse9? Type708 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError7? Type708 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError8? Type709 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType7? Type709 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType8? Type710 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse9? Type710 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse10? Type711 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError8? Type711 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError9? Type712 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType8? Type712 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType9? Type713 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse10? Type713 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse? Type714 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError9? Type714 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacter? Type715 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType9? Type715 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacterType? Type716 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse? Type716 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse2? Type717 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacter? Type717 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError? Type718 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacterType? Type718 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType? Type719 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse2? Type719 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse3? Type720 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError? Type720 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError2? Type721 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType? Type721 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType2? Type722 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse3? Type722 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse4? Type723 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError2? Type723 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError3? Type724 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType2? Type724 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType3? Type725 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse4? Type725 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse5? Type726 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError3? Type726 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError4? Type727 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType3? Type727 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType4? Type728 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse5? Type728 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse6? Type729 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError4? Type729 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError5? Type730 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType4? Type730 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType5? Type731 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse6? Type731 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse7? Type732 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError5? Type732 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError6? Type733 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType5? Type733 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType6? Type734 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse7? Type734 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse8? Type735 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError6? Type735 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError7? Type736 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType6? Type736 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType7? Type737 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse8? Type737 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse9? Type738 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError7? Type738 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError8? Type739 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType7? Type739 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType8? Type740 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse9? Type740 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse10? Type741 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError8? Type741 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError9? Type742 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType8? Type742 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType9? Type743 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse10? Type743 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse? Type744 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError9? Type744 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacter? Type745 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType9? Type745 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacterType? Type746 { get; set; }
+ public global::Fal.GetAssetCharacterResponse? Type746 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse2? Type747 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacter? Type747 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError? Type748 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacterType? Type748 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType? Type749 { get; set; }
+ public global::Fal.GetAssetCharacterResponse2? Type749 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse3? Type750 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError? Type750 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError2? Type751 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType? Type751 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType2? Type752 { get; set; }
+ public global::Fal.GetAssetCharacterResponse3? Type752 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse4? Type753 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError2? Type753 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError3? Type754 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType2? Type754 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType3? Type755 { get; set; }
+ public global::Fal.GetAssetCharacterResponse4? Type755 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse5? Type756 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError3? Type756 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError4? Type757 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType3? Type757 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType4? Type758 { get; set; }
+ public global::Fal.GetAssetCharacterResponse5? Type758 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse6? Type759 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError4? Type759 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError5? Type760 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType4? Type760 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType5? Type761 { get; set; }
+ public global::Fal.GetAssetCharacterResponse6? Type761 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse7? Type762 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError5? Type762 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError6? Type763 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType5? Type763 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType6? Type764 { get; set; }
+ public global::Fal.GetAssetCharacterResponse7? Type764 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse8? Type765 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError6? Type765 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError7? Type766 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType6? Type766 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType7? Type767 { get; set; }
+ public global::Fal.GetAssetCharacterResponse8? Type767 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse9? Type768 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError7? Type768 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError8? Type769 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType7? Type769 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType8? Type770 { get; set; }
+ public global::Fal.GetAssetCharacterResponse9? Type770 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse10? Type771 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError8? Type771 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError9? Type772 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType8? Type772 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType9? Type773 { get; set; }
+ public global::Fal.GetAssetCharacterResponse10? Type773 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse? Type774 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError9? Type774 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError? Type775 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType9? Type775 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType? Type776 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse? Type776 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse2? Type777 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError? Type777 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError2? Type778 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType? Type778 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType2? Type779 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse2? Type779 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse3? Type780 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError2? Type780 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError3? Type781 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType2? Type781 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType3? Type782 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse3? Type782 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse4? Type783 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError3? Type783 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError4? Type784 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType3? Type784 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType4? Type785 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse4? Type785 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse5? Type786 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError4? Type786 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError5? Type787 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType4? Type787 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType5? Type788 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse5? Type788 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse6? Type789 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError5? Type789 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError6? Type790 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType5? Type790 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType6? Type791 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse6? Type791 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse7? Type792 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError6? Type792 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError7? Type793 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType6? Type793 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType7? Type794 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse7? Type794 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse8? Type795 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError7? Type795 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError8? Type796 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType7? Type796 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType8? Type797 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse8? Type797 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse9? Type798 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError8? Type798 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError9? Type799 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType8? Type799 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType9? Type800 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse9? Type800 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse? Type801 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError9? Type801 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacter? Type802 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType9? Type802 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type803 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse? Type803 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse2? Type804 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacter? Type804 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError? Type805 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type805 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType? Type806 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse2? Type806 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse3? Type807 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError? Type807 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError2? Type808 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType? Type808 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type809 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse3? Type809 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse4? Type810 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError2? Type810 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError3? Type811 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type811 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type812 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse4? Type812 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse5? Type813 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError3? Type813 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError4? Type814 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type814 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type815 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse5? Type815 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse6? Type816 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError4? Type816 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError5? Type817 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type817 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type818 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse6? Type818 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse7? Type819 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError5? Type819 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError6? Type820 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type820 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type821 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse7? Type821 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse8? Type822 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError6? Type822 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError7? Type823 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type823 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type824 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse8? Type824 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse9? Type825 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError7? Type825 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError8? Type826 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type826 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type827 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse9? Type827 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse10? Type828 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError8? Type828 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError9? Type829 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type829 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type830 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse10? Type830 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse? Type831 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError9? Type831 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type832 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type832 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type833 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse? Type833 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse2? Type834 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type834 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError? Type835 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type835 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type836 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse2? Type836 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse3? Type837 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError? Type837 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError2? Type838 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type838 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type839 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse3? Type839 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse4? Type840 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError2? Type840 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError3? Type841 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type841 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type842 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse4? Type842 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse5? Type843 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError3? Type843 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError4? Type844 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type844 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type845 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse5? Type845 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse6? Type846 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError4? Type846 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError5? Type847 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type847 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type848 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse6? Type848 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse7? Type849 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError5? Type849 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError6? Type850 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type850 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type851 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse7? Type851 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse8? Type852 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError6? Type852 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError7? Type853 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type853 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type854 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse8? Type854 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse9? Type855 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError7? Type855 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError8? Type856 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type856 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type857 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse9? Type857 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse10? Type858 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError8? Type858 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError9? Type859 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type859 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type860 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse10? Type860 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse? Type861 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError9? Type861 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type862 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type862 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseTag? Type863 { get; set; }
+ public global::Fal.ListAssetTagsResponse? Type863 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse2? Type864 { get; set; }
+ public global::System.Collections.Generic.IList? Type864 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError? Type865 { get; set; }
+ public global::Fal.ListAssetTagsResponseTag? Type865 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType? Type866 { get; set; }
+ public global::Fal.ListAssetTagsResponse2? Type866 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse3? Type867 { get; set; }
+ public global::Fal.ListAssetTagsResponseError? Type867 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError2? Type868 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType? Type868 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType2? Type869 { get; set; }
+ public global::Fal.ListAssetTagsResponse3? Type869 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse4? Type870 { get; set; }
+ public global::Fal.ListAssetTagsResponseError2? Type870 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError3? Type871 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType2? Type871 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType3? Type872 { get; set; }
+ public global::Fal.ListAssetTagsResponse4? Type872 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse5? Type873 { get; set; }
+ public global::Fal.ListAssetTagsResponseError3? Type873 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError4? Type874 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType3? Type874 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType4? Type875 { get; set; }
+ public global::Fal.ListAssetTagsResponse5? Type875 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse6? Type876 { get; set; }
+ public global::Fal.ListAssetTagsResponseError4? Type876 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError5? Type877 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType4? Type877 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType5? Type878 { get; set; }
+ public global::Fal.ListAssetTagsResponse6? Type878 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse7? Type879 { get; set; }
+ public global::Fal.ListAssetTagsResponseError5? Type879 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError6? Type880 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType5? Type880 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType6? Type881 { get; set; }
+ public global::Fal.ListAssetTagsResponse7? Type881 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse8? Type882 { get; set; }
+ public global::Fal.ListAssetTagsResponseError6? Type882 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError7? Type883 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType6? Type883 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType7? Type884 { get; set; }
+ public global::Fal.ListAssetTagsResponse8? Type884 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse9? Type885 { get; set; }
+ public global::Fal.ListAssetTagsResponseError7? Type885 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError8? Type886 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType7? Type886 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType8? Type887 { get; set; }
+ public global::Fal.ListAssetTagsResponse9? Type887 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse10? Type888 { get; set; }
+ public global::Fal.ListAssetTagsResponseError8? Type888 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError9? Type889 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType8? Type889 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType9? Type890 { get; set; }
+ public global::Fal.ListAssetTagsResponse10? Type890 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse? Type891 { get; set; }
+ public global::Fal.ListAssetTagsResponseError9? Type891 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseTag? Type892 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType9? Type892 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse2? Type893 { get; set; }
+ public global::Fal.CreateAssetTagResponse? Type893 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError? Type894 { get; set; }
+ public global::Fal.CreateAssetTagResponseTag? Type894 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType? Type895 { get; set; }
+ public global::Fal.CreateAssetTagResponse2? Type895 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse3? Type896 { get; set; }
+ public global::Fal.CreateAssetTagResponseError? Type896 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError2? Type897 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType? Type897 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType2? Type898 { get; set; }
+ public global::Fal.CreateAssetTagResponse3? Type898 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse4? Type899 { get; set; }
+ public global::Fal.CreateAssetTagResponseError2? Type899 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError3? Type900 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType2? Type900 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType3? Type901 { get; set; }
+ public global::Fal.CreateAssetTagResponse4? Type901 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse5? Type902 { get; set; }
+ public global::Fal.CreateAssetTagResponseError3? Type902 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError4? Type903 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType3? Type903 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType4? Type904 { get; set; }
+ public global::Fal.CreateAssetTagResponse5? Type904 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse6? Type905 { get; set; }
+ public global::Fal.CreateAssetTagResponseError4? Type905 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError5? Type906 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType4? Type906 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType5? Type907 { get; set; }
+ public global::Fal.CreateAssetTagResponse6? Type907 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse7? Type908 { get; set; }
+ public global::Fal.CreateAssetTagResponseError5? Type908 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError6? Type909 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType5? Type909 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType6? Type910 { get; set; }
+ public global::Fal.CreateAssetTagResponse7? Type910 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse8? Type911 { get; set; }
+ public global::Fal.CreateAssetTagResponseError6? Type911 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError7? Type912 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType6? Type912 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType7? Type913 { get; set; }
+ public global::Fal.CreateAssetTagResponse8? Type913 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse9? Type914 { get; set; }
+ public global::Fal.CreateAssetTagResponseError7? Type914 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError8? Type915 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType7? Type915 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType8? Type916 { get; set; }
+ public global::Fal.CreateAssetTagResponse9? Type916 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse10? Type917 { get; set; }
+ public global::Fal.CreateAssetTagResponseError8? Type917 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError9? Type918 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType8? Type918 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType9? Type919 { get; set; }
+ public global::Fal.CreateAssetTagResponse10? Type919 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse? Type920 { get; set; }
+ public global::Fal.CreateAssetTagResponseError9? Type920 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type921 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType9? Type921 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseTag? Type922 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse? Type922 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse2? Type923 { get; set; }
+ public global::System.Collections.Generic.IList? Type923 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError? Type924 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseTag? Type924 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType? Type925 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse2? Type925 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse3? Type926 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError? Type926 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError2? Type927 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType? Type927 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type928 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse3? Type928 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse4? Type929 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError2? Type929 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError3? Type930 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type930 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type931 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse4? Type931 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse5? Type932 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError3? Type932 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError4? Type933 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type933 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type934 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse5? Type934 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse6? Type935 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError4? Type935 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError5? Type936 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type936 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type937 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse6? Type937 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse7? Type938 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError5? Type938 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError6? Type939 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type939 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type940 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse7? Type940 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse8? Type941 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError6? Type941 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError7? Type942 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type942 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type943 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse8? Type943 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse9? Type944 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError7? Type944 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError8? Type945 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type945 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type946 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse9? Type946 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse10? Type947 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError8? Type947 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError9? Type948 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type948 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type949 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse10? Type949 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse? Type950 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError9? Type950 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseTag? Type951 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type951 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse2? Type952 { get; set; }
+ public global::Fal.UpdateAssetTagResponse? Type952 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError? Type953 { get; set; }
+ public global::Fal.UpdateAssetTagResponseTag? Type953 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType? Type954 { get; set; }
+ public global::Fal.UpdateAssetTagResponse2? Type954 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse3? Type955 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError? Type955 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError2? Type956 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType? Type956 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType2? Type957 { get; set; }
+ public global::Fal.UpdateAssetTagResponse3? Type957 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse4? Type958 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError2? Type958 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError3? Type959 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType2? Type959 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType3? Type960 { get; set; }
+ public global::Fal.UpdateAssetTagResponse4? Type960 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse5? Type961 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError3? Type961 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError4? Type962 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType3? Type962 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType4? Type963 { get; set; }
+ public global::Fal.UpdateAssetTagResponse5? Type963 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse6? Type964 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError4? Type964 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError5? Type965 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType4? Type965 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType5? Type966 { get; set; }
+ public global::Fal.UpdateAssetTagResponse6? Type966 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse7? Type967 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError5? Type967 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError6? Type968 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType5? Type968 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType6? Type969 { get; set; }
+ public global::Fal.UpdateAssetTagResponse7? Type969 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse8? Type970 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError6? Type970 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError7? Type971 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType6? Type971 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType7? Type972 { get; set; }
+ public global::Fal.UpdateAssetTagResponse8? Type972 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse9? Type973 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError7? Type973 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError8? Type974 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType7? Type974 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType8? Type975 { get; set; }
+ public global::Fal.UpdateAssetTagResponse9? Type975 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse10? Type976 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError8? Type976 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError9? Type977 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType8? Type977 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType9? Type978 { get; set; }
+ public global::Fal.UpdateAssetTagResponse10? Type978 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse? Type979 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError9? Type979 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError? Type980 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType9? Type980 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType? Type981 { get; set; }
+ public global::Fal.DeleteAssetTagResponse? Type981 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse2? Type982 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError? Type982 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError2? Type983 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType? Type983 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType2? Type984 { get; set; }
+ public global::Fal.DeleteAssetTagResponse2? Type984 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse3? Type985 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError2? Type985 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError3? Type986 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType2? Type986 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType3? Type987 { get; set; }
+ public global::Fal.DeleteAssetTagResponse3? Type987 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse4? Type988 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError3? Type988 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError4? Type989 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType3? Type989 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType4? Type990 { get; set; }
+ public global::Fal.DeleteAssetTagResponse4? Type990 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse5? Type991 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError4? Type991 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError5? Type992 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType4? Type992 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType5? Type993 { get; set; }
+ public global::Fal.DeleteAssetTagResponse5? Type993 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse6? Type994 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError5? Type994 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError6? Type995 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType5? Type995 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType6? Type996 { get; set; }
+ public global::Fal.DeleteAssetTagResponse6? Type996 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse7? Type997 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError6? Type997 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError7? Type998 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType6? Type998 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType7? Type999 { get; set; }
+ public global::Fal.DeleteAssetTagResponse7? Type999 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse8? Type1000 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError7? Type1000 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError8? Type1001 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType7? Type1001 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType8? Type1002 { get; set; }
+ public global::Fal.DeleteAssetTagResponse8? Type1002 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse9? Type1003 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError8? Type1003 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError9? Type1004 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType8? Type1004 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType9? Type1005 { get; set; }
+ public global::Fal.DeleteAssetTagResponse9? Type1005 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse? Type1006 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError9? Type1006 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAsset? Type1007 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType9? Type1007 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetType? Type1008 { get; set; }
+ public global::Fal.UploadAssetResponse? Type1008 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1009 { get; set; }
+ public global::Fal.UploadAssetResponseAsset? Type1009 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetTag? Type1010 { get; set; }
+ public global::Fal.UploadAssetResponseAssetType? Type1010 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse2? Type1011 { get; set; }
+ public global::System.Collections.Generic.IList? Type1011 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError? Type1012 { get; set; }
+ public global::Fal.UploadAssetResponseAssetTag? Type1012 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType? Type1013 { get; set; }
+ public global::Fal.UploadAssetResponse2? Type1013 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse3? Type1014 { get; set; }
+ public global::Fal.UploadAssetResponseError? Type1014 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError2? Type1015 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType? Type1015 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType2? Type1016 { get; set; }
+ public global::Fal.UploadAssetResponse3? Type1016 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse4? Type1017 { get; set; }
+ public global::Fal.UploadAssetResponseError2? Type1017 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError3? Type1018 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType2? Type1018 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType3? Type1019 { get; set; }
+ public global::Fal.UploadAssetResponse4? Type1019 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse5? Type1020 { get; set; }
+ public global::Fal.UploadAssetResponseError3? Type1020 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError4? Type1021 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType3? Type1021 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType4? Type1022 { get; set; }
+ public global::Fal.UploadAssetResponse5? Type1022 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse6? Type1023 { get; set; }
+ public global::Fal.UploadAssetResponseError4? Type1023 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError5? Type1024 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType4? Type1024 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType5? Type1025 { get; set; }
+ public global::Fal.UploadAssetResponse6? Type1025 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse7? Type1026 { get; set; }
+ public global::Fal.UploadAssetResponseError5? Type1026 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError6? Type1027 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType5? Type1027 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType6? Type1028 { get; set; }
+ public global::Fal.UploadAssetResponse7? Type1028 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse8? Type1029 { get; set; }
+ public global::Fal.UploadAssetResponseError6? Type1029 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError7? Type1030 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType6? Type1030 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType7? Type1031 { get; set; }
+ public global::Fal.UploadAssetResponse8? Type1031 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse9? Type1032 { get; set; }
+ public global::Fal.UploadAssetResponseError7? Type1032 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError8? Type1033 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType7? Type1033 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType8? Type1034 { get; set; }
+ public global::Fal.UploadAssetResponse9? Type1034 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse10? Type1035 { get; set; }
+ public global::Fal.UploadAssetResponseError8? Type1035 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError9? Type1036 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType8? Type1036 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType9? Type1037 { get; set; }
+ public global::Fal.UploadAssetResponse10? Type1037 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse? Type1038 { get; set; }
+ public global::Fal.UploadAssetResponseError9? Type1038 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAsset? Type1039 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType9? Type1039 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetType? Type1040 { get; set; }
+ public global::Fal.GetAssetResponse? Type1040 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1041 { get; set; }
+ public global::Fal.GetAssetResponseAsset? Type1041 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetTag? Type1042 { get; set; }
+ public global::Fal.GetAssetResponseAssetType? Type1042 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse2? Type1043 { get; set; }
+ public global::System.Collections.Generic.IList? Type1043 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError? Type1044 { get; set; }
+ public global::Fal.GetAssetResponseAssetTag? Type1044 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType? Type1045 { get; set; }
+ public global::Fal.GetAssetResponse2? Type1045 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse3? Type1046 { get; set; }
+ public global::Fal.GetAssetResponseError? Type1046 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError2? Type1047 { get; set; }
+ public global::Fal.GetAssetResponseErrorType? Type1047 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType2? Type1048 { get; set; }
+ public global::Fal.GetAssetResponse3? Type1048 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse4? Type1049 { get; set; }
+ public global::Fal.GetAssetResponseError2? Type1049 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError3? Type1050 { get; set; }
+ public global::Fal.GetAssetResponseErrorType2? Type1050 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType3? Type1051 { get; set; }
+ public global::Fal.GetAssetResponse4? Type1051 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse5? Type1052 { get; set; }
+ public global::Fal.GetAssetResponseError3? Type1052 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError4? Type1053 { get; set; }
+ public global::Fal.GetAssetResponseErrorType3? Type1053 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType4? Type1054 { get; set; }
+ public global::Fal.GetAssetResponse5? Type1054 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse6? Type1055 { get; set; }
+ public global::Fal.GetAssetResponseError4? Type1055 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError5? Type1056 { get; set; }
+ public global::Fal.GetAssetResponseErrorType4? Type1056 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType5? Type1057 { get; set; }
+ public global::Fal.GetAssetResponse6? Type1057 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse7? Type1058 { get; set; }
+ public global::Fal.GetAssetResponseError5? Type1058 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError6? Type1059 { get; set; }
+ public global::Fal.GetAssetResponseErrorType5? Type1059 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType6? Type1060 { get; set; }
+ public global::Fal.GetAssetResponse7? Type1060 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse8? Type1061 { get; set; }
+ public global::Fal.GetAssetResponseError6? Type1061 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError7? Type1062 { get; set; }
+ public global::Fal.GetAssetResponseErrorType6? Type1062 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType7? Type1063 { get; set; }
+ public global::Fal.GetAssetResponse8? Type1063 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse9? Type1064 { get; set; }
+ public global::Fal.GetAssetResponseError7? Type1064 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError8? Type1065 { get; set; }
+ public global::Fal.GetAssetResponseErrorType7? Type1065 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType8? Type1066 { get; set; }
+ public global::Fal.GetAssetResponse9? Type1066 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse10? Type1067 { get; set; }
+ public global::Fal.GetAssetResponseError8? Type1067 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError9? Type1068 { get; set; }
+ public global::Fal.GetAssetResponseErrorType8? Type1068 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType9? Type1069 { get; set; }
+ public global::Fal.GetAssetResponse10? Type1069 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse? Type1070 { get; set; }
+ public global::Fal.GetAssetResponseError9? Type1070 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse2? Type1071 { get; set; }
+ public global::Fal.GetAssetResponseErrorType9? Type1071 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError? Type1072 { get; set; }
+ public global::Fal.FavoriteAssetResponse? Type1072 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType? Type1073 { get; set; }
+ public global::Fal.FavoriteAssetResponse2? Type1073 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse3? Type1074 { get; set; }
+ public global::Fal.FavoriteAssetResponseError? Type1074 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError2? Type1075 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType? Type1075 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType2? Type1076 { get; set; }
+ public global::Fal.FavoriteAssetResponse3? Type1076 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse4? Type1077 { get; set; }
+ public global::Fal.FavoriteAssetResponseError2? Type1077 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError3? Type1078 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType2? Type1078 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType3? Type1079 { get; set; }
+ public global::Fal.FavoriteAssetResponse4? Type1079 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse5? Type1080 { get; set; }
+ public global::Fal.FavoriteAssetResponseError3? Type1080 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError4? Type1081 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType3? Type1081 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType4? Type1082 { get; set; }
+ public global::Fal.FavoriteAssetResponse5? Type1082 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse6? Type1083 { get; set; }
+ public global::Fal.FavoriteAssetResponseError4? Type1083 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError5? Type1084 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType4? Type1084 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType5? Type1085 { get; set; }
+ public global::Fal.FavoriteAssetResponse6? Type1085 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse7? Type1086 { get; set; }
+ public global::Fal.FavoriteAssetResponseError5? Type1086 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError6? Type1087 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType5? Type1087 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType6? Type1088 { get; set; }
+ public global::Fal.FavoriteAssetResponse7? Type1088 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse8? Type1089 { get; set; }
+ public global::Fal.FavoriteAssetResponseError6? Type1089 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError7? Type1090 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType6? Type1090 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType7? Type1091 { get; set; }
+ public global::Fal.FavoriteAssetResponse8? Type1091 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse9? Type1092 { get; set; }
+ public global::Fal.FavoriteAssetResponseError7? Type1092 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError8? Type1093 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType7? Type1093 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType8? Type1094 { get; set; }
+ public global::Fal.FavoriteAssetResponse9? Type1094 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse10? Type1095 { get; set; }
+ public global::Fal.FavoriteAssetResponseError8? Type1095 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError9? Type1096 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType8? Type1096 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType9? Type1097 { get; set; }
+ public global::Fal.FavoriteAssetResponse10? Type1097 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse? Type1098 { get; set; }
+ public global::Fal.FavoriteAssetResponseError9? Type1098 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse2? Type1099 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType9? Type1099 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError? Type1100 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse? Type1100 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType? Type1101 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse2? Type1101 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse3? Type1102 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError? Type1102 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError2? Type1103 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType? Type1103 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType2? Type1104 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse3? Type1104 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse4? Type1105 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError2? Type1105 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError3? Type1106 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType2? Type1106 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType3? Type1107 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse4? Type1107 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse5? Type1108 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError3? Type1108 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError4? Type1109 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType3? Type1109 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType4? Type1110 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse5? Type1110 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse6? Type1111 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError4? Type1111 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError5? Type1112 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType4? Type1112 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType5? Type1113 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse6? Type1113 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse7? Type1114 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError5? Type1114 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError6? Type1115 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType5? Type1115 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType6? Type1116 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse7? Type1116 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse8? Type1117 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError6? Type1117 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError7? Type1118 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType6? Type1118 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType7? Type1119 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse8? Type1119 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse9? Type1120 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError7? Type1120 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError8? Type1121 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType7? Type1121 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType8? Type1122 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse9? Type1122 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse10? Type1123 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError8? Type1123 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError9? Type1124 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType8? Type1124 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType9? Type1125 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse10? Type1125 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse? Type1126 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError9? Type1126 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1127 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType9? Type1127 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseTag? Type1128 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse? Type1128 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse2? Type1129 { get; set; }
+ public global::System.Collections.Generic.IList? Type1129 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError? Type1130 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseTag? Type1130 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1131 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse2? Type1131 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse3? Type1132 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError? Type1132 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError2? Type1133 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1133 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1134 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse3? Type1134 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse4? Type1135 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError2? Type1135 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError3? Type1136 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1136 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1137 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse4? Type1137 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse5? Type1138 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError3? Type1138 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError4? Type1139 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1139 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1140 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse5? Type1140 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse6? Type1141 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError4? Type1141 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError5? Type1142 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1142 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1143 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse6? Type1143 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse7? Type1144 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError5? Type1144 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError6? Type1145 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1145 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1146 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse7? Type1146 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse8? Type1147 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError6? Type1147 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError7? Type1148 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1148 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1149 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse8? Type1149 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse9? Type1150 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError7? Type1150 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError8? Type1151 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1151 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1152 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse9? Type1152 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse10? Type1153 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError8? Type1153 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError9? Type1154 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1154 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1155 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse10? Type1155 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse? Type1156 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError9? Type1156 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse2? Type1157 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1157 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError? Type1158 { get; set; }
+ public global::Fal.AssignAssetTagResponse? Type1158 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType? Type1159 { get; set; }
+ public global::Fal.AssignAssetTagResponse2? Type1159 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse3? Type1160 { get; set; }
+ public global::Fal.AssignAssetTagResponseError? Type1160 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError2? Type1161 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType? Type1161 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType2? Type1162 { get; set; }
+ public global::Fal.AssignAssetTagResponse3? Type1162 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse4? Type1163 { get; set; }
+ public global::Fal.AssignAssetTagResponseError2? Type1163 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError3? Type1164 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType2? Type1164 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType3? Type1165 { get; set; }
+ public global::Fal.AssignAssetTagResponse4? Type1165 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse5? Type1166 { get; set; }
+ public global::Fal.AssignAssetTagResponseError3? Type1166 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError4? Type1167 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType3? Type1167 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType4? Type1168 { get; set; }
+ public global::Fal.AssignAssetTagResponse5? Type1168 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse6? Type1169 { get; set; }
+ public global::Fal.AssignAssetTagResponseError4? Type1169 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError5? Type1170 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType4? Type1170 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType5? Type1171 { get; set; }
+ public global::Fal.AssignAssetTagResponse6? Type1171 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse7? Type1172 { get; set; }
+ public global::Fal.AssignAssetTagResponseError5? Type1172 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError6? Type1173 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType5? Type1173 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType6? Type1174 { get; set; }
+ public global::Fal.AssignAssetTagResponse7? Type1174 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse8? Type1175 { get; set; }
+ public global::Fal.AssignAssetTagResponseError6? Type1175 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError7? Type1176 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType6? Type1176 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType7? Type1177 { get; set; }
+ public global::Fal.AssignAssetTagResponse8? Type1177 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse9? Type1178 { get; set; }
+ public global::Fal.AssignAssetTagResponseError7? Type1178 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError8? Type1179 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType7? Type1179 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType8? Type1180 { get; set; }
+ public global::Fal.AssignAssetTagResponse9? Type1180 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse10? Type1181 { get; set; }
+ public global::Fal.AssignAssetTagResponseError8? Type1181 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError9? Type1182 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType8? Type1182 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType9? Type1183 { get; set; }
+ public global::Fal.AssignAssetTagResponse10? Type1183 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse? Type1184 { get; set; }
+ public global::Fal.AssignAssetTagResponseError9? Type1184 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError? Type1185 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType9? Type1185 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType? Type1186 { get; set; }
+ public global::Fal.UnassignAssetTagResponse? Type1186 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse2? Type1187 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError? Type1187 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError2? Type1188 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType? Type1188 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType2? Type1189 { get; set; }
+ public global::Fal.UnassignAssetTagResponse2? Type1189 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse3? Type1190 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError2? Type1190 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError3? Type1191 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType2? Type1191 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType3? Type1192 { get; set; }
+ public global::Fal.UnassignAssetTagResponse3? Type1192 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse4? Type1193 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError3? Type1193 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError4? Type1194 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType3? Type1194 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType4? Type1195 { get; set; }
+ public global::Fal.UnassignAssetTagResponse4? Type1195 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse5? Type1196 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError4? Type1196 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError5? Type1197 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType4? Type1197 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType5? Type1198 { get; set; }
+ public global::Fal.UnassignAssetTagResponse5? Type1198 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse6? Type1199 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError5? Type1199 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError6? Type1200 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType5? Type1200 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType6? Type1201 { get; set; }
+ public global::Fal.UnassignAssetTagResponse6? Type1201 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse7? Type1202 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError6? Type1202 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError7? Type1203 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType6? Type1203 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType7? Type1204 { get; set; }
+ public global::Fal.UnassignAssetTagResponse7? Type1204 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse8? Type1205 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError7? Type1205 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError8? Type1206 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType7? Type1206 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType8? Type1207 { get; set; }
+ public global::Fal.UnassignAssetTagResponse8? Type1207 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse9? Type1208 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError8? Type1208 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError9? Type1209 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType8? Type1209 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType9? Type1210 { get; set; }
+ public global::Fal.UnassignAssetTagResponse9? Type1210 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse? Type1211 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError9? Type1211 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseDefault? Type1212 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType9? Type1212 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1213 { get; set; }
+ public global::Fal.GetStorageFileAclResponse? Type1213 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseRule? Type1214 { get; set; }
+ public global::Fal.GetStorageFileAclResponseDefault? Type1214 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseRuleDecision? Type1215 { get; set; }
+ public global::System.Collections.Generic.IList? Type1215 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse2? Type1216 { get; set; }
+ public global::Fal.GetStorageFileAclResponseRule? Type1216 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError? Type1217 { get; set; }
+ public global::Fal.GetStorageFileAclResponseRuleDecision? Type1217 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType? Type1218 { get; set; }
+ public global::Fal.GetStorageFileAclResponse2? Type1218 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse3? Type1219 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError? Type1219 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError2? Type1220 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType? Type1220 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType2? Type1221 { get; set; }
+ public global::Fal.GetStorageFileAclResponse3? Type1221 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse4? Type1222 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError2? Type1222 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError3? Type1223 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType2? Type1223 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType3? Type1224 { get; set; }
+ public global::Fal.GetStorageFileAclResponse4? Type1224 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse5? Type1225 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError3? Type1225 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError4? Type1226 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType3? Type1226 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType4? Type1227 { get; set; }
+ public global::Fal.GetStorageFileAclResponse5? Type1227 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse6? Type1228 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError4? Type1228 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError5? Type1229 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType4? Type1229 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType5? Type1230 { get; set; }
+ public global::Fal.GetStorageFileAclResponse6? Type1230 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse7? Type1231 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError5? Type1231 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError6? Type1232 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType5? Type1232 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType6? Type1233 { get; set; }
+ public global::Fal.GetStorageFileAclResponse7? Type1233 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse? Type1234 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError6? Type1234 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseDefault? Type1235 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType6? Type1235 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1236 { get; set; }
+ public global::Fal.SetStorageFileAclResponse? Type1236 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseRule? Type1237 { get; set; }
+ public global::Fal.SetStorageFileAclResponseDefault? Type1237 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseRuleDecision? Type1238 { get; set; }
+ public global::System.Collections.Generic.IList? Type1238 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse2? Type1239 { get; set; }
+ public global::Fal.SetStorageFileAclResponseRule? Type1239 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError? Type1240 { get; set; }
+ public global::Fal.SetStorageFileAclResponseRuleDecision? Type1240 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType? Type1241 { get; set; }
+ public global::Fal.SetStorageFileAclResponse2? Type1241 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse3? Type1242 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError? Type1242 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError2? Type1243 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType? Type1243 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType2? Type1244 { get; set; }
+ public global::Fal.SetStorageFileAclResponse3? Type1244 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse4? Type1245 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError2? Type1245 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError3? Type1246 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType2? Type1246 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType3? Type1247 { get; set; }
+ public global::Fal.SetStorageFileAclResponse4? Type1247 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse5? Type1248 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError3? Type1248 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError4? Type1249 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType3? Type1249 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType4? Type1250 { get; set; }
+ public global::Fal.SetStorageFileAclResponse5? Type1250 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse6? Type1251 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError4? Type1251 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError5? Type1252 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType4? Type1252 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType5? Type1253 { get; set; }
+ public global::Fal.SetStorageFileAclResponse6? Type1253 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse7? Type1254 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError5? Type1254 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError6? Type1255 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType5? Type1255 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType6? Type1256 { get; set; }
+ public global::Fal.SetStorageFileAclResponse7? Type1256 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse? Type1257 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError6? Type1257 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse2? Type1258 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType6? Type1258 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError? Type1259 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse? Type1259 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType? Type1260 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse2? Type1260 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse3? Type1261 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError? Type1261 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError2? Type1262 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType? Type1262 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType2? Type1263 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse3? Type1263 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse4? Type1264 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError2? Type1264 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError3? Type1265 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType2? Type1265 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType3? Type1266 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse4? Type1266 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse5? Type1267 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError3? Type1267 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError4? Type1268 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType3? Type1268 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType4? Type1269 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse5? Type1269 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse6? Type1270 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError4? Type1270 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError5? Type1271 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType4? Type1271 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType5? Type1272 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse6? Type1272 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse7? Type1273 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError5? Type1273 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError6? Type1274 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType5? Type1274 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType6? Type1275 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse7? Type1275 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse? Type1276 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError6? Type1276 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAcl? Type1277 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType6? Type1277 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclDefault? Type1278 { get; set; }
+ public global::Fal.GetStorageSettingsResponse? Type1278 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1279 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAcl? Type1279 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclRule? Type1280 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclDefault? Type1280 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclRuleDecision? Type1281 { get; set; }
+ public global::System.Collections.Generic.IList? Type1281 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse2? Type1282 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclRule? Type1282 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError? Type1283 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclRuleDecision? Type1283 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType? Type1284 { get; set; }
+ public global::Fal.GetStorageSettingsResponse2? Type1284 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse3? Type1285 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError? Type1285 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError2? Type1286 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType? Type1286 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType2? Type1287 { get; set; }
+ public global::Fal.GetStorageSettingsResponse3? Type1287 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse4? Type1288 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError2? Type1288 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError3? Type1289 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType2? Type1289 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType3? Type1290 { get; set; }
+ public global::Fal.GetStorageSettingsResponse4? Type1290 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse5? Type1291 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError3? Type1291 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError4? Type1292 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType3? Type1292 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType4? Type1293 { get; set; }
+ public global::Fal.GetStorageSettingsResponse5? Type1293 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse? Type1294 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError4? Type1294 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAcl? Type1295 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType4? Type1295 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclDefault? Type1296 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse? Type1296 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1297 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAcl? Type1297 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclRule? Type1298 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclDefault? Type1298 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclRuleDecision? Type1299 { get; set; }
+ public global::System.Collections.Generic.IList? Type1299 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse2? Type1300 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclRule? Type1300 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError? Type1301 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclRuleDecision? Type1301 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType? Type1302 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse2? Type1302 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse3? Type1303 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError? Type1303 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError2? Type1304 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType? Type1304 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType2? Type1305 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse3? Type1305 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse4? Type1306 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError2? Type1306 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError3? Type1307 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType2? Type1307 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType3? Type1308 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse4? Type1308 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse5? Type1309 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError3? Type1309 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError4? Type1310 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType3? Type1310 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType4? Type1311 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse5? Type1311 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse6? Type1312 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError4? Type1312 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError5? Type1313 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType4? Type1313 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType5? Type1314 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse6? Type1314 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse? Type1315 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError5? Type1315 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1316 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType5? Type1316 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1317 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse? Type1317 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1318 { get; set; }
+ public global::System.Collections.Generic.IList? Type1318 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1319 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1319 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1320 { get; set; }
+ public global::System.Collections.Generic.IList? Type1320 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1321 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1321 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse2? Type1322 { get; set; }
+ public global::System.Collections.Generic.IList? Type1322 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError? Type1323 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1323 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1324 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse2? Type1324 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse3? Type1325 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError? Type1325 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError2? Type1326 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1326 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1327 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse3? Type1327 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse4? Type1328 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError2? Type1328 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError3? Type1329 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1329 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1330 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse4? Type1330 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse5? Type1331 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError3? Type1331 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError4? Type1332 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1332 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1333 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse5? Type1333 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse6? Type1334 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError4? Type1334 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError5? Type1335 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1335 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1336 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse6? Type1336 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse7? Type1337 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError5? Type1337 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError6? Type1338 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1338 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1339 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse7? Type1339 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse? Type1340 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError6? Type1340 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1341 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1341 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1342 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse? Type1342 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1343 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1343 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1344 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1344 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1345 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1345 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1346 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1346 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1347 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1347 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1348 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1348 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1349 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1349 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1350 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1350 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1351 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1351 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1352 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1352 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1353 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1353 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1354 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1354 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1355 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1355 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse? Type1356 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1356 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError? Type1357 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1357 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1358 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse? Type1358 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse2? Type1359 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError? Type1359 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError2? Type1360 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1360 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1361 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse2? Type1361 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse3? Type1362 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError2? Type1362 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError3? Type1363 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1363 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1364 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse3? Type1364 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse4? Type1365 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError3? Type1365 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError4? Type1366 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1366 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1367 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse4? Type1367 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse5? Type1368 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError4? Type1368 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError5? Type1369 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1369 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1370 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse5? Type1370 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse6? Type1371 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError5? Type1371 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError6? Type1372 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1372 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1373 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse6? Type1373 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1374 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError6? Type1374 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseItem? Type1375 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1375 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse? Type1376 { get; set; }
+ public global::System.Collections.Generic.IList? Type1376 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError? Type1377 { get; set; }
+ public global::Fal.ServerlessListRootResponseItem? Type1377 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType? Type1378 { get; set; }
+ public global::Fal.ServerlessListRootResponse? Type1378 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse2? Type1379 { get; set; }
+ public global::Fal.ServerlessListRootResponseError? Type1379 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError2? Type1380 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType? Type1380 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType2? Type1381 { get; set; }
+ public global::Fal.ServerlessListRootResponse2? Type1381 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse3? Type1382 { get; set; }
+ public global::Fal.ServerlessListRootResponseError2? Type1382 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError3? Type1383 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType2? Type1383 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType3? Type1384 { get; set; }
+ public global::Fal.ServerlessListRootResponse3? Type1384 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1385 { get; set; }
+ public global::Fal.ServerlessListRootResponseError3? Type1385 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseItem? Type1386 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType3? Type1386 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse? Type1387 { get; set; }
+ public global::System.Collections.Generic.IList? Type1387 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError? Type1388 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseItem? Type1388 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType? Type1389 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse? Type1389 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse2? Type1390 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError? Type1390 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError2? Type1391 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType? Type1391 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1392 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse2? Type1392 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse3? Type1393 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError2? Type1393 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError3? Type1394 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1394 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1395 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse3? Type1395 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse2? Type1396 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError3? Type1396 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError? Type1397 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1397 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType? Type1398 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse2? Type1398 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse3? Type1399 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError? Type1399 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError2? Type1400 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType? Type1400 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1401 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse3? Type1401 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse4? Type1402 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError2? Type1402 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError3? Type1403 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1403 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1404 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse4? Type1404 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse5? Type1405 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError3? Type1405 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError4? Type1406 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1406 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1407 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse5? Type1407 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse? Type1408 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError4? Type1408 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError? Type1409 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1409 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1410 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse? Type1410 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse2? Type1411 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError? Type1411 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError2? Type1412 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1412 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1413 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse2? Type1413 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse3? Type1414 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError2? Type1414 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError3? Type1415 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1415 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1416 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse3? Type1416 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse? Type1417 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError3? Type1417 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError? Type1418 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1418 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1419 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse? Type1419 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse2? Type1420 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError? Type1420 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError2? Type1421 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1421 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1422 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse2? Type1422 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse3? Type1423 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError2? Type1423 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError3? Type1424 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1424 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1425 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse3? Type1425 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse4? Type1426 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError3? Type1426 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError4? Type1427 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1427 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1428 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse4? Type1428 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse? Type1429 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError4? Type1429 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError? Type1430 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1430 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType? Type1431 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse? Type1431 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse2? Type1432 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError? Type1432 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError2? Type1433 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType? Type1433 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1434 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse2? Type1434 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse3? Type1435 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError2? Type1435 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError3? Type1436 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1436 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1437 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse3? Type1437 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse? Type1438 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError3? Type1438 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1439 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1439 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseItem? Type1440 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse? Type1440 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse2? Type1441 { get; set; }
+ public global::System.Collections.Generic.IList? Type1441 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError? Type1442 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseItem? Type1442 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1443 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse2? Type1443 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse3? Type1444 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError? Type1444 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError2? Type1445 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1445 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1446 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse3? Type1446 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse4? Type1447 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError2? Type1447 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError3? Type1448 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1448 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1449 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse4? Type1449 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse2? Type1450 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError3? Type1450 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError? Type1451 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1451 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType? Type1452 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse2? Type1452 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse3? Type1453 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError? Type1453 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError2? Type1454 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType? Type1454 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1455 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse3? Type1455 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse4? Type1456 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError2? Type1456 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError3? Type1457 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1457 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1458 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse4? Type1458 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse? Type1459 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError3? Type1459 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1460 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1460 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1461 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse? Type1461 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1462 { get; set; }
+ public global::System.Collections.Generic.IList? Type1462 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1463 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1463 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1464 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1464 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1465 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1465 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1466 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1466 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1467 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1467 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1468 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1468 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1469 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1469 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1470 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1470 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1471 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1471 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1472 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1472 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1473 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1473 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1474 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1474 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1475 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1475 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1476 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1476 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1477 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1477 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1478 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1478 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1479 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1479 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse? Type1480 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1480 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1481 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1481 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstance? Type1482 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse? Type1482 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1483 { get; set; }
+ public global::System.Collections.Generic.IList? Type1483 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1484 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseTimeSerie? Type1484 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceSector? Type1485 { get; set; }
+ public global::System.Collections.Generic.IList? Type1485 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1486 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseTimeSerieResult? Type1486 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse2? Type1487 { get; set; }
+ public global::System.Collections.Generic.IList? Type1487 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError? Type1488 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseSummaryItem? Type1488 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType? Type1489 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse2? Type1489 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse3? Type1490 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError? Type1490 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError2? Type1491 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType? Type1491 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType2? Type1492 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse3? Type1492 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse4? Type1493 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError2? Type1493 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError3? Type1494 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType2? Type1494 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType3? Type1495 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse4? Type1495 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse5? Type1496 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError3? Type1496 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError4? Type1497 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType3? Type1497 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType4? Type1498 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse5? Type1498 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse? Type1499 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError4? Type1499 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseInstanceType? Type1500 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType4? Type1500 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseRegion? Type1501 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse6? Type1501 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseSector? Type1502 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError5? Type1502 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseStatus? Type1503 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType5? Type1503 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse2? Type1504 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse7? Type1504 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError? Type1505 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError6? Type1505 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType? Type1506 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType6? Type1506 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse3? Type1507 { get; set; }
+ public global::Fal.ListComputeInstancesResponse? Type1507 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError2? Type1508 { get; set; }
+ public global::System.Collections.Generic.IList? Type1508 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType2? Type1509 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstance? Type1509 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse4? Type1510 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1510 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError3? Type1511 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1511 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType3? Type1512 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceSector? Type1512 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse5? Type1513 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1513 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError4? Type1514 { get; set; }
+ public global::Fal.ListComputeInstancesResponse2? Type1514 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType4? Type1515 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError? Type1515 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse6? Type1516 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType? Type1516 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError5? Type1517 { get; set; }
+ public global::Fal.ListComputeInstancesResponse3? Type1517 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType5? Type1518 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError2? Type1518 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse? Type1519 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType2? Type1519 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseInstanceType? Type1520 { get; set; }
+ public global::Fal.ListComputeInstancesResponse4? Type1520 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseRegion? Type1521 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError3? Type1521 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseSector? Type1522 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType3? Type1522 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseStatus? Type1523 { get; set; }
+ public global::Fal.ListComputeInstancesResponse5? Type1523 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse2? Type1524 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError4? Type1524 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError? Type1525 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType4? Type1525 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType? Type1526 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse? Type1526 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse3? Type1527 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseInstanceType? Type1527 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError2? Type1528 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseRegion? Type1528 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType2? Type1529 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseSector? Type1529 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse4? Type1530 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseStatus? Type1530 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError3? Type1531 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse2? Type1531 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType3? Type1532 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError? Type1532 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse5? Type1533 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType? Type1533 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError4? Type1534 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse3? Type1534 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType4? Type1535 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError2? Type1535 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse6? Type1536 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType2? Type1536 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError5? Type1537 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse4? Type1537 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType5? Type1538 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError3? Type1538 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse? Type1539 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType3? Type1539 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError? Type1540 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse5? Type1540 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType? Type1541 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError4? Type1541 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse2? Type1542 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType4? Type1542 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError2? Type1543 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse6? Type1543 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1544 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError5? Type1544 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse3? Type1545 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType5? Type1545 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError3? Type1546 { get; set; }
+ public global::Fal.GetComputeInstanceResponse? Type1546 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1547 { get; set; }
+ public global::Fal.GetComputeInstanceResponseInstanceType? Type1547 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse4? Type1548 { get; set; }
+ public global::Fal.GetComputeInstanceResponseRegion? Type1548 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError4? Type1549 { get; set; }
+ public global::Fal.GetComputeInstanceResponseSector? Type1549 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1550 { get; set; }
+ public global::Fal.GetComputeInstanceResponseStatus? Type1550 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse5? Type1551 { get; set; }
+ public global::Fal.GetComputeInstanceResponse2? Type1551 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError5? Type1552 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError? Type1552 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1553 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType? Type1553 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse? Type1554 { get; set; }
+ public global::Fal.GetComputeInstanceResponse3? Type1554 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1555 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError2? Type1555 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKey? Type1556 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType2? Type1556 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKeyScope? Type1557 { get; set; }
+ public global::Fal.GetComputeInstanceResponse4? Type1557 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse2? Type1558 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError3? Type1558 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError? Type1559 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType3? Type1559 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType? Type1560 { get; set; }
+ public global::Fal.GetComputeInstanceResponse5? Type1560 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse3? Type1561 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError4? Type1561 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError2? Type1562 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType4? Type1562 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType2? Type1563 { get; set; }
+ public global::Fal.GetComputeInstanceResponse6? Type1563 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse4? Type1564 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError5? Type1564 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError3? Type1565 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType5? Type1565 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType3? Type1566 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse? Type1566 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse5? Type1567 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError? Type1567 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError4? Type1568 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType? Type1568 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType4? Type1569 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse2? Type1569 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse? Type1570 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError2? Type1570 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse2? Type1571 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1571 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError? Type1572 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse3? Type1572 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType? Type1573 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError3? Type1573 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse3? Type1574 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1574 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError2? Type1575 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse4? Type1575 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType2? Type1576 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError4? Type1576 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse4? Type1577 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1577 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError3? Type1578 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse5? Type1578 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType3? Type1579 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError5? Type1579 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse5? Type1580 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1580 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError4? Type1581 { get; set; }
+ public global::Fal.ListApiKeysResponse? Type1581 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType4? Type1582 { get; set; }
+ public global::System.Collections.Generic.IList? Type1582 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse6? Type1583 { get; set; }
+ public global::Fal.ListApiKeysResponseKey? Type1583 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError5? Type1584 { get; set; }
+ public global::Fal.ListApiKeysResponseKeyScope? Type1584 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType5? Type1585 { get; set; }
+ public global::Fal.ListApiKeysResponse2? Type1585 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse? Type1586 { get; set; }
+ public global::Fal.ListApiKeysResponseError? Type1586 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError? Type1587 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType? Type1587 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType? Type1588 { get; set; }
+ public global::Fal.ListApiKeysResponse3? Type1588 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse2? Type1589 { get; set; }
+ public global::Fal.ListApiKeysResponseError2? Type1589 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError2? Type1590 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType2? Type1590 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType2? Type1591 { get; set; }
+ public global::Fal.ListApiKeysResponse4? Type1591 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse3? Type1592 { get; set; }
+ public global::Fal.ListApiKeysResponseError3? Type1592 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError3? Type1593 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType3? Type1593 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType3? Type1594 { get; set; }
+ public global::Fal.ListApiKeysResponse5? Type1594 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse4? Type1595 { get; set; }
+ public global::Fal.ListApiKeysResponseError4? Type1595 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError4? Type1596 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType4? Type1596 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType4? Type1597 { get; set; }
+ public global::Fal.CreateApiKeyResponse? Type1597 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse? Type1598 { get; set; }
+ public global::Fal.CreateApiKeyResponse2? Type1598 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseCredits? Type1599 { get; set; }
+ public global::Fal.CreateApiKeyResponseError? Type1599 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse2? Type1600 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType? Type1600 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError? Type1601 { get; set; }
+ public global::Fal.CreateApiKeyResponse3? Type1601 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType? Type1602 { get; set; }
+ public global::Fal.CreateApiKeyResponseError2? Type1602 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse3? Type1603 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType2? Type1603 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError2? Type1604 { get; set; }
+ public global::Fal.CreateApiKeyResponse4? Type1604 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType2? Type1605 { get; set; }
+ public global::Fal.CreateApiKeyResponseError3? Type1605 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse4? Type1606 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType3? Type1606 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError3? Type1607 { get; set; }
+ public global::Fal.CreateApiKeyResponse5? Type1607 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType3? Type1608 { get; set; }
+ public global::Fal.CreateApiKeyResponseError4? Type1608 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse5? Type1609 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType4? Type1609 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError4? Type1610 { get; set; }
+ public global::Fal.CreateApiKeyResponse6? Type1610 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType4? Type1611 { get; set; }
+ public global::Fal.CreateApiKeyResponseError5? Type1611 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse6? Type1612 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType5? Type1612 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError5? Type1613 { get; set; }
+ public global::Fal.DeleteApiKeyResponse? Type1613 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType5? Type1614 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError? Type1614 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse? Type1615 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType? Type1615 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError? Type1616 { get; set; }
+ public global::Fal.DeleteApiKeyResponse2? Type1616 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType? Type1617 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError2? Type1617 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse2? Type1618 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType2? Type1618 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError2? Type1619 { get; set; }
+ public global::Fal.DeleteApiKeyResponse3? Type1619 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType2? Type1620 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError3? Type1620 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse3? Type1621 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType3? Type1621 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError3? Type1622 { get; set; }
+ public global::Fal.DeleteApiKeyResponse4? Type1622 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType3? Type1623 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError4? Type1623 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse4? Type1624 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType4? Type1624 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError4? Type1625 { get; set; }
+ public global::Fal.GetAccountBillingResponse? Type1625 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType4? Type1626 { get; set; }
+ public global::Fal.GetAccountBillingResponseCredits? Type1626 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse5? Type1627 { get; set; }
+ public global::Fal.GetAccountBillingResponse2? Type1627 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError5? Type1628 { get; set; }
+ public global::Fal.GetAccountBillingResponseError? Type1628 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType5? Type1629 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType? Type1629 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse? Type1630 { get; set; }
+ public global::Fal.GetAccountBillingResponse3? Type1630 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError? Type1631 { get; set; }
+ public global::Fal.GetAccountBillingResponseError2? Type1631 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType? Type1632 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType2? Type1632 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse2? Type1633 { get; set; }
+ public global::Fal.GetAccountBillingResponse4? Type1633 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError2? Type1634 { get; set; }
+ public global::Fal.GetAccountBillingResponseError3? Type1634 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType2? Type1635 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType3? Type1635 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse3? Type1636 { get; set; }
+ public global::Fal.GetAccountBillingResponse5? Type1636 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError3? Type1637 { get; set; }
+ public global::Fal.GetAccountBillingResponseError4? Type1637 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType3? Type1638 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType4? Type1638 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse4? Type1639 { get; set; }
+ public global::Fal.GetAccountBillingResponse6? Type1639 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError4? Type1640 { get; set; }
+ public global::Fal.GetAccountBillingResponseError5? Type1640 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType4? Type1641 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType5? Type1641 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse? Type1642 { get; set; }
+ public global::Fal.GetFocusReportResponse? Type1642 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1643 { get; set; }
+ public global::Fal.GetFocusReportResponseError? Type1643 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseTeam? Type1644 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType? Type1644 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse2? Type1645 { get; set; }
+ public global::Fal.GetFocusReportResponse2? Type1645 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError? Type1646 { get; set; }
+ public global::Fal.GetFocusReportResponseError2? Type1646 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType? Type1647 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType2? Type1647 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse3? Type1648 { get; set; }
+ public global::Fal.GetFocusReportResponse3? Type1648 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError2? Type1649 { get; set; }
+ public global::Fal.GetFocusReportResponseError3? Type1649 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1650 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType3? Type1650 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse4? Type1651 { get; set; }
+ public global::Fal.GetFocusReportResponse4? Type1651 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError3? Type1652 { get; set; }
+ public global::Fal.GetFocusReportResponseError4? Type1652 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1653 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType4? Type1653 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse5? Type1654 { get; set; }
+ public global::Fal.GetFocusReportResponse5? Type1654 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError4? Type1655 { get; set; }
+ public global::Fal.GetFocusReportResponseError5? Type1655 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1656 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType5? Type1656 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse6? Type1657 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse? Type1657 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError5? Type1658 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError? Type1658 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1659 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType? Type1659 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse7? Type1660 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse2? Type1660 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError6? Type1661 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError2? Type1661 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1662 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType2? Type1662 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse? Type1663 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse3? Type1663 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1664 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError3? Type1664 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1665 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType3? Type1665 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1666 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse4? Type1666 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1667 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError4? Type1667 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1668 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType4? Type1668 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1669 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse? Type1669 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1670 { get; set; }
+ public global::System.Collections.Generic.IList? Type1670 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1671 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseTeam? Type1671 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse2? Type1672 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse2? Type1672 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError? Type1673 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError? Type1673 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType? Type1674 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType? Type1674 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse3? Type1675 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse3? Type1675 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError2? Type1676 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError2? Type1676 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType2? Type1677 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1677 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse4? Type1678 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse4? Type1678 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError3? Type1679 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError3? Type1679 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType3? Type1680 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1680 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse5? Type1681 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse5? Type1681 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError4? Type1682 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError4? Type1682 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType4? Type1683 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1683 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse6? Type1684 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse6? Type1684 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError5? Type1685 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError5? Type1685 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType5? Type1686 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1686 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse7? Type1687 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse7? Type1687 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError6? Type1688 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError6? Type1688 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType6? Type1689 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1689 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse? Type1690 { get; set; }
+ public global::Fal.GetOrganizationUsageResponse? Type1690 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse2? Type1691 { get; set; }
+ public global::System.Collections.Generic.IList? Type1691 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError? Type1692 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1692 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType? Type1693 { get; set; }
+ public global::System.Collections.Generic.IList? Type1693 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse3? Type1694 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1694 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError2? Type1695 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1695 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType2? Type1696 { get; set; }
+ public global::System.Collections.Generic.IList? Type1696 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1697 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1698 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse2? Type1699 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError? Type1700 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType? Type1701 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse3? Type1702 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError2? Type1703 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType2? Type1704 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse4? Type1705 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError3? Type1706 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType3? Type1707 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse5? Type1708 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError4? Type1709 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType4? Type1710 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse6? Type1711 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError5? Type1712 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType5? Type1713 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse7? Type1714 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError6? Type1715 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType6? Type1716 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse? Type1717 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse2? Type1718 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError? Type1719 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType? Type1720 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse3? Type1721 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError2? Type1722 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType2? Type1723 { get; set; }
///
///
@@ -6997,26 +7105,38 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- 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? ListType47 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType48 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType46 { get; set; }
+ public global::System.Collections.Generic.List? ListType49 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType47 { get; set; }
+ public global::System.Collections.Generic.List? ListType50 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType48 { get; set; }
+ public global::System.Collections.Generic.List? ListType51 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType49 { get; set; }
+ public global::System.Collections.Generic.List? ListType52 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType50 { get; set; }
+ public global::System.Collections.Generic.List? ListType53 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageBoundToTimeframe.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageBoundToTimeframe.g.cs
new file mode 100644
index 0000000..e94279a
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageBoundToTimeframe.g.cs
@@ -0,0 +1,53 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Whether to adjust start/end dates to align with timeframe boundaries and use exclusive end. Defaults to true. When true, dates are aligned to the start of the timeframe period (e.g., start of day) and end is made exclusive (e.g., start of next day). When false, uses exact dates provided.
+ /// Default Value: true
+ /// Example: true
+ ///
+ public enum ServerlessGetUsageBoundToTimeframe
+ {
+ ///
+ ///
+ ///
+ False,
+ ///
+ ///
+ ///
+ True,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class ServerlessGetUsageBoundToTimeframeExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this ServerlessGetUsageBoundToTimeframe value)
+ {
+ return value switch
+ {
+ ServerlessGetUsageBoundToTimeframe.False => "false",
+ ServerlessGetUsageBoundToTimeframe.True => "true",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static ServerlessGetUsageBoundToTimeframe? ToEnum(string value)
+ {
+ return value switch
+ {
+ "false" => ServerlessGetUsageBoundToTimeframe.False,
+ "true" => ServerlessGetUsageBoundToTimeframe.True,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse.Json.g.cs
new file mode 100644
index 0000000..f2aad1c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse.g.cs
new file mode 100644
index 0000000..2670e6d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse.g.cs
@@ -0,0 +1,80 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Response containing serverless usage data with pagination support
+ ///
+ public sealed partial class ServerlessGetUsageResponse
+ {
+ ///
+ /// Cursor for the next page of results, null if no more pages
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("next_cursor")]
+ public string? NextCursor { get; set; }
+
+ ///
+ /// Boolean indicating if more results are available (convenience field derived from next_cursor)
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("has_more")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required bool HasMore { get; set; }
+
+ ///
+ /// Time series usage data grouped by time bucket (when expand includes 'time_series').
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("time_series")]
+ public global::System.Collections.Generic.IList? TimeSeries { get; set; }
+
+ ///
+ /// Aggregate statistics (when expand includes 'summary')
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("summary")]
+ public global::System.Collections.Generic.IList? Summary { 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.
+ ///
+ ///
+ /// Boolean indicating if more results are available (convenience field derived from next_cursor)
+ ///
+ ///
+ /// Cursor for the next page of results, null if no more pages
+ ///
+ ///
+ /// Time series usage data grouped by time bucket (when expand includes 'time_series').
+ ///
+ ///
+ /// Aggregate statistics (when expand includes 'summary')
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public ServerlessGetUsageResponse(
+ bool hasMore,
+ string? nextCursor,
+ global::System.Collections.Generic.IList? timeSeries,
+ global::System.Collections.Generic.IList? summary)
+ {
+ this.NextCursor = nextCursor;
+ this.HasMore = hasMore;
+ this.TimeSeries = timeSeries;
+ this.Summary = summary;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse2.Json.g.cs
new file mode 100644
index 0000000..95e6387
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse2
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse2),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse2;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse2? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse2;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse2.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse2.g.cs
new file mode 100644
index 0000000..e06cad2
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse2.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetUsageResponse2
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseError 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 ServerlessGetUsageResponse2(
+ global::Fal.ServerlessGetUsageResponseError error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse2()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse3.Json.g.cs
new file mode 100644
index 0000000..841db68
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse3.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse3
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse3),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse3;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse3? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse3;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse3.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse3.g.cs
new file mode 100644
index 0000000..853458a
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse3.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetUsageResponse3
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseError2 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 ServerlessGetUsageResponse3(
+ global::Fal.ServerlessGetUsageResponseError2 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse3()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse4.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse4.Json.g.cs
new file mode 100644
index 0000000..7d8f79f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse4.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse4
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse4? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse4),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse4;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse4? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse4),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse4;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse4.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse4.g.cs
new file mode 100644
index 0000000..e6724b6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse4.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetUsageResponse4
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseError3 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 ServerlessGetUsageResponse4(
+ global::Fal.ServerlessGetUsageResponseError3 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse4()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse5.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse5.Json.g.cs
new file mode 100644
index 0000000..972126b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse5.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse5
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse5? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse5),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse5;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse5? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse5),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse5;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse5.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse5.g.cs
new file mode 100644
index 0000000..fc4b5e1
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse5.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetUsageResponse5
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseError4 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 ServerlessGetUsageResponse5(
+ global::Fal.ServerlessGetUsageResponseError4 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse5()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse6.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse6.Json.g.cs
new file mode 100644
index 0000000..38446c8
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse6.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse6
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse6? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse6),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse6;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse6? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse6),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse6;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse6.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse6.g.cs
new file mode 100644
index 0000000..44b1313
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse6.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetUsageResponse6
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseError5 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 ServerlessGetUsageResponse6(
+ global::Fal.ServerlessGetUsageResponseError5 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse6()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse7.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse7.Json.g.cs
new file mode 100644
index 0000000..1e3d356
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse7.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponse7
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponse7? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponse7),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponse7;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponse7? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponse7),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponse7;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse7.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse7.g.cs
new file mode 100644
index 0000000..34db5b0
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponse7.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class ServerlessGetUsageResponse7
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseError6 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 ServerlessGetUsageResponse7(
+ global::Fal.ServerlessGetUsageResponseError6 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public ServerlessGetUsageResponse7()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError.Json.g.cs
new file mode 100644
index 0000000..32a8001
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponseError
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponseError? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponseError),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponseError;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponseError? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponseError),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponseError;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError.g.cs
new file mode 100644
index 0000000..dce863b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class ServerlessGetUsageResponseError
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorTypeJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseErrorType 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 ServerlessGetUsageResponseError(
+ global::Fal.ServerlessGetUsageResponseErrorType 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 ServerlessGetUsageResponseError()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError2.Json.g.cs
new file mode 100644
index 0000000..4f49894
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponseError2
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponseError2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponseError2),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponseError2;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponseError2? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponseError2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponseError2;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError2.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError2.g.cs
new file mode 100644
index 0000000..6d9839b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError2.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class ServerlessGetUsageResponseError2
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType2JsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseErrorType2 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 ServerlessGetUsageResponseError2(
+ global::Fal.ServerlessGetUsageResponseErrorType2 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 ServerlessGetUsageResponseError2()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError3.Json.g.cs
new file mode 100644
index 0000000..32764ae
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError3.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponseError3
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponseError3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponseError3),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponseError3;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponseError3? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponseError3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponseError3;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError3.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError3.g.cs
new file mode 100644
index 0000000..effc78f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError3.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class ServerlessGetUsageResponseError3
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType3JsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseErrorType3 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 ServerlessGetUsageResponseError3(
+ global::Fal.ServerlessGetUsageResponseErrorType3 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 ServerlessGetUsageResponseError3()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError4.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError4.Json.g.cs
new file mode 100644
index 0000000..c795e63
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError4.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class ServerlessGetUsageResponseError4
+ {
+ ///
+ /// 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 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)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::Fal.ServerlessGetUsageResponseError4? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.ServerlessGetUsageResponseError4),
+ jsonSerializerContext) as global::Fal.ServerlessGetUsageResponseError4;
+ }
+
+ ///
+ /// 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.ServerlessGetUsageResponseError4? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ 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.ServerlessGetUsageResponseError4),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.ServerlessGetUsageResponseError4;
+ }
+
+ ///
+ /// 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)
+ {
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError4.g.cs b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError4.g.cs
new file mode 100644
index 0000000..253fa5e
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.ServerlessGetUsageResponseError4.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class ServerlessGetUsageResponseError4
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.ServerlessGetUsageResponseErrorType4JsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.ServerlessGetUsageResponseErrorType4 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