diff --git a/src/libs/Fal/Generated/Fal.IWorkflowsClient.CreateWorkflow.g.cs b/src/libs/Fal/Generated/Fal.IWorkflowsClient.CreateWorkflow.g.cs
new file mode 100644
index 0000000..d2432f8
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.IWorkflowsClient.CreateWorkflow.g.cs
@@ -0,0 +1,86 @@
+#nullable enable
+
+namespace Fal
+{
+ public partial interface IWorkflowsClient
+ {
+ ///
+ /// Create a workflow
+ /// Create a new workflow owned by the authenticated user.
+ /// **Authentication:** Required.
+ /// **Common Use Cases:**
+ /// - Save a newly built workflow
+ /// - Programmatically provision workflows
+ /// **Note:** Workflow names must be unique within your namespace. Creating a
+ /// workflow with a name you already use returns a 400 validation error.
+ ///
+ ///
+ ///
+ /// 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 CreateWorkflowAsync(
+
+ global::Fal.CreateWorkflowRequest request,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create a workflow
+ /// Create a new workflow owned by the authenticated user.
+ /// **Authentication:** Required.
+ /// **Common Use Cases:**
+ /// - Save a newly built workflow
+ /// - Programmatically provision workflows
+ /// **Note:** Workflow names must be unique within your namespace. Creating a
+ /// workflow with a name you already use returns a 400 validation error.
+ ///
+ ///
+ ///
+ /// 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> CreateWorkflowAsResponseAsync(
+
+ global::Fal.CreateWorkflowRequest request,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create a workflow
+ /// Create a new workflow owned by the authenticated user.
+ /// **Authentication:** Required.
+ /// **Common Use Cases:**
+ /// - Save a newly built workflow
+ /// - Programmatically provision workflows
+ /// **Note:** Workflow names must be unique within your namespace. Creating a
+ /// workflow with a name you already use returns a 400 validation error.
+ ///
+ ///
+ ///
+ /// Unique workflow name/slug within the user's namespace
+ /// Example: my-image-workflow
+ ///
+ ///
+ /// Human-readable workflow title
+ /// Example: My Image Generation Workflow
+ ///
+ ///
+ /// The workflow definition/configuration object
+ /// Example: {"name":"my-image-workflow","version":"1.0.0","nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"run","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}}},"output":{"image":"$node_a1b2c3.images.0.url"},"schema":{"input":{"prompt":{"type":"string"}},"output":{"image":{"type":"string"}}}}
+ ///
+ ///
+ /// Whether the workflow is publicly visible
+ /// Default Value: false
+ /// Example: false
+ ///
+ /// 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 CreateWorkflowAsync(
+ string name,
+ string title,
+ global::Fal.CreateWorkflowRequestContents contents,
+ bool? isPublic = 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.CreateWorkflowResponseErrorType.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType.g.cs
new file mode 100644
index 0000000..12b0e25
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType 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.CreateWorkflowResponseErrorTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.CreateWorkflowResponseErrorTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType2.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType2.g.cs
new file mode 100644
index 0000000..b0ac220
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType2.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType2 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.CreateWorkflowResponseErrorType2Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType2);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType2 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.CreateWorkflowResponseErrorType2Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType2Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType2Nullable.g.cs
new file mode 100644
index 0000000..fbd84ec
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType2Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType2? 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.CreateWorkflowResponseErrorType2Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType2?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType2? 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.CreateWorkflowResponseErrorType2Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType3.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType3.g.cs
new file mode 100644
index 0000000..16f2a53
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType3.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType3JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType3 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.CreateWorkflowResponseErrorType3Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType3);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType3 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.CreateWorkflowResponseErrorType3Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType3Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType3Nullable.g.cs
new file mode 100644
index 0000000..c4df34b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType3Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType3NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType3? 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.CreateWorkflowResponseErrorType3Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType3?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType3? 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.CreateWorkflowResponseErrorType3Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType4.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType4.g.cs
new file mode 100644
index 0000000..9e98926
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType4.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType4JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType4 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.CreateWorkflowResponseErrorType4Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType4);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType4 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.CreateWorkflowResponseErrorType4Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType4Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType4Nullable.g.cs
new file mode 100644
index 0000000..14fe06b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType4Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType4NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType4? 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.CreateWorkflowResponseErrorType4Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType4?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType4? 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.CreateWorkflowResponseErrorType4Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType5.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType5.g.cs
new file mode 100644
index 0000000..884ada0
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType5.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType5JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType5 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.CreateWorkflowResponseErrorType5Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType5);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType5 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.CreateWorkflowResponseErrorType5Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType5Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType5Nullable.g.cs
new file mode 100644
index 0000000..73a7a1a
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorType5Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorType5NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType5? 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.CreateWorkflowResponseErrorType5Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType5?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType5? 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.CreateWorkflowResponseErrorType5Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullable.g.cs
new file mode 100644
index 0000000..c943276
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class CreateWorkflowResponseErrorTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.CreateWorkflowResponseErrorType? 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.CreateWorkflowResponseErrorTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.CreateWorkflowResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.CreateWorkflowResponseErrorType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.CreateWorkflowResponseErrorType? 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.CreateWorkflowResponseErrorTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
index 557580f..63aca45 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
@@ -357,6 +357,26 @@ namespace Fal
typeof(global::Fal.JsonConverters.ListWorkflowsResponseErrorType4NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeNullableJsonConverter),
@@ -2135,9 +2155,15 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.EstimatePricingRequestVariant2Endpoints2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(double))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateAssetCollectionRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(string))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowRequestContents))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(object))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowRequestContentsSchema))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateAssetCollectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetCollectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionRequest))]
@@ -2149,7 +2175,6 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetRequestType), TypeInfoPropertyName = "UploadAssetRequestType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UnfavoriteAssetRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AssignAssetTagRequest))]
@@ -2394,6 +2419,23 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListWorkflowsResponse5))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListWorkflowsResponseError4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListWorkflowsResponseErrorType4), TypeInfoPropertyName = "ListWorkflowsResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseWorkflow))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseErrorType), TypeInfoPropertyName = "CreateWorkflowResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseErrorType2), TypeInfoPropertyName = "CreateWorkflowResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseErrorType3), TypeInfoPropertyName = "CreateWorkflowResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseErrorType4), TypeInfoPropertyName = "CreateWorkflowResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateWorkflowResponseErrorType5), TypeInfoPropertyName = "CreateWorkflowResponseErrorType52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetWorkflowResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetWorkflowResponseWorkflow))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetWorkflowResponse2))]
@@ -2601,28 +2643,6 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType2), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType3), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType4), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType5), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType6), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse8))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType7), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType72")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse9))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError8))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType8), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType82")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse10))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2978,6 +2998,26 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.ListWorkflowsResponseErrorType4NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeNullableJsonConverter),
@@ -4744,6 +4784,28 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType2), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType3), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType4), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType5), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType6), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType7), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse9))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType8), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType82")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponse10))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseError9))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.FavoriteAssetCollectionResponseErrorType9), TypeInfoPropertyName = "FavoriteAssetCollectionResponseErrorType92")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UnfavoriteAssetCollectionResponse))]
@@ -5222,28 +5284,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseAssetType), TypeInfoPropertyName = "UploadAssetResponseAssetType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseAssetTag))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType), TypeInfoPropertyName = "UploadAssetResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType2), TypeInfoPropertyName = "UploadAssetResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType3), TypeInfoPropertyName = "UploadAssetResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType4), TypeInfoPropertyName = "UploadAssetResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType5), TypeInfoPropertyName = "UploadAssetResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType6), TypeInfoPropertyName = "UploadAssetResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse8))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType7), TypeInfoPropertyName = "UploadAssetResponseErrorType72")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse9))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -5599,6 +5639,26 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.ListWorkflowsResponseErrorType4NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeNullableJsonConverter),
@@ -7365,6 +7425,28 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType), TypeInfoPropertyName = "UploadAssetResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType2), TypeInfoPropertyName = "UploadAssetResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType3), TypeInfoPropertyName = "UploadAssetResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType4), TypeInfoPropertyName = "UploadAssetResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType5), TypeInfoPropertyName = "UploadAssetResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType6), TypeInfoPropertyName = "UploadAssetResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType7), TypeInfoPropertyName = "UploadAssetResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse9))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseError8))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponseErrorType8), TypeInfoPropertyName = "UploadAssetResponseErrorType82")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UploadAssetResponse10))]
@@ -7669,7 +7751,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseItem))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponse2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseError))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessLogsHistoryResponseErrorType), TypeInfoPropertyName = "ServerlessLogsHistoryResponseErrorType2_3")]
@@ -7844,27 +7925,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetAccountBillingResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetAccountBillingResponseError5))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetAccountBillingResponseErrorType5), TypeInfoPropertyName = "GetAccountBillingResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType), TypeInfoPropertyName = "GetFocusReportResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType2), TypeInfoPropertyName = "GetFocusReportResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType3), TypeInfoPropertyName = "GetFocusReportResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType4), TypeInfoPropertyName = "GetFocusReportResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType5), TypeInfoPropertyName = "GetFocusReportResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseErrorType), TypeInfoPropertyName = "GetModelAccessControlsResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseErrorType2), TypeInfoPropertyName = "GetModelAccessControlsResponseErrorType22")]
internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -8220,6 +8280,26 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.ListWorkflowsResponseErrorType4NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType5NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeJsonConverter),
typeof(global::Fal.JsonConverters.GetWorkflowResponseErrorTypeNullableJsonConverter),
@@ -9986,6 +10066,27 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType), TypeInfoPropertyName = "GetFocusReportResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType2), TypeInfoPropertyName = "GetFocusReportResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType3), TypeInfoPropertyName = "GetFocusReportResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType4), TypeInfoPropertyName = "GetFocusReportResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetFocusReportResponseErrorType5), TypeInfoPropertyName = "GetFocusReportResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseErrorType), TypeInfoPropertyName = "GetModelAccessControlsResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseErrorType2), TypeInfoPropertyName = "GetModelAccessControlsResponseErrorType22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponse3))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseError3))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetModelAccessControlsResponseErrorType3), TypeInfoPropertyName = "GetModelAccessControlsResponseErrorType32")]
@@ -10310,6 +10411,16 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.ListWorkflowsResponseErrorType3NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListWorkflowsResponseErrorType4JsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListWorkflowsResponseErrorType4NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType2JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType2NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType3JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType3NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType4JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType4NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType5JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.CreateWorkflowResponseErrorType5NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.GetWorkflowResponseErrorTypeJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.GetWorkflowResponseErrorTypeNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.GetWorkflowResponseErrorType2JsonConverter());
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
index 1473dce..e871704 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
@@ -72,7 +72,7 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Fal.CreateAssetCollectionRequest? Type11 { get; set; }
+ public global::Fal.CreateWorkflowRequest? Type11 { get; set; }
///
///
///
@@ -80,6191 +80,6275 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public object? Type13 { get; set; }
+ public global::Fal.CreateWorkflowRequestContents? Type13 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionRequest? Type14 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type14 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionRequest? Type15 { get; set; }
+ public object? Type15 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionRequest? Type16 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type16 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterRequest? Type17 { get; set; }
+ public global::Fal.CreateWorkflowRequestContentsSchema? Type17 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type18 { get; set; }
+ public bool? Type18 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterRequest? Type19 { get; set; }
+ public global::Fal.CreateAssetCollectionRequest? Type19 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagRequest? Type20 { get; set; }
+ public global::Fal.UpdateAssetCollectionRequest? Type20 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetRequest? Type21 { get; set; }
+ public global::Fal.AddAssetToCollectionRequest? Type21 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagRequest? Type22 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionRequest? Type22 { get; set; }
///
///
///
- public global::Fal.UploadAssetRequest? Type23 { get; set; }
+ public global::Fal.CreateAssetCharacterRequest? Type23 { get; set; }
///
///
///
- public global::Fal.UploadAssetRequestType? Type24 { get; set; }
+ public global::System.Collections.Generic.IList? Type24 { get; set; }
///
///
///
- public bool? Type25 { get; set; }
+ public global::Fal.UpdateAssetCharacterRequest? Type25 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetRequest? Type26 { get; set; }
+ public global::Fal.CreateAssetTagRequest? Type26 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetRequest? Type27 { get; set; }
+ public global::Fal.SetAssetTagsForAssetRequest? Type27 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagRequest? Type28 { get; set; }
+ public global::Fal.UpdateAssetTagRequest? Type28 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagRequest? Type29 { get; set; }
+ public global::Fal.UploadAssetRequest? Type29 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlRequest? Type30 { get; set; }
+ public global::Fal.UploadAssetRequestType? Type30 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileRequest? Type31 { get; set; }
+ public global::Fal.FavoriteAssetRequest? Type31 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type32 { get; set; }
+ public global::Fal.UnfavoriteAssetRequest? Type32 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryRequestItem? Type33 { get; set; }
+ public global::Fal.AssignAssetTagRequest? Type33 { get; set; }
///
///
///
- public global::Fal.AnyOf>? Type34 { get; set; }
+ public global::Fal.UnassignAssetTagRequest? Type34 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryRequestItemConditionType? Type35 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlRequest? Type35 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type36 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileRequest? Type36 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRequestItem? Type37 { get; set; }
+ public global::System.Collections.Generic.IList? Type37 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRequestItemConditionType? Type38 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRequestItem? Type38 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceRequest? Type39 { get; set; }
+ public global::Fal.AnyOf>? Type39 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceRequestInstanceType? Type40 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRequestItemConditionType? Type40 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceRequestSector? Type41 { get; set; }
+ public global::System.Collections.Generic.IList? Type41 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyRequest? Type42 { get; set; }
+ public global::Fal.ServerlessLogsStreamRequestItem? Type42 { get; set; }
///
///
///
- public global::Fal.GetModelsStatus? Type43 { get; set; }
+ public global::Fal.ServerlessLogsStreamRequestItemConditionType? Type43 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type44 { get; set; }
+ public global::Fal.CreateComputeInstanceRequest? Type44 { get; set; }
///
///
///
- public global::System.DateTime? Type45 { get; set; }
+ public global::Fal.CreateComputeInstanceRequestInstanceType? Type45 { get; set; }
///
///
///
- public global::Fal.GetUsageTimeframe? Type46 { get; set; }
+ public global::Fal.CreateComputeInstanceRequestSector? Type46 { get; set; }
///
///
///
- public global::Fal.GetUsageBoundToTimeframe? Type47 { get; set; }
+ public global::Fal.CreateApiKeyRequest? Type47 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsTimeframe? Type48 { get; set; }
+ public global::Fal.GetModelsStatus? Type48 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsBoundToTimeframe? Type49 { get; set; }
+ public global::Fal.AnyOf? Type49 { get; set; }
///
///
///
- public global::System.Guid? Type50 { get; set; }
+ public global::System.DateTime? Type50 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointStatus? Type51 { get; set; }
+ public global::Fal.GetUsageTimeframe? Type51 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointSortBy? Type52 { get; set; }
+ public global::Fal.GetUsageBoundToTimeframe? Type52 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type53 { get; set; }
+ public global::Fal.GetAnalyticsTimeframe? Type53 { get; set; }
///
///
///
- public global::Fal.ListAssetsMediaTypeItem? Type54 { get; set; }
+ public global::Fal.GetAnalyticsBoundToTimeframe? Type54 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type55 { get; set; }
+ public global::System.Guid? Type55 { get; set; }
///
///
///
- public global::Fal.ListAssetsSourceItem? Type56 { get; set; }
+ public global::Fal.ListRequestsByEndpointStatus? Type56 { get; set; }
///
///
///
- public global::Fal.ListAssetsSection? Type57 { get; set; }
+ public global::Fal.ListRequestsByEndpointSortBy? Type57 { get; set; }
///
///
///
- public global::Fal.ListAssetsTagMode? Type58 { get; set; }
+ public global::System.Collections.Generic.IList? Type58 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type59 { get; set; }
+ public global::Fal.ListAssetsMediaTypeItem? Type59 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsMediaTypeItem? Type60 { get; set; }
+ public global::System.Collections.Generic.IList? Type60 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type61 { get; set; }
+ public global::Fal.ListAssetsSourceItem? Type61 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsSourceItem? Type62 { get; set; }
+ public global::Fal.ListAssetsSection? Type62 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsSection? Type63 { get; set; }
+ public global::Fal.ListAssetsTagMode? Type63 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsTagMode? Type64 { get; set; }
+ public global::System.Collections.Generic.IList? Type64 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsTimeframe? Type65 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsMediaTypeItem? Type65 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsBoundToTimeframe? Type66 { get; set; }
+ public global::System.Collections.Generic.IList? Type66 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryRunSource? Type67 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsSourceItem? Type67 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRunSource? Type68 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsSection? Type68 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointStatus? Type69 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsTagMode? Type69 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointSortBy? Type70 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsTimeframe? Type70 { get; set; }
///
///
///
- public global::Fal.GetFocusReportSource? Type71 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsBoundToTimeframe? Type71 { get; set; }
///
///
///
- public global::Fal.GetFocusReportTimeframe? Type72 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRunSource? Type72 { get; set; }
///
///
///
- public global::Fal.GetFocusReportBoundToTimeframe? Type73 { get; set; }
+ public global::Fal.ServerlessLogsStreamRunSource? Type73 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageTimeframe? Type74 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointStatus? Type74 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageBoundToTimeframe? Type75 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointSortBy? Type75 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse? Type76 { get; set; }
+ public global::Fal.GetFocusReportSource? Type76 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type77 { get; set; }
+ public global::Fal.GetFocusReportTimeframe? Type77 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModel? Type78 { get; set; }
+ public global::Fal.GetFocusReportBoundToTimeframe? Type78 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadata? Type79 { get; set; }
+ public global::Fal.GetOrganizationUsageTimeframe? Type79 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataStatus? Type80 { get; set; }
+ public global::Fal.GetOrganizationUsageBoundToTimeframe? Type80 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataLicenseType? Type81 { get; set; }
+ public global::Fal.GetModelsResponse? Type81 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataGroup? Type82 { get; set; }
+ public global::System.Collections.Generic.IList? Type82 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataKind? Type83 { get; set; }
+ public global::Fal.GetModelsResponseModel? Type83 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type84 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadata? Type84 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant1? Type85 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataStatus? Type85 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2? Type86 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataLicenseType? Type86 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type87 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataGroup? Type87 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type88 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataKind? Type88 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type89 { get; set; }
+ public global::Fal.AnyOf? Type89 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type90 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant1? Type90 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type91 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2? Type91 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse2? Type92 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type92 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError? Type93 { get; set; }
+ public global::Fal.AnyOf? Type93 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType? Type94 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type94 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse3? Type95 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type95 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError2? Type96 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type96 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType2? Type97 { get; set; }
+ public global::Fal.GetModelsResponse2? Type97 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse4? Type98 { get; set; }
+ public global::Fal.GetModelsResponseError? Type98 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError3? Type99 { get; set; }
+ public global::Fal.GetModelsResponseErrorType? Type99 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType3? Type100 { get; set; }
+ public global::Fal.GetModelsResponse3? Type100 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse5? Type101 { get; set; }
+ public global::Fal.GetModelsResponseError2? Type101 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError4? Type102 { get; set; }
+ public global::Fal.GetModelsResponseErrorType2? Type102 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType4? Type103 { get; set; }
+ public global::Fal.GetModelsResponse4? Type103 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse? Type104 { get; set; }
+ public global::Fal.GetModelsResponseError3? Type104 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type105 { get; set; }
+ public global::Fal.GetModelsResponseErrorType3? Type105 { get; set; }
///
///
///
- public global::Fal.GetPricingResponsePrice? Type106 { get; set; }
+ public global::Fal.GetModelsResponse5? Type106 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse2? Type107 { get; set; }
+ public global::Fal.GetModelsResponseError4? Type107 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError? Type108 { get; set; }
+ public global::Fal.GetModelsResponseErrorType4? Type108 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType? Type109 { get; set; }
+ public global::Fal.GetPricingResponse? Type109 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse3? Type110 { get; set; }
+ public global::System.Collections.Generic.IList? Type110 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError2? Type111 { get; set; }
+ public global::Fal.GetPricingResponsePrice? Type111 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType2? Type112 { get; set; }
+ public global::Fal.GetPricingResponse2? Type112 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse4? Type113 { get; set; }
+ public global::Fal.GetPricingResponseError? Type113 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError3? Type114 { get; set; }
+ public global::Fal.GetPricingResponseErrorType? Type114 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType3? Type115 { get; set; }
+ public global::Fal.GetPricingResponse3? Type115 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse5? Type116 { get; set; }
+ public global::Fal.GetPricingResponseError2? Type116 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError4? Type117 { get; set; }
+ public global::Fal.GetPricingResponseErrorType2? Type117 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType4? Type118 { get; set; }
+ public global::Fal.GetPricingResponse4? Type118 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse? Type119 { get; set; }
+ public global::Fal.GetPricingResponseError3? Type119 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseEstimateType? Type120 { get; set; }
+ public global::Fal.GetPricingResponseErrorType3? Type120 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse2? Type121 { get; set; }
+ public global::Fal.GetPricingResponse5? Type121 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError? Type122 { get; set; }
+ public global::Fal.GetPricingResponseError4? Type122 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType? Type123 { get; set; }
+ public global::Fal.GetPricingResponseErrorType4? Type123 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse3? Type124 { get; set; }
+ public global::Fal.EstimatePricingResponse? Type124 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError2? Type125 { get; set; }
+ public global::Fal.EstimatePricingResponseEstimateType? Type125 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType2? Type126 { get; set; }
+ public global::Fal.EstimatePricingResponse2? Type126 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse4? Type127 { get; set; }
+ public global::Fal.EstimatePricingResponseError? Type127 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError3? Type128 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType? Type128 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType3? Type129 { get; set; }
+ public global::Fal.EstimatePricingResponse3? Type129 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse5? Type130 { get; set; }
+ public global::Fal.EstimatePricingResponseError2? Type130 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError4? Type131 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType2? Type131 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType4? Type132 { get; set; }
+ public global::Fal.EstimatePricingResponse4? Type132 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse? Type133 { get; set; }
+ public global::Fal.EstimatePricingResponseError3? Type133 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type134 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType3? Type134 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerie? Type135 { get; set; }
+ public global::Fal.EstimatePricingResponse5? Type135 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type136 { get; set; }
+ public global::Fal.EstimatePricingResponseError4? Type136 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerieResult? Type137 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType4? Type137 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type138 { get; set; }
+ public global::Fal.GetUsageResponse? Type138 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseSummaryItem? Type139 { get; set; }
+ public global::System.Collections.Generic.IList? Type139 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse2? Type140 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerie? Type140 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError? Type141 { get; set; }
+ public global::System.Collections.Generic.IList? Type141 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType? Type142 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerieResult? Type142 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse3? Type143 { get; set; }
+ public global::System.Collections.Generic.IList? Type143 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError2? Type144 { get; set; }
+ public global::Fal.GetUsageResponseSummaryItem? Type144 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType2? Type145 { get; set; }
+ public global::Fal.GetUsageResponse2? Type145 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse4? Type146 { get; set; }
+ public global::Fal.GetUsageResponseError? Type146 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError3? Type147 { get; set; }
+ public global::Fal.GetUsageResponseErrorType? Type147 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType3? Type148 { get; set; }
+ public global::Fal.GetUsageResponse3? Type148 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse5? Type149 { get; set; }
+ public global::Fal.GetUsageResponseError2? Type149 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError4? Type150 { get; set; }
+ public global::Fal.GetUsageResponseErrorType2? Type150 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType4? Type151 { get; set; }
+ public global::Fal.GetUsageResponse4? Type151 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse? Type152 { get; set; }
+ public global::Fal.GetUsageResponseError3? Type152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type153 { get; set; }
+ public global::Fal.GetUsageResponseErrorType3? Type153 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerie? Type154 { get; set; }
+ public global::Fal.GetUsageResponse5? Type154 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type155 { get; set; }
+ public global::Fal.GetUsageResponseError4? Type155 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerieResult? Type156 { get; set; }
+ public global::Fal.GetUsageResponseErrorType4? Type156 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type157 { get; set; }
+ public global::Fal.GetAnalyticsResponse? Type157 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseSummaryItem? Type158 { get; set; }
+ public global::System.Collections.Generic.IList? Type158 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse2? Type159 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerie? Type159 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError? Type160 { get; set; }
+ public global::System.Collections.Generic.IList? Type160 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType? Type161 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerieResult? Type161 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse3? Type162 { get; set; }
+ public global::System.Collections.Generic.IList? Type162 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError2? Type163 { get; set; }
+ public global::Fal.GetAnalyticsResponseSummaryItem? Type163 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType2? Type164 { get; set; }
+ public global::Fal.GetAnalyticsResponse2? Type164 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse4? Type165 { get; set; }
+ public global::Fal.GetAnalyticsResponseError? Type165 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError3? Type166 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType? Type166 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType3? Type167 { get; set; }
+ public global::Fal.GetAnalyticsResponse3? Type167 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse5? Type168 { get; set; }
+ public global::Fal.GetAnalyticsResponseError2? Type168 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError4? Type169 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType2? Type169 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType4? Type170 { get; set; }
+ public global::Fal.GetAnalyticsResponse4? Type170 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse6? Type171 { get; set; }
+ public global::Fal.GetAnalyticsResponseError3? Type171 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError5? Type172 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType3? Type172 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType5? Type173 { get; set; }
+ public global::Fal.GetAnalyticsResponse5? Type173 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse7? Type174 { get; set; }
+ public global::Fal.GetAnalyticsResponseError4? Type174 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError6? Type175 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType4? Type175 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType6? Type176 { get; set; }
+ public global::Fal.GetAnalyticsResponse6? Type176 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse? Type177 { get; set; }
+ public global::Fal.GetAnalyticsResponseError5? Type177 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type178 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType5? Type178 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseBillingEvent? Type179 { get; set; }
+ public global::Fal.GetAnalyticsResponse7? Type179 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse2? Type180 { get; set; }
+ public global::Fal.GetAnalyticsResponseError6? Type180 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError? Type181 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType6? Type181 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType? Type182 { get; set; }
+ public global::Fal.GetBillingEventsResponse? Type182 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse3? Type183 { get; set; }
+ public global::System.Collections.Generic.IList? Type183 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError2? Type184 { get; set; }
+ public global::Fal.GetBillingEventsResponseBillingEvent? Type184 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType2? Type185 { get; set; }
+ public global::Fal.GetBillingEventsResponse2? Type185 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse4? Type186 { get; set; }
+ public global::Fal.GetBillingEventsResponseError? Type186 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError3? Type187 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType? Type187 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType3? Type188 { get; set; }
+ public global::Fal.GetBillingEventsResponse3? Type188 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse5? Type189 { get; set; }
+ public global::Fal.GetBillingEventsResponseError2? Type189 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError4? Type190 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType2? Type190 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType4? Type191 { get; set; }
+ public global::Fal.GetBillingEventsResponse4? Type191 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse6? Type192 { get; set; }
+ public global::Fal.GetBillingEventsResponseError3? Type192 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError5? Type193 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType3? Type193 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType5? Type194 { get; set; }
+ public global::Fal.GetBillingEventsResponse5? Type194 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse? Type195 { get; set; }
+ public global::Fal.GetBillingEventsResponseError4? Type195 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type196 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType4? Type196 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type197 { get; set; }
+ public global::Fal.GetBillingEventsResponse6? Type197 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse2? Type198 { get; set; }
+ public global::Fal.GetBillingEventsResponseError5? Type198 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError? Type199 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType5? Type199 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType? Type200 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse? Type200 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse3? Type201 { get; set; }
+ public global::System.Collections.Generic.IList? Type201 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError2? Type202 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type202 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type203 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse2? Type203 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse4? Type204 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError? Type204 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError3? Type205 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType? Type205 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type206 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse3? Type206 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse5? Type207 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError2? Type207 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError4? Type208 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type208 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type209 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse4? Type209 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse6? Type210 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError3? Type210 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError5? Type211 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type211 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type212 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse5? Type212 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse7? Type213 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError4? Type213 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError6? Type214 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type214 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type215 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse6? Type215 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse? Type216 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError5? Type216 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type217 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type217 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseItem? Type218 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse7? Type218 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse2? Type219 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError6? Type219 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError? Type220 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type220 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType? Type221 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse? Type221 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse3? Type222 { get; set; }
+ public global::System.Collections.Generic.IList? Type222 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError2? Type223 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseItem? Type223 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType2? Type224 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse2? Type224 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse4? Type225 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError? Type225 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError3? Type226 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType? Type226 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType3? Type227 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse3? Type227 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse5? Type228 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError2? Type228 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError4? Type229 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType2? Type229 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType4? Type230 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse4? Type230 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse6? Type231 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError3? Type231 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError5? Type232 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType3? Type232 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType5? Type233 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse5? Type233 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse7? Type234 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError4? Type234 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError6? Type235 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType4? Type235 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType6? Type236 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse6? Type236 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse? Type237 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError5? Type237 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type238 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType5? Type238 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseResult? Type239 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse7? Type239 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse2? Type240 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError6? Type240 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError? Type241 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType6? Type241 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType? Type242 { get; set; }
+ public global::Fal.SearchRequestsResponse? Type242 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse3? Type243 { get; set; }
+ public global::System.Collections.Generic.IList? Type243 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError2? Type244 { get; set; }
+ public global::Fal.SearchRequestsResponseResult? Type244 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType2? Type245 { get; set; }
+ public global::Fal.SearchRequestsResponse2? Type245 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse4? Type246 { get; set; }
+ public global::Fal.SearchRequestsResponseError? Type246 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError3? Type247 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType? Type247 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType3? Type248 { get; set; }
+ public global::Fal.SearchRequestsResponse3? Type248 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse5? Type249 { get; set; }
+ public global::Fal.SearchRequestsResponseError2? Type249 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError4? Type250 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType2? Type250 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType4? Type251 { get; set; }
+ public global::Fal.SearchRequestsResponse4? Type251 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse6? Type252 { get; set; }
+ public global::Fal.SearchRequestsResponseError3? Type252 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError5? Type253 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType3? Type253 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType5? Type254 { get; set; }
+ public global::Fal.SearchRequestsResponse5? Type254 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse? Type255 { get; set; }
+ public global::Fal.SearchRequestsResponseError4? Type255 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type256 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType4? Type256 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseWorkflow? Type257 { get; set; }
+ public global::Fal.SearchRequestsResponse6? Type257 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse2? Type258 { get; set; }
+ public global::Fal.SearchRequestsResponseError5? Type258 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError? Type259 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType5? Type259 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType? Type260 { get; set; }
+ public global::Fal.ListWorkflowsResponse? Type260 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse3? Type261 { get; set; }
+ public global::System.Collections.Generic.IList? Type261 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError2? Type262 { get; set; }
+ public global::Fal.ListWorkflowsResponseWorkflow? Type262 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType2? Type263 { get; set; }
+ public global::Fal.ListWorkflowsResponse2? Type263 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse4? Type264 { get; set; }
+ public global::Fal.ListWorkflowsResponseError? Type264 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError3? Type265 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType? Type265 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType3? Type266 { get; set; }
+ public global::Fal.ListWorkflowsResponse3? Type266 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse5? Type267 { get; set; }
+ public global::Fal.ListWorkflowsResponseError2? Type267 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError4? Type268 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType2? Type268 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType4? Type269 { get; set; }
+ public global::Fal.ListWorkflowsResponse4? Type269 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse? Type270 { get; set; }
+ public global::Fal.ListWorkflowsResponseError3? Type270 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseWorkflow? Type271 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType3? Type271 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse2? Type272 { get; set; }
+ public global::Fal.ListWorkflowsResponse5? Type272 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError? Type273 { get; set; }
+ public global::Fal.ListWorkflowsResponseError4? Type273 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType? Type274 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType4? Type274 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse3? Type275 { get; set; }
+ public global::Fal.CreateWorkflowResponse? Type275 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError2? Type276 { get; set; }
+ public global::Fal.CreateWorkflowResponseWorkflow? Type276 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType2? Type277 { get; set; }
+ public global::Fal.CreateWorkflowResponse2? Type277 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse4? Type278 { get; set; }
+ public global::Fal.CreateWorkflowResponseError? Type278 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError3? Type279 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType? Type279 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType3? Type280 { get; set; }
+ public global::Fal.CreateWorkflowResponse3? Type280 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse5? Type281 { get; set; }
+ public global::Fal.CreateWorkflowResponseError2? Type281 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError4? Type282 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType2? Type282 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType4? Type283 { get; set; }
+ public global::Fal.CreateWorkflowResponse4? Type283 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse6? Type284 { get; set; }
+ public global::Fal.CreateWorkflowResponseError3? Type284 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError5? Type285 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType3? Type285 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType5? Type286 { get; set; }
+ public global::Fal.CreateWorkflowResponse5? Type286 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse7? Type287 { get; set; }
+ public global::Fal.CreateWorkflowResponseError4? Type287 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError6? Type288 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType4? Type288 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType6? Type289 { get; set; }
+ public global::Fal.CreateWorkflowResponse6? Type289 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse? Type290 { get; set; }
+ public global::Fal.CreateWorkflowResponseError5? Type290 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type291 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType5? Type291 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAsset? Type292 { get; set; }
+ public global::Fal.GetWorkflowResponse? Type292 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetType? Type293 { get; set; }
+ public global::Fal.GetWorkflowResponseWorkflow? Type293 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type294 { get; set; }
+ public global::Fal.GetWorkflowResponse2? Type294 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetTag? Type295 { get; set; }
+ public global::Fal.GetWorkflowResponseError? Type295 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse2? Type296 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType? Type296 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError? Type297 { get; set; }
+ public global::Fal.GetWorkflowResponse3? Type297 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType? Type298 { get; set; }
+ public global::Fal.GetWorkflowResponseError2? Type298 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse3? Type299 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType2? Type299 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError2? Type300 { get; set; }
+ public global::Fal.GetWorkflowResponse4? Type300 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType2? Type301 { get; set; }
+ public global::Fal.GetWorkflowResponseError3? Type301 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse4? Type302 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType3? Type302 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError3? Type303 { get; set; }
+ public global::Fal.GetWorkflowResponse5? Type303 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType3? Type304 { get; set; }
+ public global::Fal.GetWorkflowResponseError4? Type304 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse5? Type305 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType4? Type305 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError4? Type306 { get; set; }
+ public global::Fal.GetWorkflowResponse6? Type306 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType4? Type307 { get; set; }
+ public global::Fal.GetWorkflowResponseError5? Type307 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse6? Type308 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType5? Type308 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError5? Type309 { get; set; }
+ public global::Fal.GetWorkflowResponse7? Type309 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType5? Type310 { get; set; }
+ public global::Fal.GetWorkflowResponseError6? Type310 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse7? Type311 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType6? Type311 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError6? Type312 { get; set; }
+ public global::Fal.ListAssetsResponse? Type312 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType6? Type313 { get; set; }
+ public global::System.Collections.Generic.IList? Type313 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse8? Type314 { get; set; }
+ public global::Fal.ListAssetsResponseAsset? Type314 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError7? Type315 { get; set; }
+ public global::Fal.ListAssetsResponseAssetType? Type315 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType7? Type316 { get; set; }
+ public global::System.Collections.Generic.IList? Type316 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse9? Type317 { get; set; }
+ public global::Fal.ListAssetsResponseAssetTag? Type317 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError8? Type318 { get; set; }
+ public global::Fal.ListAssetsResponse2? Type318 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType8? Type319 { get; set; }
+ public global::Fal.ListAssetsResponseError? Type319 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse10? Type320 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType? Type320 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError9? Type321 { get; set; }
+ public global::Fal.ListAssetsResponse3? Type321 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType9? Type322 { get; set; }
+ public global::Fal.ListAssetsResponseError2? Type322 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse? Type323 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType2? Type323 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type324 { get; set; }
+ public global::Fal.ListAssetsResponse4? Type324 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollection? Type325 { get; set; }
+ public global::Fal.ListAssetsResponseError3? Type325 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollectionType? Type326 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType3? Type326 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse2? Type327 { get; set; }
+ public global::Fal.ListAssetsResponse5? Type327 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError? Type328 { get; set; }
+ public global::Fal.ListAssetsResponseError4? Type328 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType? Type329 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType4? Type329 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse3? Type330 { get; set; }
+ public global::Fal.ListAssetsResponse6? Type330 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError2? Type331 { get; set; }
+ public global::Fal.ListAssetsResponseError5? Type331 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType2? Type332 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType5? Type332 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse4? Type333 { get; set; }
+ public global::Fal.ListAssetsResponse7? Type333 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError3? Type334 { get; set; }
+ public global::Fal.ListAssetsResponseError6? Type334 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType3? Type335 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType6? Type335 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse5? Type336 { get; set; }
+ public global::Fal.ListAssetsResponse8? Type336 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError4? Type337 { get; set; }
+ public global::Fal.ListAssetsResponseError7? Type337 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType4? Type338 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType7? Type338 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse6? Type339 { get; set; }
+ public global::Fal.ListAssetsResponse9? Type339 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError5? Type340 { get; set; }
+ public global::Fal.ListAssetsResponseError8? Type340 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType5? Type341 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType8? Type341 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse7? Type342 { get; set; }
+ public global::Fal.ListAssetsResponse10? Type342 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError6? Type343 { get; set; }
+ public global::Fal.ListAssetsResponseError9? Type343 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType6? Type344 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType9? Type344 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse8? Type345 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse? Type345 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError7? Type346 { get; set; }
+ public global::System.Collections.Generic.IList? Type346 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType7? Type347 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollection? Type347 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse9? Type348 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollectionType? Type348 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError8? Type349 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse2? Type349 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType8? Type350 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError? Type350 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse10? Type351 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType? Type351 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError9? Type352 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse3? Type352 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType9? Type353 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError2? Type353 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse? Type354 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType2? Type354 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollection? Type355 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse4? Type355 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollectionType? Type356 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError3? Type356 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse2? Type357 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType3? Type357 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError? Type358 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse5? Type358 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType? Type359 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError4? Type359 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse3? Type360 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType4? Type360 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError2? Type361 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse6? Type361 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType2? Type362 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError5? Type362 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse4? Type363 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType5? Type363 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError3? Type364 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse7? Type364 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType3? Type365 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError6? Type365 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse5? Type366 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType6? Type366 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError4? Type367 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse8? Type367 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType4? Type368 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError7? Type368 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse6? Type369 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType7? Type369 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError5? Type370 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse9? Type370 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType5? Type371 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError8? Type371 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse7? Type372 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType8? Type372 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError6? Type373 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse10? Type373 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType6? Type374 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError9? Type374 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse8? Type375 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType9? Type375 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError7? Type376 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse? Type376 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType7? Type377 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollection? Type377 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse9? Type378 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollectionType? Type378 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError8? Type379 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse2? Type379 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType8? Type380 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError? Type380 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse10? Type381 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType? Type381 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError9? Type382 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse3? Type382 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType9? Type383 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError2? Type383 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse? Type384 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType2? Type384 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollection? Type385 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse4? Type385 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollectionType? Type386 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError3? Type386 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse2? Type387 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType3? Type387 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError? Type388 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse5? Type388 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType? Type389 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError4? Type389 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse3? Type390 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType4? Type390 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError2? Type391 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse6? Type391 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType2? Type392 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError5? Type392 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse4? Type393 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType5? Type393 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError3? Type394 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse7? Type394 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType3? Type395 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError6? Type395 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse5? Type396 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType6? Type396 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError4? Type397 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse8? Type397 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType4? Type398 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError7? Type398 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse6? Type399 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType7? Type399 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError5? Type400 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse9? Type400 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType5? Type401 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError8? Type401 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse7? Type402 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType8? Type402 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError6? Type403 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse10? Type403 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType6? Type404 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError9? Type404 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse8? Type405 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType9? Type405 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError7? Type406 { get; set; }
+ public global::Fal.GetAssetCollectionResponse? Type406 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType7? Type407 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollection? Type407 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse9? Type408 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollectionType? Type408 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError8? Type409 { get; set; }
+ public global::Fal.GetAssetCollectionResponse2? Type409 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType8? Type410 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError? Type410 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse10? Type411 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType? Type411 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError9? Type412 { get; set; }
+ public global::Fal.GetAssetCollectionResponse3? Type412 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType9? Type413 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError2? Type413 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse? Type414 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType2? Type414 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollection? Type415 { get; set; }
+ public global::Fal.GetAssetCollectionResponse4? Type415 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollectionType? Type416 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError3? Type416 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse2? Type417 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType3? Type417 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError? Type418 { get; set; }
+ public global::Fal.GetAssetCollectionResponse5? Type418 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType? Type419 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError4? Type419 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse3? Type420 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType4? Type420 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError2? Type421 { get; set; }
+ public global::Fal.GetAssetCollectionResponse6? Type421 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType2? Type422 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError5? Type422 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse4? Type423 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType5? Type423 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError3? Type424 { get; set; }
+ public global::Fal.GetAssetCollectionResponse7? Type424 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType3? Type425 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError6? Type425 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse5? Type426 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType6? Type426 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError4? Type427 { get; set; }
+ public global::Fal.GetAssetCollectionResponse8? Type427 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType4? Type428 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError7? Type428 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse6? Type429 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType7? Type429 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError5? Type430 { get; set; }
+ public global::Fal.GetAssetCollectionResponse9? Type430 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType5? Type431 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError8? Type431 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse7? Type432 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType8? Type432 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError6? Type433 { get; set; }
+ public global::Fal.GetAssetCollectionResponse10? Type433 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType6? Type434 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError9? Type434 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse8? Type435 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType9? Type435 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError7? Type436 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse? Type436 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType7? Type437 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollection? Type437 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse9? Type438 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollectionType? Type438 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError8? Type439 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse2? Type439 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType8? Type440 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError? Type440 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse10? Type441 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType? Type441 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError9? Type442 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse3? Type442 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType9? Type443 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError2? Type443 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse? Type444 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType2? Type444 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError? Type445 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse4? Type445 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType? Type446 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError3? Type446 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse2? Type447 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType3? Type447 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError2? Type448 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse5? Type448 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType2? Type449 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError4? Type449 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse3? Type450 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType4? Type450 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError3? Type451 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse6? Type451 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType3? Type452 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError5? Type452 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse4? Type453 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType5? Type453 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError4? Type454 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse7? Type454 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType4? Type455 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError6? Type455 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse5? Type456 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType6? Type456 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError5? Type457 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse8? Type457 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType5? Type458 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError7? Type458 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse6? Type459 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType7? Type459 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError6? Type460 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse9? Type460 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType6? Type461 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError8? Type461 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse7? Type462 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType8? Type462 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError7? Type463 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse10? Type463 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType7? Type464 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError9? Type464 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse8? Type465 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType9? Type465 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError8? Type466 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse? Type466 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType8? Type467 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError? Type467 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse9? Type468 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType? Type468 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError9? Type469 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse2? Type469 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType9? Type470 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError2? Type470 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse? Type471 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType2? Type471 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollection? Type472 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse3? Type472 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type473 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError3? Type473 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse2? Type474 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType3? Type474 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError? Type475 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse4? Type475 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType? Type476 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError4? Type476 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse3? Type477 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType4? Type477 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError2? Type478 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse5? Type478 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type479 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError5? Type479 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse4? Type480 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType5? Type480 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError3? Type481 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse6? Type481 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type482 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError6? Type482 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse5? Type483 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType6? Type483 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError4? Type484 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse7? Type484 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type485 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError7? Type485 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse6? Type486 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType7? Type486 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError5? Type487 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse8? Type487 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type488 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError8? Type488 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse7? Type489 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType8? Type489 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError6? Type490 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse9? Type490 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type491 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError9? Type491 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse8? Type492 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType9? Type492 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError7? Type493 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse? Type493 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type494 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollection? Type494 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse9? Type495 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type495 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError8? Type496 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse2? Type496 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type497 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError? Type497 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse10? Type498 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType? Type498 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError9? Type499 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse3? Type499 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type500 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError2? Type500 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse? Type501 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type501 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type502 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse4? Type502 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type503 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError3? Type503 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse2? Type504 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type504 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError? Type505 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse5? Type505 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type506 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError4? Type506 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse3? Type507 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type507 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError2? Type508 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse6? Type508 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type509 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError5? Type509 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse4? Type510 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type510 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError3? Type511 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse7? Type511 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type512 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError6? Type512 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse5? Type513 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type513 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError4? Type514 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse8? Type514 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type515 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError7? Type515 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse6? Type516 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type516 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError5? Type517 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse9? Type517 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type518 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError8? Type518 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse7? Type519 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type519 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError6? Type520 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse10? Type520 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type521 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError9? Type521 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse8? Type522 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type522 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError7? Type523 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse? Type523 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type524 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type524 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse9? Type525 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type525 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError8? Type526 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse2? Type526 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type527 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError? Type527 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse10? Type528 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type528 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError9? Type529 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse3? Type529 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type530 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError2? Type530 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse? Type531 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type531 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type532 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse4? Type532 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAsset? Type533 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError3? Type533 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type534 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type534 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type535 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse5? Type535 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type536 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError4? Type536 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse2? Type537 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type537 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError? Type538 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse6? Type538 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type539 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError5? Type539 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse3? Type540 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type540 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError2? Type541 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse7? Type541 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type542 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError6? Type542 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse4? Type543 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type543 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError3? Type544 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse8? Type544 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type545 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError7? Type545 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse5? Type546 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type546 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError4? Type547 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse9? Type547 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type548 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError8? Type548 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse6? Type549 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type549 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError5? Type550 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse10? Type550 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type551 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError9? Type551 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse7? Type552 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type552 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError6? Type553 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse? Type553 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type554 { get; set; }
+ public global::System.Collections.Generic.IList? Type554 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse8? Type555 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAsset? Type555 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError7? Type556 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type556 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type557 { get; set; }
+ public global::System.Collections.Generic.IList? Type557 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse9? Type558 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type558 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError8? Type559 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse2? Type559 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type560 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError? Type560 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse10? Type561 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type561 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError9? Type562 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse3? Type562 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type563 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError2? Type563 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse? Type564 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type564 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse2? Type565 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse4? Type565 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError? Type566 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError3? Type566 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType? Type567 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type567 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse3? Type568 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse5? Type568 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError2? Type569 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError4? Type569 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType2? Type570 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type570 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse4? Type571 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse6? Type571 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError3? Type572 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError5? Type572 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType3? Type573 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type573 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse5? Type574 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse7? Type574 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError4? Type575 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError6? Type575 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType4? Type576 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type576 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse6? Type577 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse8? Type577 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError5? Type578 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError7? Type578 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType5? Type579 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type579 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse7? Type580 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse9? Type580 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError6? Type581 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError8? Type581 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType6? Type582 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type582 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse8? Type583 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse10? Type583 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError7? Type584 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError9? Type584 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType7? Type585 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type585 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse9? Type586 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse? Type586 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError8? Type587 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse2? Type587 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType8? Type588 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError? Type588 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse10? Type589 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType? Type589 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError9? Type590 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse3? Type590 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType9? Type591 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError2? Type591 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse? Type592 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType2? Type592 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError? Type593 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse4? Type593 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type594 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError3? Type594 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse2? Type595 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType3? Type595 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError2? Type596 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse5? Type596 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type597 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError4? Type597 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse3? Type598 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType4? Type598 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError3? Type599 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse6? Type599 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type600 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError5? Type600 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse4? Type601 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType5? Type601 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError4? Type602 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse7? Type602 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type603 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError6? Type603 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse5? Type604 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType6? Type604 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError5? Type605 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse8? Type605 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type606 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError7? Type606 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse6? Type607 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType7? Type607 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError6? Type608 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse9? Type608 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type609 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError8? Type609 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse7? Type610 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType8? Type610 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError7? Type611 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse10? Type611 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type612 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError9? Type612 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse8? Type613 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType9? Type613 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError8? Type614 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse? Type614 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type615 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError? Type615 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse9? Type616 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type616 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError9? Type617 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse2? Type617 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type618 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError2? Type618 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse? Type619 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type619 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type620 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse3? Type620 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacter? Type621 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError3? Type621 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacterType? Type622 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type622 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse2? Type623 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse4? Type623 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError? Type624 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError4? Type624 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType? Type625 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type625 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse3? Type626 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse5? Type626 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError2? Type627 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError5? Type627 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType2? Type628 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type628 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse4? Type629 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse6? Type629 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError3? Type630 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError6? Type630 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType3? Type631 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type631 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse5? Type632 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse7? Type632 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError4? Type633 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError7? Type633 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType4? Type634 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type634 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse6? Type635 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse8? Type635 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError5? Type636 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError8? Type636 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType5? Type637 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type637 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse7? Type638 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse9? Type638 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError6? Type639 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError9? Type639 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType6? Type640 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type640 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse8? Type641 { get; set; }
+ public global::Fal.ListAssetCharactersResponse? Type641 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError7? Type642 { get; set; }
+ public global::System.Collections.Generic.IList? Type642 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType7? Type643 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacter? Type643 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse9? Type644 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacterType? Type644 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError8? Type645 { get; set; }
+ public global::Fal.ListAssetCharactersResponse2? Type645 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType8? Type646 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError? Type646 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse10? Type647 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType? Type647 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError9? Type648 { get; set; }
+ public global::Fal.ListAssetCharactersResponse3? Type648 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType9? Type649 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError2? Type649 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse? Type650 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType2? Type650 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacter? Type651 { get; set; }
+ public global::Fal.ListAssetCharactersResponse4? Type651 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacterType? Type652 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError3? Type652 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse2? Type653 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType3? Type653 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError? Type654 { get; set; }
+ public global::Fal.ListAssetCharactersResponse5? Type654 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType? Type655 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError4? Type655 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse3? Type656 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType4? Type656 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError2? Type657 { get; set; }
+ public global::Fal.ListAssetCharactersResponse6? Type657 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType2? Type658 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError5? Type658 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse4? Type659 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType5? Type659 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError3? Type660 { get; set; }
+ public global::Fal.ListAssetCharactersResponse7? Type660 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType3? Type661 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError6? Type661 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse5? Type662 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType6? Type662 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError4? Type663 { get; set; }
+ public global::Fal.ListAssetCharactersResponse8? Type663 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType4? Type664 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError7? Type664 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse6? Type665 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType7? Type665 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError5? Type666 { get; set; }
+ public global::Fal.ListAssetCharactersResponse9? Type666 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType5? Type667 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError8? Type667 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse7? Type668 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType8? Type668 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError6? Type669 { get; set; }
+ public global::Fal.ListAssetCharactersResponse10? Type669 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType6? Type670 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError9? Type670 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse8? Type671 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType9? Type671 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError7? Type672 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse? Type672 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType7? Type673 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacter? Type673 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse9? Type674 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacterType? Type674 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError8? Type675 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse2? Type675 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType8? Type676 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError? Type676 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse10? Type677 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType? Type677 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError9? Type678 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse3? Type678 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType9? Type679 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError2? Type679 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse? Type680 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType2? Type680 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacter? Type681 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse4? Type681 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacterType? Type682 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError3? Type682 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse2? Type683 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType3? Type683 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError? Type684 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse5? Type684 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType? Type685 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError4? Type685 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse3? Type686 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType4? Type686 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError2? Type687 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse6? Type687 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType2? Type688 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError5? Type688 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse4? Type689 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType5? Type689 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError3? Type690 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse7? Type690 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType3? Type691 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError6? Type691 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse5? Type692 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType6? Type692 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError4? Type693 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse8? Type693 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType4? Type694 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError7? Type694 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse6? Type695 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType7? Type695 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError5? Type696 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse9? Type696 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType5? Type697 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError8? Type697 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse7? Type698 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType8? Type698 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError6? Type699 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse10? Type699 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType6? Type700 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError9? Type700 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse8? Type701 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType9? Type701 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError7? Type702 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse? Type702 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType7? Type703 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacter? Type703 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse9? Type704 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacterType? Type704 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError8? Type705 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse2? Type705 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType8? Type706 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError? Type706 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse10? Type707 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType? Type707 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError9? Type708 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse3? Type708 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType9? Type709 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError2? Type709 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse? Type710 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType2? Type710 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacter? Type711 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse4? Type711 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacterType? Type712 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError3? Type712 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse2? Type713 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType3? Type713 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError? Type714 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse5? Type714 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType? Type715 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError4? Type715 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse3? Type716 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType4? Type716 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError2? Type717 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse6? Type717 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType2? Type718 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError5? Type718 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse4? Type719 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType5? Type719 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError3? Type720 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse7? Type720 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType3? Type721 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError6? Type721 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse5? Type722 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType6? Type722 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError4? Type723 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse8? Type723 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType4? Type724 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError7? Type724 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse6? Type725 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType7? Type725 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError5? Type726 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse9? Type726 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType5? Type727 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError8? Type727 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse7? Type728 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType8? Type728 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError6? Type729 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse10? Type729 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType6? Type730 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError9? Type730 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse8? Type731 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType9? Type731 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError7? Type732 { get; set; }
+ public global::Fal.GetAssetCharacterResponse? Type732 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType7? Type733 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacter? Type733 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse9? Type734 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacterType? Type734 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError8? Type735 { get; set; }
+ public global::Fal.GetAssetCharacterResponse2? Type735 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType8? Type736 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError? Type736 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse10? Type737 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType? Type737 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError9? Type738 { get; set; }
+ public global::Fal.GetAssetCharacterResponse3? Type738 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType9? Type739 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError2? Type739 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse? Type740 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType2? Type740 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError? Type741 { get; set; }
+ public global::Fal.GetAssetCharacterResponse4? Type741 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType? Type742 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError3? Type742 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse2? Type743 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType3? Type743 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError2? Type744 { get; set; }
+ public global::Fal.GetAssetCharacterResponse5? Type744 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType2? Type745 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError4? Type745 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse3? Type746 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType4? Type746 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError3? Type747 { get; set; }
+ public global::Fal.GetAssetCharacterResponse6? Type747 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType3? Type748 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError5? Type748 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse4? Type749 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType5? Type749 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError4? Type750 { get; set; }
+ public global::Fal.GetAssetCharacterResponse7? Type750 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType4? Type751 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError6? Type751 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse5? Type752 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType6? Type752 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError5? Type753 { get; set; }
+ public global::Fal.GetAssetCharacterResponse8? Type753 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType5? Type754 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError7? Type754 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse6? Type755 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType7? Type755 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError6? Type756 { get; set; }
+ public global::Fal.GetAssetCharacterResponse9? Type756 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType6? Type757 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError8? Type757 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse7? Type758 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType8? Type758 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError7? Type759 { get; set; }
+ public global::Fal.GetAssetCharacterResponse10? Type759 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType7? Type760 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError9? Type760 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse8? Type761 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType9? Type761 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError8? Type762 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse? Type762 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType8? Type763 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError? Type763 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse9? Type764 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType? Type764 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError9? Type765 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse2? Type765 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType9? Type766 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError2? Type766 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse? Type767 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType2? Type767 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacter? Type768 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse3? Type768 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type769 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError3? Type769 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse2? Type770 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType3? Type770 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError? Type771 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse4? Type771 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType? Type772 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError4? Type772 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse3? Type773 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType4? Type773 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError2? Type774 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse5? Type774 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type775 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError5? Type775 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse4? Type776 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType5? Type776 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError3? Type777 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse6? Type777 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type778 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError6? Type778 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse5? Type779 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType6? Type779 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError4? Type780 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse7? Type780 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type781 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError7? Type781 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse6? Type782 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType7? Type782 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError5? Type783 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse8? Type783 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type784 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError8? Type784 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse7? Type785 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType8? Type785 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError6? Type786 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse9? Type786 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type787 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError9? Type787 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse8? Type788 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType9? Type788 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError7? Type789 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse? Type789 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type790 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacter? Type790 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse9? Type791 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type791 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError8? Type792 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse2? Type792 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type793 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError? Type793 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse10? Type794 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType? Type794 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError9? Type795 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse3? Type795 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type796 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError2? Type796 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse? Type797 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type797 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type798 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse4? Type798 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type799 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError3? Type799 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse2? Type800 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type800 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError? Type801 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse5? Type801 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type802 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError4? Type802 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse3? Type803 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type803 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError2? Type804 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse6? Type804 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type805 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError5? Type805 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse4? Type806 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type806 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError3? Type807 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse7? Type807 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type808 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError6? Type808 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse5? Type809 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type809 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError4? Type810 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse8? Type810 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type811 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError7? Type811 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse6? Type812 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type812 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError5? Type813 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse9? Type813 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type814 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError8? Type814 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse7? Type815 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type815 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError6? Type816 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse10? Type816 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type817 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError9? Type817 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse8? Type818 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type818 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError7? Type819 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse? Type819 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type820 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type820 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse9? Type821 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type821 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError8? Type822 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse2? Type822 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type823 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError? Type823 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse10? Type824 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type824 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError9? Type825 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse3? Type825 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type826 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError2? Type826 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse? Type827 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type827 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type828 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse4? Type828 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseTag? Type829 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError3? Type829 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse2? Type830 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type830 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError? Type831 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse5? Type831 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType? Type832 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError4? Type832 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse3? Type833 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type833 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError2? Type834 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse6? Type834 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType2? Type835 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError5? Type835 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse4? Type836 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type836 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError3? Type837 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse7? Type837 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType3? Type838 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError6? Type838 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse5? Type839 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type839 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError4? Type840 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse8? Type840 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType4? Type841 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError7? Type841 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse6? Type842 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type842 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError5? Type843 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse9? Type843 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType5? Type844 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError8? Type844 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse7? Type845 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type845 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError6? Type846 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse10? Type846 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType6? Type847 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError9? Type847 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse8? Type848 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type848 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError7? Type849 { get; set; }
+ public global::Fal.ListAssetTagsResponse? Type849 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType7? Type850 { get; set; }
+ public global::System.Collections.Generic.IList? Type850 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse9? Type851 { get; set; }
+ public global::Fal.ListAssetTagsResponseTag? Type851 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError8? Type852 { get; set; }
+ public global::Fal.ListAssetTagsResponse2? Type852 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType8? Type853 { get; set; }
+ public global::Fal.ListAssetTagsResponseError? Type853 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse10? Type854 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType? Type854 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError9? Type855 { get; set; }
+ public global::Fal.ListAssetTagsResponse3? Type855 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType9? Type856 { get; set; }
+ public global::Fal.ListAssetTagsResponseError2? Type856 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse? Type857 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType2? Type857 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseTag? Type858 { get; set; }
+ public global::Fal.ListAssetTagsResponse4? Type858 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse2? Type859 { get; set; }
+ public global::Fal.ListAssetTagsResponseError3? Type859 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError? Type860 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType3? Type860 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType? Type861 { get; set; }
+ public global::Fal.ListAssetTagsResponse5? Type861 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse3? Type862 { get; set; }
+ public global::Fal.ListAssetTagsResponseError4? Type862 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError2? Type863 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType4? Type863 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType2? Type864 { get; set; }
+ public global::Fal.ListAssetTagsResponse6? Type864 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse4? Type865 { get; set; }
+ public global::Fal.ListAssetTagsResponseError5? Type865 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError3? Type866 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType5? Type866 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType3? Type867 { get; set; }
+ public global::Fal.ListAssetTagsResponse7? Type867 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse5? Type868 { get; set; }
+ public global::Fal.ListAssetTagsResponseError6? Type868 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError4? Type869 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType6? Type869 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType4? Type870 { get; set; }
+ public global::Fal.ListAssetTagsResponse8? Type870 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse6? Type871 { get; set; }
+ public global::Fal.ListAssetTagsResponseError7? Type871 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError5? Type872 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType7? Type872 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType5? Type873 { get; set; }
+ public global::Fal.ListAssetTagsResponse9? Type873 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse7? Type874 { get; set; }
+ public global::Fal.ListAssetTagsResponseError8? Type874 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError6? Type875 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType8? Type875 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType6? Type876 { get; set; }
+ public global::Fal.ListAssetTagsResponse10? Type876 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse8? Type877 { get; set; }
+ public global::Fal.ListAssetTagsResponseError9? Type877 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError7? Type878 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType9? Type878 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType7? Type879 { get; set; }
+ public global::Fal.CreateAssetTagResponse? Type879 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse9? Type880 { get; set; }
+ public global::Fal.CreateAssetTagResponseTag? Type880 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError8? Type881 { get; set; }
+ public global::Fal.CreateAssetTagResponse2? Type881 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType8? Type882 { get; set; }
+ public global::Fal.CreateAssetTagResponseError? Type882 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse10? Type883 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType? Type883 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError9? Type884 { get; set; }
+ public global::Fal.CreateAssetTagResponse3? Type884 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType9? Type885 { get; set; }
+ public global::Fal.CreateAssetTagResponseError2? Type885 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse? Type886 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType2? Type886 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type887 { get; set; }
+ public global::Fal.CreateAssetTagResponse4? Type887 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseTag? Type888 { get; set; }
+ public global::Fal.CreateAssetTagResponseError3? Type888 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse2? Type889 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType3? Type889 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError? Type890 { get; set; }
+ public global::Fal.CreateAssetTagResponse5? Type890 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType? Type891 { get; set; }
+ public global::Fal.CreateAssetTagResponseError4? Type891 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse3? Type892 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType4? Type892 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError2? Type893 { get; set; }
+ public global::Fal.CreateAssetTagResponse6? Type893 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type894 { get; set; }
+ public global::Fal.CreateAssetTagResponseError5? Type894 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse4? Type895 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType5? Type895 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError3? Type896 { get; set; }
+ public global::Fal.CreateAssetTagResponse7? Type896 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type897 { get; set; }
+ public global::Fal.CreateAssetTagResponseError6? Type897 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse5? Type898 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType6? Type898 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError4? Type899 { get; set; }
+ public global::Fal.CreateAssetTagResponse8? Type899 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type900 { get; set; }
+ public global::Fal.CreateAssetTagResponseError7? Type900 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse6? Type901 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType7? Type901 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError5? Type902 { get; set; }
+ public global::Fal.CreateAssetTagResponse9? Type902 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type903 { get; set; }
+ public global::Fal.CreateAssetTagResponseError8? Type903 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse7? Type904 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType8? Type904 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError6? Type905 { get; set; }
+ public global::Fal.CreateAssetTagResponse10? Type905 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type906 { get; set; }
+ public global::Fal.CreateAssetTagResponseError9? Type906 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse8? Type907 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType9? Type907 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError7? Type908 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse? Type908 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type909 { get; set; }
+ public global::System.Collections.Generic.IList? Type909 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse9? Type910 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseTag? Type910 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError8? Type911 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse2? Type911 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type912 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError? Type912 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse10? Type913 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType? Type913 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError9? Type914 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse3? Type914 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type915 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError2? Type915 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse? Type916 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type916 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseTag? Type917 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse4? Type917 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse2? Type918 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError3? Type918 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError? Type919 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type919 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType? Type920 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse5? Type920 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse3? Type921 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError4? Type921 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError2? Type922 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type922 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType2? Type923 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse6? Type923 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse4? Type924 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError5? Type924 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError3? Type925 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type925 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType3? Type926 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse7? Type926 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse5? Type927 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError6? Type927 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError4? Type928 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type928 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType4? Type929 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse8? Type929 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse6? Type930 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError7? Type930 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError5? Type931 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type931 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType5? Type932 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse9? Type932 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse7? Type933 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError8? Type933 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError6? Type934 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type934 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType6? Type935 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse10? Type935 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse8? Type936 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError9? Type936 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError7? Type937 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type937 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType7? Type938 { get; set; }
+ public global::Fal.UpdateAssetTagResponse? Type938 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse9? Type939 { get; set; }
+ public global::Fal.UpdateAssetTagResponseTag? Type939 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError8? Type940 { get; set; }
+ public global::Fal.UpdateAssetTagResponse2? Type940 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType8? Type941 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError? Type941 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse10? Type942 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType? Type942 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError9? Type943 { get; set; }
+ public global::Fal.UpdateAssetTagResponse3? Type943 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType9? Type944 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError2? Type944 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse? Type945 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType2? Type945 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError? Type946 { get; set; }
+ public global::Fal.UpdateAssetTagResponse4? Type946 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType? Type947 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError3? Type947 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse2? Type948 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType3? Type948 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError2? Type949 { get; set; }
+ public global::Fal.UpdateAssetTagResponse5? Type949 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType2? Type950 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError4? Type950 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse3? Type951 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType4? Type951 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError3? Type952 { get; set; }
+ public global::Fal.UpdateAssetTagResponse6? Type952 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType3? Type953 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError5? Type953 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse4? Type954 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType5? Type954 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError4? Type955 { get; set; }
+ public global::Fal.UpdateAssetTagResponse7? Type955 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType4? Type956 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError6? Type956 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse5? Type957 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType6? Type957 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError5? Type958 { get; set; }
+ public global::Fal.UpdateAssetTagResponse8? Type958 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType5? Type959 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError7? Type959 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse6? Type960 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType7? Type960 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError6? Type961 { get; set; }
+ public global::Fal.UpdateAssetTagResponse9? Type961 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType6? Type962 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError8? Type962 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse7? Type963 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType8? Type963 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError7? Type964 { get; set; }
+ public global::Fal.UpdateAssetTagResponse10? Type964 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType7? Type965 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError9? Type965 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse8? Type966 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType9? Type966 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError8? Type967 { get; set; }
+ public global::Fal.DeleteAssetTagResponse? Type967 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType8? Type968 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError? Type968 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse9? Type969 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType? Type969 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError9? Type970 { get; set; }
+ public global::Fal.DeleteAssetTagResponse2? Type970 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType9? Type971 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError2? Type971 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse? Type972 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType2? Type972 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAsset? Type973 { get; set; }
+ public global::Fal.DeleteAssetTagResponse3? Type973 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetType? Type974 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError3? Type974 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type975 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType3? Type975 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetTag? Type976 { get; set; }
+ public global::Fal.DeleteAssetTagResponse4? Type976 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse2? Type977 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError4? Type977 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError? Type978 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType4? Type978 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType? Type979 { get; set; }
+ public global::Fal.DeleteAssetTagResponse5? Type979 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse3? Type980 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError5? Type980 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError2? Type981 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType5? Type981 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType2? Type982 { get; set; }
+ public global::Fal.DeleteAssetTagResponse6? Type982 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse4? Type983 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError6? Type983 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError3? Type984 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType6? Type984 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType3? Type985 { get; set; }
+ public global::Fal.DeleteAssetTagResponse7? Type985 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse5? Type986 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError7? Type986 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError4? Type987 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType7? Type987 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType4? Type988 { get; set; }
+ public global::Fal.DeleteAssetTagResponse8? Type988 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse6? Type989 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError8? Type989 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError5? Type990 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType8? Type990 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType5? Type991 { get; set; }
+ public global::Fal.DeleteAssetTagResponse9? Type991 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse7? Type992 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError9? Type992 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError6? Type993 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType9? Type993 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType6? Type994 { get; set; }
+ public global::Fal.UploadAssetResponse? Type994 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse8? Type995 { get; set; }
+ public global::Fal.UploadAssetResponseAsset? Type995 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError7? Type996 { get; set; }
+ public global::Fal.UploadAssetResponseAssetType? Type996 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType7? Type997 { get; set; }
+ public global::System.Collections.Generic.IList? Type997 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse9? Type998 { get; set; }
+ public global::Fal.UploadAssetResponseAssetTag? Type998 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError8? Type999 { get; set; }
+ public global::Fal.UploadAssetResponse2? Type999 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType8? Type1000 { get; set; }
+ public global::Fal.UploadAssetResponseError? Type1000 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse10? Type1001 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType? Type1001 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError9? Type1002 { get; set; }
+ public global::Fal.UploadAssetResponse3? Type1002 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType9? Type1003 { get; set; }
+ public global::Fal.UploadAssetResponseError2? Type1003 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse? Type1004 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType2? Type1004 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAsset? Type1005 { get; set; }
+ public global::Fal.UploadAssetResponse4? Type1005 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetType? Type1006 { get; set; }
+ public global::Fal.UploadAssetResponseError3? Type1006 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1007 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType3? Type1007 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetTag? Type1008 { get; set; }
+ public global::Fal.UploadAssetResponse5? Type1008 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse2? Type1009 { get; set; }
+ public global::Fal.UploadAssetResponseError4? Type1009 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError? Type1010 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType4? Type1010 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType? Type1011 { get; set; }
+ public global::Fal.UploadAssetResponse6? Type1011 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse3? Type1012 { get; set; }
+ public global::Fal.UploadAssetResponseError5? Type1012 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError2? Type1013 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType5? Type1013 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType2? Type1014 { get; set; }
+ public global::Fal.UploadAssetResponse7? Type1014 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse4? Type1015 { get; set; }
+ public global::Fal.UploadAssetResponseError6? Type1015 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError3? Type1016 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType6? Type1016 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType3? Type1017 { get; set; }
+ public global::Fal.UploadAssetResponse8? Type1017 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse5? Type1018 { get; set; }
+ public global::Fal.UploadAssetResponseError7? Type1018 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError4? Type1019 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType7? Type1019 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType4? Type1020 { get; set; }
+ public global::Fal.UploadAssetResponse9? Type1020 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse6? Type1021 { get; set; }
+ public global::Fal.UploadAssetResponseError8? Type1021 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError5? Type1022 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType8? Type1022 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType5? Type1023 { get; set; }
+ public global::Fal.UploadAssetResponse10? Type1023 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse7? Type1024 { get; set; }
+ public global::Fal.UploadAssetResponseError9? Type1024 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError6? Type1025 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType9? Type1025 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType6? Type1026 { get; set; }
+ public global::Fal.GetAssetResponse? Type1026 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse8? Type1027 { get; set; }
+ public global::Fal.GetAssetResponseAsset? Type1027 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError7? Type1028 { get; set; }
+ public global::Fal.GetAssetResponseAssetType? Type1028 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType7? Type1029 { get; set; }
+ public global::System.Collections.Generic.IList? Type1029 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse9? Type1030 { get; set; }
+ public global::Fal.GetAssetResponseAssetTag? Type1030 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError8? Type1031 { get; set; }
+ public global::Fal.GetAssetResponse2? Type1031 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType8? Type1032 { get; set; }
+ public global::Fal.GetAssetResponseError? Type1032 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse10? Type1033 { get; set; }
+ public global::Fal.GetAssetResponseErrorType? Type1033 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError9? Type1034 { get; set; }
+ public global::Fal.GetAssetResponse3? Type1034 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType9? Type1035 { get; set; }
+ public global::Fal.GetAssetResponseError2? Type1035 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse? Type1036 { get; set; }
+ public global::Fal.GetAssetResponseErrorType2? Type1036 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse2? Type1037 { get; set; }
+ public global::Fal.GetAssetResponse4? Type1037 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError? Type1038 { get; set; }
+ public global::Fal.GetAssetResponseError3? Type1038 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType? Type1039 { get; set; }
+ public global::Fal.GetAssetResponseErrorType3? Type1039 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse3? Type1040 { get; set; }
+ public global::Fal.GetAssetResponse5? Type1040 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError2? Type1041 { get; set; }
+ public global::Fal.GetAssetResponseError4? Type1041 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType2? Type1042 { get; set; }
+ public global::Fal.GetAssetResponseErrorType4? Type1042 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse4? Type1043 { get; set; }
+ public global::Fal.GetAssetResponse6? Type1043 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError3? Type1044 { get; set; }
+ public global::Fal.GetAssetResponseError5? Type1044 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType3? Type1045 { get; set; }
+ public global::Fal.GetAssetResponseErrorType5? Type1045 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse5? Type1046 { get; set; }
+ public global::Fal.GetAssetResponse7? Type1046 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError4? Type1047 { get; set; }
+ public global::Fal.GetAssetResponseError6? Type1047 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType4? Type1048 { get; set; }
+ public global::Fal.GetAssetResponseErrorType6? Type1048 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse6? Type1049 { get; set; }
+ public global::Fal.GetAssetResponse8? Type1049 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError5? Type1050 { get; set; }
+ public global::Fal.GetAssetResponseError7? Type1050 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType5? Type1051 { get; set; }
+ public global::Fal.GetAssetResponseErrorType7? Type1051 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse7? Type1052 { get; set; }
+ public global::Fal.GetAssetResponse9? Type1052 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError6? Type1053 { get; set; }
+ public global::Fal.GetAssetResponseError8? Type1053 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType6? Type1054 { get; set; }
+ public global::Fal.GetAssetResponseErrorType8? Type1054 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse8? Type1055 { get; set; }
+ public global::Fal.GetAssetResponse10? Type1055 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError7? Type1056 { get; set; }
+ public global::Fal.GetAssetResponseError9? Type1056 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType7? Type1057 { get; set; }
+ public global::Fal.GetAssetResponseErrorType9? Type1057 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse9? Type1058 { get; set; }
+ public global::Fal.FavoriteAssetResponse? Type1058 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError8? Type1059 { get; set; }
+ public global::Fal.FavoriteAssetResponse2? Type1059 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType8? Type1060 { get; set; }
+ public global::Fal.FavoriteAssetResponseError? Type1060 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse10? Type1061 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType? Type1061 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError9? Type1062 { get; set; }
+ public global::Fal.FavoriteAssetResponse3? Type1062 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType9? Type1063 { get; set; }
+ public global::Fal.FavoriteAssetResponseError2? Type1063 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse? Type1064 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType2? Type1064 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse2? Type1065 { get; set; }
+ public global::Fal.FavoriteAssetResponse4? Type1065 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError? Type1066 { get; set; }
+ public global::Fal.FavoriteAssetResponseError3? Type1066 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType? Type1067 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType3? Type1067 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse3? Type1068 { get; set; }
+ public global::Fal.FavoriteAssetResponse5? Type1068 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError2? Type1069 { get; set; }
+ public global::Fal.FavoriteAssetResponseError4? Type1069 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType2? Type1070 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType4? Type1070 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse4? Type1071 { get; set; }
+ public global::Fal.FavoriteAssetResponse6? Type1071 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError3? Type1072 { get; set; }
+ public global::Fal.FavoriteAssetResponseError5? Type1072 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType3? Type1073 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType5? Type1073 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse5? Type1074 { get; set; }
+ public global::Fal.FavoriteAssetResponse7? Type1074 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError4? Type1075 { get; set; }
+ public global::Fal.FavoriteAssetResponseError6? Type1075 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType4? Type1076 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType6? Type1076 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse6? Type1077 { get; set; }
+ public global::Fal.FavoriteAssetResponse8? Type1077 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError5? Type1078 { get; set; }
+ public global::Fal.FavoriteAssetResponseError7? Type1078 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType5? Type1079 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType7? Type1079 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse7? Type1080 { get; set; }
+ public global::Fal.FavoriteAssetResponse9? Type1080 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError6? Type1081 { get; set; }
+ public global::Fal.FavoriteAssetResponseError8? Type1081 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType6? Type1082 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType8? Type1082 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse8? Type1083 { get; set; }
+ public global::Fal.FavoriteAssetResponse10? Type1083 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError7? Type1084 { get; set; }
+ public global::Fal.FavoriteAssetResponseError9? Type1084 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType7? Type1085 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType9? Type1085 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse9? Type1086 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse? Type1086 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError8? Type1087 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse2? Type1087 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType8? Type1088 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError? Type1088 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse10? Type1089 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType? Type1089 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError9? Type1090 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse3? Type1090 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType9? Type1091 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError2? Type1091 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse? Type1092 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType2? Type1092 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1093 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse4? Type1093 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseTag? Type1094 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError3? Type1094 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse2? Type1095 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType3? Type1095 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError? Type1096 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse5? Type1096 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1097 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError4? Type1097 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse3? Type1098 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType4? Type1098 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError2? Type1099 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse6? Type1099 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1100 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError5? Type1100 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse4? Type1101 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType5? Type1101 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError3? Type1102 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse7? Type1102 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1103 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError6? Type1103 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse5? Type1104 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType6? Type1104 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError4? Type1105 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse8? Type1105 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1106 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError7? Type1106 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse6? Type1107 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType7? Type1107 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError5? Type1108 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse9? Type1108 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1109 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError8? Type1109 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse7? Type1110 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType8? Type1110 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError6? Type1111 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse10? Type1111 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1112 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError9? Type1112 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse8? Type1113 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType9? Type1113 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError7? Type1114 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse? Type1114 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1115 { get; set; }
+ public global::System.Collections.Generic.IList? Type1115 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse9? Type1116 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseTag? Type1116 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError8? Type1117 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse2? Type1117 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1118 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError? Type1118 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse10? Type1119 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1119 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError9? Type1120 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse3? Type1120 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1121 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError2? Type1121 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse? Type1122 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1122 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse2? Type1123 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse4? Type1123 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError? Type1124 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError3? Type1124 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType? Type1125 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1125 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse3? Type1126 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse5? Type1126 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError2? Type1127 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError4? Type1127 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType2? Type1128 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1128 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse4? Type1129 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse6? Type1129 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError3? Type1130 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError5? Type1130 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType3? Type1131 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1131 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse5? Type1132 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse7? Type1132 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError4? Type1133 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError6? Type1133 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType4? Type1134 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1134 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse6? Type1135 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse8? Type1135 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError5? Type1136 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError7? Type1136 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType5? Type1137 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1137 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse7? Type1138 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse9? Type1138 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError6? Type1139 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError8? Type1139 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType6? Type1140 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1140 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse8? Type1141 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse10? Type1141 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError7? Type1142 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError9? Type1142 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType7? Type1143 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1143 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse9? Type1144 { get; set; }
+ public global::Fal.AssignAssetTagResponse? Type1144 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError8? Type1145 { get; set; }
+ public global::Fal.AssignAssetTagResponse2? Type1145 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType8? Type1146 { get; set; }
+ public global::Fal.AssignAssetTagResponseError? Type1146 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse10? Type1147 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType? Type1147 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError9? Type1148 { get; set; }
+ public global::Fal.AssignAssetTagResponse3? Type1148 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType9? Type1149 { get; set; }
+ public global::Fal.AssignAssetTagResponseError2? Type1149 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse? Type1150 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType2? Type1150 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError? Type1151 { get; set; }
+ public global::Fal.AssignAssetTagResponse4? Type1151 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType? Type1152 { get; set; }
+ public global::Fal.AssignAssetTagResponseError3? Type1152 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse2? Type1153 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType3? Type1153 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError2? Type1154 { get; set; }
+ public global::Fal.AssignAssetTagResponse5? Type1154 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType2? Type1155 { get; set; }
+ public global::Fal.AssignAssetTagResponseError4? Type1155 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse3? Type1156 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType4? Type1156 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError3? Type1157 { get; set; }
+ public global::Fal.AssignAssetTagResponse6? Type1157 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType3? Type1158 { get; set; }
+ public global::Fal.AssignAssetTagResponseError5? Type1158 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse4? Type1159 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType5? Type1159 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError4? Type1160 { get; set; }
+ public global::Fal.AssignAssetTagResponse7? Type1160 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType4? Type1161 { get; set; }
+ public global::Fal.AssignAssetTagResponseError6? Type1161 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse5? Type1162 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType6? Type1162 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError5? Type1163 { get; set; }
+ public global::Fal.AssignAssetTagResponse8? Type1163 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType5? Type1164 { get; set; }
+ public global::Fal.AssignAssetTagResponseError7? Type1164 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse6? Type1165 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType7? Type1165 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError6? Type1166 { get; set; }
+ public global::Fal.AssignAssetTagResponse9? Type1166 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType6? Type1167 { get; set; }
+ public global::Fal.AssignAssetTagResponseError8? Type1167 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse7? Type1168 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType8? Type1168 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError7? Type1169 { get; set; }
+ public global::Fal.AssignAssetTagResponse10? Type1169 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType7? Type1170 { get; set; }
+ public global::Fal.AssignAssetTagResponseError9? Type1170 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse8? Type1171 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType9? Type1171 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError8? Type1172 { get; set; }
+ public global::Fal.UnassignAssetTagResponse? Type1172 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType8? Type1173 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError? Type1173 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse9? Type1174 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType? Type1174 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError9? Type1175 { get; set; }
+ public global::Fal.UnassignAssetTagResponse2? Type1175 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType9? Type1176 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError2? Type1176 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse? Type1177 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType2? Type1177 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1178 { get; set; }
+ public global::Fal.UnassignAssetTagResponse3? Type1178 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1179 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError3? Type1179 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1180 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType3? Type1180 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1181 { get; set; }
+ public global::Fal.UnassignAssetTagResponse4? Type1181 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1182 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError4? Type1182 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1183 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType4? Type1183 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse2? Type1184 { get; set; }
+ public global::Fal.UnassignAssetTagResponse5? Type1184 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError? Type1185 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError5? Type1185 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1186 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType5? Type1186 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse3? Type1187 { get; set; }
+ public global::Fal.UnassignAssetTagResponse6? Type1187 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError2? Type1188 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError6? Type1188 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1189 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType6? Type1189 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse4? Type1190 { get; set; }
+ public global::Fal.UnassignAssetTagResponse7? Type1190 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError3? Type1191 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError7? Type1191 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1192 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType7? Type1192 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse5? Type1193 { get; set; }
+ public global::Fal.UnassignAssetTagResponse8? Type1193 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError4? Type1194 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError8? Type1194 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1195 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType8? Type1195 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse6? Type1196 { get; set; }
+ public global::Fal.UnassignAssetTagResponse9? Type1196 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError5? Type1197 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError9? Type1197 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1198 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType9? Type1198 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse7? Type1199 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse? Type1199 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError6? Type1200 { get; set; }
+ public global::System.Collections.Generic.IList? Type1200 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1201 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1201 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse? Type1202 { get; set; }
+ public global::System.Collections.Generic.IList? Type1202 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1203 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1203 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1204 { get; set; }
+ public global::System.Collections.Generic.IList? Type1204 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1205 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1205 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1206 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse2? Type1206 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1207 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError? Type1207 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1208 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1208 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1209 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse3? Type1209 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1210 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError2? Type1210 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1211 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1211 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1212 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse4? Type1212 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1213 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError3? Type1213 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1214 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1214 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1215 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse5? Type1215 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1216 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError4? Type1216 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1217 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1217 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse? Type1218 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse6? Type1218 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError? Type1219 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError5? Type1219 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1220 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1220 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse2? Type1221 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse7? Type1221 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError2? Type1222 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError6? Type1222 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1223 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1223 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse3? Type1224 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse? Type1224 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError3? Type1225 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1225 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1226 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1226 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse4? Type1227 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1227 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError4? Type1228 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1228 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1229 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1229 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse5? Type1230 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1230 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError5? Type1231 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1231 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1232 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1232 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse6? Type1233 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1233 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError6? Type1234 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1234 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1235 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1235 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1236 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1236 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseItem? Type1237 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1237 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse? Type1238 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1238 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError? Type1239 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1239 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType? Type1240 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse? Type1240 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse2? Type1241 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError? Type1241 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError2? Type1242 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1242 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType2? Type1243 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse2? Type1243 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse3? Type1244 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError2? Type1244 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError3? Type1245 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1245 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType3? Type1246 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse3? Type1246 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1247 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError3? Type1247 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseItem? Type1248 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1248 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse? Type1249 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse4? Type1249 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError? Type1250 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError4? Type1250 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType? Type1251 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1251 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse2? Type1252 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse5? Type1252 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError2? Type1253 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError5? Type1253 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1254 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1254 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse3? Type1255 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse6? Type1255 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError3? Type1256 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError6? Type1256 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1257 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1257 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse2? Type1258 { get; set; }
+ public global::System.Collections.Generic.IList? Type1258 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError? Type1259 { get; set; }
+ public global::Fal.ServerlessListRootResponseItem? Type1259 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType? Type1260 { get; set; }
+ public global::Fal.ServerlessListRootResponse? Type1260 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse3? Type1261 { get; set; }
+ public global::Fal.ServerlessListRootResponseError? Type1261 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError2? Type1262 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType? Type1262 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1263 { get; set; }
+ public global::Fal.ServerlessListRootResponse2? Type1263 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse4? Type1264 { get; set; }
+ public global::Fal.ServerlessListRootResponseError2? Type1264 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError3? Type1265 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType2? Type1265 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1266 { get; set; }
+ public global::Fal.ServerlessListRootResponse3? Type1266 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse5? Type1267 { get; set; }
+ public global::Fal.ServerlessListRootResponseError3? Type1267 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError4? Type1268 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType3? Type1268 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1269 { get; set; }
+ public global::System.Collections.Generic.IList? Type1269 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse? Type1270 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseItem? Type1270 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError? Type1271 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse? Type1271 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1272 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError? Type1272 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse2? Type1273 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType? Type1273 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError2? Type1274 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse2? Type1274 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1275 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError2? Type1275 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse3? Type1276 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1276 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError3? Type1277 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse3? Type1277 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1278 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError3? Type1278 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse? Type1279 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1279 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError? Type1280 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse2? Type1280 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1281 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError? Type1281 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse2? Type1282 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType? Type1282 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError2? Type1283 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse3? Type1283 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1284 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError2? Type1284 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse3? Type1285 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1285 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError3? Type1286 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse4? Type1286 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1287 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError3? Type1287 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse4? Type1288 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1288 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError4? Type1289 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse5? Type1289 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1290 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError4? Type1290 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse? Type1291 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1291 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError? Type1292 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse? Type1292 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType? Type1293 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError? Type1293 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse2? Type1294 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1294 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError2? Type1295 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse2? Type1295 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1296 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError2? Type1296 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse3? Type1297 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1297 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError3? Type1298 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse3? Type1298 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1299 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError3? Type1299 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse? Type1300 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1300 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1301 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse? Type1301 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseItem? Type1302 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError? Type1302 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type1303 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1303 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse2? Type1304 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse2? Type1304 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError? Type1305 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError2? Type1305 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1306 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1306 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse3? Type1307 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse3? Type1307 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError2? Type1308 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError3? Type1308 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1309 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1309 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse4? Type1310 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse4? Type1310 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError3? Type1311 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError4? Type1311 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1312 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1312 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse2? Type1313 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse? Type1313 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError? Type1314 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError? Type1314 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType? Type1315 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType? Type1315 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse3? Type1316 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse2? Type1316 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError2? Type1317 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError2? Type1317 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1318 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1318 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse4? Type1319 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse3? Type1319 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError3? Type1320 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError3? Type1320 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1321 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1321 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse? Type1322 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse? Type1322 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1323 { get; set; }
+ public global::System.Collections.Generic.IList? Type1323 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1324 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseItem? Type1324 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1325 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse2? Type1325 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1326 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError? Type1326 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1327 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1327 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1328 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse3? Type1328 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1329 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError2? Type1329 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1330 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1330 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1331 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse4? Type1331 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1332 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError3? Type1332 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1333 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1333 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1334 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse2? Type1334 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1335 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError? Type1335 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1336 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType? Type1336 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1337 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse3? Type1337 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1338 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError2? Type1338 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1339 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1339 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1340 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse4? Type1340 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1341 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError3? Type1341 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1342 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1342 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse? Type1343 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse? Type1343 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1344 { get; set; }
+ public global::System.Collections.Generic.IList? Type1344 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstance? Type1345 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1345 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1346 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1346 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1347 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1347 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceSector? Type1348 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1348 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1349 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1349 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse2? Type1350 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1350 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError? Type1351 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1351 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType? Type1352 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1352 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse3? Type1353 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1353 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError2? Type1354 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1354 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType2? Type1355 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1355 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse4? Type1356 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1356 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError3? Type1357 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1357 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType3? Type1358 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1358 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse5? Type1359 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1359 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError4? Type1360 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1360 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType4? Type1361 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1361 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse? Type1362 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1362 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseInstanceType? Type1363 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1363 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseRegion? Type1364 { get; set; }
+ public global::Fal.ListComputeInstancesResponse? Type1364 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseSector? Type1365 { get; set; }
+ public global::System.Collections.Generic.IList? Type1365 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseStatus? Type1366 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstance? Type1366 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse2? Type1367 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1367 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError? Type1368 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1368 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType? Type1369 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceSector? Type1369 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse3? Type1370 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1370 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError2? Type1371 { get; set; }
+ public global::Fal.ListComputeInstancesResponse2? Type1371 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType2? Type1372 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError? Type1372 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse4? Type1373 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType? Type1373 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError3? Type1374 { get; set; }
+ public global::Fal.ListComputeInstancesResponse3? Type1374 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType3? Type1375 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError2? Type1375 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse5? Type1376 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType2? Type1376 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError4? Type1377 { get; set; }
+ public global::Fal.ListComputeInstancesResponse4? Type1377 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType4? Type1378 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError3? Type1378 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse6? Type1379 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType3? Type1379 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError5? Type1380 { get; set; }
+ public global::Fal.ListComputeInstancesResponse5? Type1380 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType5? Type1381 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError4? Type1381 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse? Type1382 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType4? Type1382 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseInstanceType? Type1383 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse? Type1383 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseRegion? Type1384 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseInstanceType? Type1384 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseSector? Type1385 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseRegion? Type1385 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseStatus? Type1386 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseSector? Type1386 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse2? Type1387 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseStatus? Type1387 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError? Type1388 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse2? Type1388 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType? Type1389 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError? Type1389 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse3? Type1390 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType? Type1390 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError2? Type1391 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse3? Type1391 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType2? Type1392 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError2? Type1392 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse4? Type1393 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType2? Type1393 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError3? Type1394 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse4? Type1394 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType3? Type1395 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError3? Type1395 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse5? Type1396 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType3? Type1396 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError4? Type1397 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse5? Type1397 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType4? Type1398 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError4? Type1398 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse6? Type1399 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType4? Type1399 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError5? Type1400 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse6? Type1400 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType5? Type1401 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError5? Type1401 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse? Type1402 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType5? Type1402 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError? Type1403 { get; set; }
+ public global::Fal.GetComputeInstanceResponse? Type1403 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType? Type1404 { get; set; }
+ public global::Fal.GetComputeInstanceResponseInstanceType? Type1404 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse2? Type1405 { get; set; }
+ public global::Fal.GetComputeInstanceResponseRegion? Type1405 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError2? Type1406 { get; set; }
+ public global::Fal.GetComputeInstanceResponseSector? Type1406 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1407 { get; set; }
+ public global::Fal.GetComputeInstanceResponseStatus? Type1407 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse3? Type1408 { get; set; }
+ public global::Fal.GetComputeInstanceResponse2? Type1408 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError3? Type1409 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError? Type1409 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1410 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType? Type1410 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse4? Type1411 { get; set; }
+ public global::Fal.GetComputeInstanceResponse3? Type1411 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError4? Type1412 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError2? Type1412 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1413 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType2? Type1413 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse5? Type1414 { get; set; }
+ public global::Fal.GetComputeInstanceResponse4? Type1414 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError5? Type1415 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError3? Type1415 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1416 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType3? Type1416 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse? Type1417 { get; set; }
+ public global::Fal.GetComputeInstanceResponse5? Type1417 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1418 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError4? Type1418 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKey? Type1419 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType4? Type1419 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKeyScope? Type1420 { get; set; }
+ public global::Fal.GetComputeInstanceResponse6? Type1420 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse2? Type1421 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError5? Type1421 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError? Type1422 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType5? Type1422 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType? Type1423 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse? Type1423 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse3? Type1424 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError? Type1424 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError2? Type1425 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType? Type1425 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType2? Type1426 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse2? Type1426 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse4? Type1427 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError2? Type1427 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError3? Type1428 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1428 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType3? Type1429 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse3? Type1429 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse5? Type1430 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError3? Type1430 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError4? Type1431 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1431 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType4? Type1432 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse4? Type1432 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse? Type1433 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError4? Type1433 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse2? Type1434 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1434 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError? Type1435 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse5? Type1435 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType? Type1436 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError5? Type1436 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse3? Type1437 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1437 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError2? Type1438 { get; set; }
+ public global::Fal.ListApiKeysResponse? Type1438 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType2? Type1439 { get; set; }
+ public global::System.Collections.Generic.IList? Type1439 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse4? Type1440 { get; set; }
+ public global::Fal.ListApiKeysResponseKey? Type1440 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError3? Type1441 { get; set; }
+ public global::Fal.ListApiKeysResponseKeyScope? Type1441 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType3? Type1442 { get; set; }
+ public global::Fal.ListApiKeysResponse2? Type1442 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse5? Type1443 { get; set; }
+ public global::Fal.ListApiKeysResponseError? Type1443 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError4? Type1444 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType? Type1444 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType4? Type1445 { get; set; }
+ public global::Fal.ListApiKeysResponse3? Type1445 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse6? Type1446 { get; set; }
+ public global::Fal.ListApiKeysResponseError2? Type1446 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError5? Type1447 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType2? Type1447 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType5? Type1448 { get; set; }
+ public global::Fal.ListApiKeysResponse4? Type1448 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse? Type1449 { get; set; }
+ public global::Fal.ListApiKeysResponseError3? Type1449 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError? Type1450 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType3? Type1450 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType? Type1451 { get; set; }
+ public global::Fal.ListApiKeysResponse5? Type1451 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse2? Type1452 { get; set; }
+ public global::Fal.ListApiKeysResponseError4? Type1452 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError2? Type1453 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType4? Type1453 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType2? Type1454 { get; set; }
+ public global::Fal.CreateApiKeyResponse? Type1454 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse3? Type1455 { get; set; }
+ public global::Fal.CreateApiKeyResponse2? Type1455 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError3? Type1456 { get; set; }
+ public global::Fal.CreateApiKeyResponseError? Type1456 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType3? Type1457 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType? Type1457 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse4? Type1458 { get; set; }
+ public global::Fal.CreateApiKeyResponse3? Type1458 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError4? Type1459 { get; set; }
+ public global::Fal.CreateApiKeyResponseError2? Type1459 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType4? Type1460 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType2? Type1460 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse? Type1461 { get; set; }
+ public global::Fal.CreateApiKeyResponse4? Type1461 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseCredits? Type1462 { get; set; }
+ public global::Fal.CreateApiKeyResponseError3? Type1462 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse2? Type1463 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType3? Type1463 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError? Type1464 { get; set; }
+ public global::Fal.CreateApiKeyResponse5? Type1464 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType? Type1465 { get; set; }
+ public global::Fal.CreateApiKeyResponseError4? Type1465 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse3? Type1466 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType4? Type1466 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError2? Type1467 { get; set; }
+ public global::Fal.CreateApiKeyResponse6? Type1467 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType2? Type1468 { get; set; }
+ public global::Fal.CreateApiKeyResponseError5? Type1468 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse4? Type1469 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType5? Type1469 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError3? Type1470 { get; set; }
+ public global::Fal.DeleteApiKeyResponse? Type1470 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType3? Type1471 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError? Type1471 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse5? Type1472 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType? Type1472 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError4? Type1473 { get; set; }
+ public global::Fal.DeleteApiKeyResponse2? Type1473 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType4? Type1474 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError2? Type1474 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse6? Type1475 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType2? Type1475 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError5? Type1476 { get; set; }
+ public global::Fal.DeleteApiKeyResponse3? Type1476 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType5? Type1477 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError3? Type1477 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse? Type1478 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType3? Type1478 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError? Type1479 { get; set; }
+ public global::Fal.DeleteApiKeyResponse4? Type1479 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType? Type1480 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError4? Type1480 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse2? Type1481 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType4? Type1481 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError2? Type1482 { get; set; }
+ public global::Fal.GetAccountBillingResponse? Type1482 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType2? Type1483 { get; set; }
+ public global::Fal.GetAccountBillingResponseCredits? Type1483 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse3? Type1484 { get; set; }
+ public global::Fal.GetAccountBillingResponse2? Type1484 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError3? Type1485 { get; set; }
+ public global::Fal.GetAccountBillingResponseError? Type1485 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType3? Type1486 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType? Type1486 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse4? Type1487 { get; set; }
+ public global::Fal.GetAccountBillingResponse3? Type1487 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError4? Type1488 { get; set; }
+ public global::Fal.GetAccountBillingResponseError2? Type1488 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType4? Type1489 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType2? Type1489 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse5? Type1490 { get; set; }
+ public global::Fal.GetAccountBillingResponse4? Type1490 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError5? Type1491 { get; set; }
+ public global::Fal.GetAccountBillingResponseError3? Type1491 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType5? Type1492 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType3? Type1492 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse? Type1493 { get; set; }
+ public global::Fal.GetAccountBillingResponse5? Type1493 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError? Type1494 { get; set; }
+ public global::Fal.GetAccountBillingResponseError4? Type1494 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType? Type1495 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType4? Type1495 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse2? Type1496 { get; set; }
+ public global::Fal.GetAccountBillingResponse6? Type1496 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError2? Type1497 { get; set; }
+ public global::Fal.GetAccountBillingResponseError5? Type1497 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType2? Type1498 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType5? Type1498 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse3? Type1499 { get; set; }
+ public global::Fal.GetFocusReportResponse? Type1499 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError3? Type1500 { get; set; }
+ public global::Fal.GetFocusReportResponseError? Type1500 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType3? Type1501 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType? Type1501 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse4? Type1502 { get; set; }
+ public global::Fal.GetFocusReportResponse2? Type1502 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError4? Type1503 { get; set; }
+ public global::Fal.GetFocusReportResponseError2? Type1503 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType4? Type1504 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType2? Type1504 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse? Type1505 { get; set; }
+ public global::Fal.GetFocusReportResponse3? Type1505 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1506 { get; set; }
+ public global::Fal.GetFocusReportResponseError3? Type1506 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseTeam? Type1507 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType3? Type1507 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse2? Type1508 { get; set; }
+ public global::Fal.GetFocusReportResponse4? Type1508 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError? Type1509 { get; set; }
+ public global::Fal.GetFocusReportResponseError4? Type1509 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType? Type1510 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType4? Type1510 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse3? Type1511 { get; set; }
+ public global::Fal.GetFocusReportResponse5? Type1511 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError2? Type1512 { get; set; }
+ public global::Fal.GetFocusReportResponseError5? Type1512 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1513 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType5? Type1513 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse4? Type1514 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse? Type1514 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError3? Type1515 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError? Type1515 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1516 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType? Type1516 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse5? Type1517 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse2? Type1517 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError4? Type1518 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError2? Type1518 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1519 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType2? Type1519 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse6? Type1520 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse3? Type1520 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError5? Type1521 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError3? Type1521 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1522 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType3? Type1522 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse7? Type1523 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse4? Type1523 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError6? Type1524 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError4? Type1524 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1525 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType4? Type1525 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse? Type1526 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse? Type1526 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1527 { get; set; }
+ public global::System.Collections.Generic.IList? Type1527 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1528 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseTeam? Type1528 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1529 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse2? Type1529 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1530 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError? Type1530 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1531 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType? Type1531 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1532 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse3? Type1532 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1533 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError2? Type1533 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1534 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1534 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse2? Type1535 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse4? Type1535 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError? Type1536 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError3? Type1536 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType? Type1537 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1537 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse3? Type1538 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse5? Type1538 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError2? Type1539 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError4? Type1539 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType2? Type1540 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1540 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse4? Type1541 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse6? Type1541 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError3? Type1542 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError5? Type1542 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType3? Type1543 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1543 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse5? Type1544 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse7? Type1544 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError4? Type1545 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError6? Type1545 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType4? Type1546 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1546 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse6? Type1547 { get; set; }
+ public global::Fal.GetOrganizationUsageResponse? Type1547 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError5? Type1548 { get; set; }
+ public global::System.Collections.Generic.IList? Type1548 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType5? Type1549 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1549 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse7? Type1550 { get; set; }
+ public global::System.Collections.Generic.IList? Type1550 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError6? Type1551 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1551 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType6? Type1552 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1552 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse? Type1553 { get; set; }
+ public global::System.Collections.Generic.IList? Type1553 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse2? Type1554 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1554 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError? Type1555 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1555 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType? Type1556 { get; set; }
+ public global::Fal.GetOrganizationUsageResponse2? Type1556 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse3? Type1557 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseError? Type1557 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError2? Type1558 { get; set; }
+ public global::Fal.GetOrganizationUsageResponseErrorType? Type1558 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType2? Type1559 { get; set; }
+ public global::Fal.GetOrganizationUsageResponse3? Type1559 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError2? Type1560 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType2? Type1561 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse4? Type1562 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError3? Type1563 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType3? Type1564 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse5? Type1565 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError4? Type1566 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType4? Type1567 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse6? Type1568 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError5? Type1569 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType5? Type1570 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse7? Type1571 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError6? Type1572 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType6? Type1573 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse? Type1574 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse2? Type1575 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError? Type1576 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType? Type1577 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse3? Type1578 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError2? Type1579 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType2? Type1580 { get; set; }
///
///
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequest.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequest.Json.g.cs
new file mode 100644
index 0000000..ddcaa1b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequest.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequest
+ {
+ ///
+ /// 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.CreateWorkflowRequest? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequest),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequest;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequest? 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.CreateWorkflowRequest),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequest;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequest.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequest.g.cs
new file mode 100644
index 0000000..bf76c32
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequest.g.cs
@@ -0,0 +1,96 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Request body for creating a new workflow
+ ///
+ public sealed partial class CreateWorkflowRequest
+ {
+ ///
+ /// Unique workflow name/slug within the user's namespace
+ /// Example: my-image-workflow
+ ///
+ /// my-image-workflow
+ [global::System.Text.Json.Serialization.JsonPropertyName("name")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Name { get; set; }
+
+ ///
+ /// Human-readable workflow title
+ /// Example: My Image Generation Workflow
+ ///
+ /// My Image Generation Workflow
+ [global::System.Text.Json.Serialization.JsonPropertyName("title")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Title { get; set; }
+
+ ///
+ /// The workflow definition/configuration object
+ /// Example: {"name":"my-image-workflow","version":"1.0.0","nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"run","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}}},"output":{"image":"$node_a1b2c3.images.0.url"},"schema":{"input":{"prompt":{"type":"string"}},"output":{"image":{"type":"string"}}}}
+ ///
+ /// {"name":"my-image-workflow","version":"1.0.0","nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"run","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}}},"output":{"image":"$node_a1b2c3.images.0.url"},"schema":{"input":{"prompt":{"type":"string"}},"output":{"image":{"type":"string"}}}}
+ [global::System.Text.Json.Serialization.JsonPropertyName("contents")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowRequestContents Contents { get; set; }
+
+ ///
+ /// Whether the workflow is publicly visible
+ /// Default Value: false
+ /// Example: false
+ ///
+ /// false
+ [global::System.Text.Json.Serialization.JsonPropertyName("is_public")]
+ public bool? IsPublic { 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.
+ ///
+ ///
+ /// Unique workflow name/slug within the user's namespace
+ /// Example: my-image-workflow
+ ///
+ ///
+ /// Human-readable workflow title
+ /// Example: My Image Generation Workflow
+ ///
+ ///
+ /// The workflow definition/configuration object
+ /// Example: {"name":"my-image-workflow","version":"1.0.0","nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"run","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}}},"output":{"image":"$node_a1b2c3.images.0.url"},"schema":{"input":{"prompt":{"type":"string"}},"output":{"image":{"type":"string"}}}}
+ ///
+ ///
+ /// Whether the workflow is publicly visible
+ /// Default Value: false
+ /// Example: false
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public CreateWorkflowRequest(
+ string name,
+ string title,
+ global::Fal.CreateWorkflowRequestContents contents,
+ bool? isPublic)
+ {
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
+ this.Title = title ?? throw new global::System.ArgumentNullException(nameof(title));
+ this.Contents = contents ?? throw new global::System.ArgumentNullException(nameof(contents));
+ this.IsPublic = isPublic;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowRequest()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContents.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContents.Json.g.cs
new file mode 100644
index 0000000..b74d073
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContents.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContents
+ {
+ ///
+ /// 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.CreateWorkflowRequestContents? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContents),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContents;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContents? 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.CreateWorkflowRequestContents),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContents;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContents.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContents.g.cs
new file mode 100644
index 0000000..cb2b518
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContents.g.cs
@@ -0,0 +1,113 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// The workflow definition/configuration object
+ /// Example: {"name":"my-image-workflow","version":"1.0.0","nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"run","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}}},"output":{"image":"$node_a1b2c3.images.0.url"},"schema":{"input":{"prompt":{"type":"string"}},"output":{"image":{"type":"string"}}}}
+ ///
+ public sealed partial class CreateWorkflowRequestContents
+ {
+ ///
+ /// Internal name of the workflow definition
+ /// Example: my-image-workflow
+ ///
+ /// my-image-workflow
+ [global::System.Text.Json.Serialization.JsonPropertyName("name")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Name { get; set; }
+
+ ///
+ /// Workflow definition format version
+ /// Example: 1.0.0
+ ///
+ /// 1.0.0
+ [global::System.Text.Json.Serialization.JsonPropertyName("version")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Version { get; set; }
+
+ ///
+ /// Workflow nodes keyed by node id
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("nodes")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::System.Collections.Generic.Dictionary Nodes { get; set; }
+
+ ///
+ /// Output field mappings keyed by output name
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("output")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::System.Collections.Generic.Dictionary Output { get; set; }
+
+ ///
+ /// Input/output schema for the workflow
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("schema")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowRequestContentsSchema Schema { get; set; }
+
+ ///
+ /// Optional workflow metadata
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("metadata")]
+ public object? Metadata { 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.
+ ///
+ ///
+ /// Internal name of the workflow definition
+ /// Example: my-image-workflow
+ ///
+ ///
+ /// Workflow definition format version
+ /// Example: 1.0.0
+ ///
+ ///
+ /// Workflow nodes keyed by node id
+ ///
+ ///
+ /// Output field mappings keyed by output name
+ ///
+ ///
+ /// Input/output schema for the workflow
+ ///
+ ///
+ /// Optional workflow metadata
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public CreateWorkflowRequestContents(
+ string name,
+ string version,
+ global::System.Collections.Generic.Dictionary nodes,
+ global::System.Collections.Generic.Dictionary output,
+ global::Fal.CreateWorkflowRequestContentsSchema schema,
+ object? metadata)
+ {
+ this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
+ this.Version = version ?? throw new global::System.ArgumentNullException(nameof(version));
+ this.Nodes = nodes ?? throw new global::System.ArgumentNullException(nameof(nodes));
+ this.Output = output ?? throw new global::System.ArgumentNullException(nameof(output));
+ this.Schema = schema ?? throw new global::System.ArgumentNullException(nameof(schema));
+ this.Metadata = metadata;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowRequestContents()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata.Json.g.cs
new file mode 100644
index 0000000..863f5eb
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsMetadata
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsMetadata? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsMetadata),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsMetadata;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsMetadata? 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.CreateWorkflowRequestContentsMetadata),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsMetadata;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsMetadata.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata.g.cs
new file mode 100644
index 0000000..f7fe82c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Optional workflow metadata
+ ///
+ public sealed partial class CreateWorkflowRequestContentsMetadata
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata2.Json.g.cs
new file mode 100644
index 0000000..f06aaf5
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsMetadata2
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsMetadata2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsMetadata2),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsMetadata2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsMetadata2? 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.CreateWorkflowRequestContentsMetadata2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsMetadata2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsMetadata2.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata2.g.cs
new file mode 100644
index 0000000..5ba0a83
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsMetadata2.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class CreateWorkflowRequestContentsMetadata2
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes.Json.g.cs
new file mode 100644
index 0000000..82e549e
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsNodes
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsNodes),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsNodes;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes? 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.CreateWorkflowRequestContentsNodes),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsNodes;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes.g.cs
new file mode 100644
index 0000000..e9b7f46
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Workflow nodes keyed by node id
+ ///
+ public sealed partial class CreateWorkflowRequestContentsNodes
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes2.Json.g.cs
new file mode 100644
index 0000000..e94704d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsNodes2
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsNodes2),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsNodes2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes2? 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.CreateWorkflowRequestContentsNodes2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsNodes2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes2.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes2.g.cs
new file mode 100644
index 0000000..6786c6c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes2.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class CreateWorkflowRequestContentsNodes2
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes3.Json.g.cs
new file mode 100644
index 0000000..f6cd455
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes3.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsNodes3
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsNodes3),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsNodes3;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes3? 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.CreateWorkflowRequestContentsNodes3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsNodes3;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsNodes3.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes3.g.cs
new file mode 100644
index 0000000..6763750
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsNodes3.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class CreateWorkflowRequestContentsNodes3
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsOutput.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsOutput.Json.g.cs
new file mode 100644
index 0000000..29b0a61
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsOutput.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsOutput
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsOutput? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsOutput),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsOutput;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsOutput? 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.CreateWorkflowRequestContentsOutput),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsOutput;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsOutput.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsOutput.g.cs
new file mode 100644
index 0000000..97f5570
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsOutput.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Output field mappings keyed by output name
+ ///
+ public sealed partial class CreateWorkflowRequestContentsOutput
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchema.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchema.Json.g.cs
new file mode 100644
index 0000000..6703d20
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchema.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsSchema
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsSchema? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsSchema),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsSchema;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchema? 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.CreateWorkflowRequestContentsSchema),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsSchema;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchema.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchema.g.cs
new file mode 100644
index 0000000..e99e6e5
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchema.g.cs
@@ -0,0 +1,59 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Input/output schema for the workflow
+ ///
+ public sealed partial class CreateWorkflowRequestContentsSchema
+ {
+ ///
+ /// Input fields schema
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("input")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required object Input { get; set; }
+
+ ///
+ /// Output fields schema
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("output")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required object Output { 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.
+ ///
+ ///
+ /// Input fields schema
+ ///
+ ///
+ /// Output fields schema
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public CreateWorkflowRequestContentsSchema(
+ object input,
+ object output)
+ {
+ this.Input = input ?? throw new global::System.ArgumentNullException(nameof(input));
+ this.Output = output ?? throw new global::System.ArgumentNullException(nameof(output));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowRequestContentsSchema()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput.Json.g.cs
new file mode 100644
index 0000000..8c0b650
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsSchemaInput
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaInput? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsSchemaInput),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsSchemaInput;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaInput? 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.CreateWorkflowRequestContentsSchemaInput),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsSchemaInput;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaInput.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput.g.cs
new file mode 100644
index 0000000..8871ca3
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Input fields schema
+ ///
+ public sealed partial class CreateWorkflowRequestContentsSchemaInput
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput2.Json.g.cs
new file mode 100644
index 0000000..622fadf
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsSchemaInput2
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaInput2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsSchemaInput2),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsSchemaInput2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaInput2? 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.CreateWorkflowRequestContentsSchemaInput2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsSchemaInput2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaInput2.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput2.g.cs
new file mode 100644
index 0000000..cab0fd2
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaInput2.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class CreateWorkflowRequestContentsSchemaInput2
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput.Json.g.cs
new file mode 100644
index 0000000..a082d3c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsSchemaOutput
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaOutput? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsSchemaOutput),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsSchemaOutput;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaOutput? 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.CreateWorkflowRequestContentsSchemaOutput),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsSchemaOutput;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaOutput.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput.g.cs
new file mode 100644
index 0000000..aa02fcf
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Output fields schema
+ ///
+ public sealed partial class CreateWorkflowRequestContentsSchemaOutput
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput2.Json.g.cs
new file mode 100644
index 0000000..3fa24aa
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowRequestContentsSchemaOutput2
+ {
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaOutput2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowRequestContentsSchemaOutput2),
+ jsonSerializerContext) as global::Fal.CreateWorkflowRequestContentsSchemaOutput2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaOutput2? 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.CreateWorkflowRequestContentsSchemaOutput2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowRequestContentsSchemaOutput2;
+ }
+
+ ///
+ /// 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.CreateWorkflowRequestContentsSchemaOutput2.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput2.g.cs
new file mode 100644
index 0000000..f3684da
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowRequestContentsSchemaOutput2.g.cs
@@ -0,0 +1,19 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class CreateWorkflowRequestContentsSchemaOutput2
+ {
+
+ ///
+ /// 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();
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse.Json.g.cs
new file mode 100644
index 0000000..ff56c22
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponse
+ {
+ ///
+ /// 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.CreateWorkflowResponse? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponse),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponse;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse? 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.CreateWorkflowResponse),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponse;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse.g.cs
new file mode 100644
index 0000000..d7321da
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse.g.cs
@@ -0,0 +1,50 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Response containing a single workflow's details
+ ///
+ public sealed partial class CreateWorkflowResponse
+ {
+ ///
+ /// The workflow details
+ /// Example: {"name":"my-image-workflow","title":"My Image Generation Workflow","user_nickname":"johndoe","created_at":"2024-01-15T10:30:00Z","is_public":true,"contents":{"nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"model","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}},"output":{"id":"output","type":"output","depends":["node_a1b2c3"],"fields":{"image":"$node_a1b2c3.images.0.url"},"metadata":{"position":{"x":600,"y":100}}}}}}
+ ///
+ /// {"name":"my-image-workflow","title":"My Image Generation Workflow","user_nickname":"johndoe","created_at":"2024-01-15T10:30:00Z","is_public":true,"contents":{"nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"model","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}},"output":{"id":"output","type":"output","depends":["node_a1b2c3"],"fields":{"image":"$node_a1b2c3.images.0.url"},"metadata":{"position":{"x":600,"y":100}}}}}}
+ [global::System.Text.Json.Serialization.JsonPropertyName("workflow")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseWorkflow Workflow { 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 workflow details
+ /// Example: {"name":"my-image-workflow","title":"My Image Generation Workflow","user_nickname":"johndoe","created_at":"2024-01-15T10:30:00Z","is_public":true,"contents":{"nodes":{"node_a1b2c3":{"id":"node_a1b2c3","type":"model","app":"fal-ai/flux/dev","depends":[],"input":{"prompt":"$input.prompt"},"metadata":{"position":{"x":300,"y":100}}},"output":{"id":"output","type":"output","depends":["node_a1b2c3"],"fields":{"image":"$node_a1b2c3.images.0.url"},"metadata":{"position":{"x":600,"y":100}}}}}}
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public CreateWorkflowResponse(
+ global::Fal.CreateWorkflowResponseWorkflow workflow)
+ {
+ this.Workflow = workflow ?? throw new global::System.ArgumentNullException(nameof(workflow));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowResponse()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse2.Json.g.cs
new file mode 100644
index 0000000..e9cefe6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponse2
+ {
+ ///
+ /// 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.CreateWorkflowResponse2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponse2),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponse2;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse2? 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.CreateWorkflowResponse2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponse2;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse2.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse2.g.cs
new file mode 100644
index 0000000..7be1f00
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse2.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class CreateWorkflowResponse2
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseError 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 CreateWorkflowResponse2(
+ global::Fal.CreateWorkflowResponseError error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowResponse2()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse3.Json.g.cs
new file mode 100644
index 0000000..49c865f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse3.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponse3
+ {
+ ///
+ /// 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.CreateWorkflowResponse3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponse3),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponse3;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse3? 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.CreateWorkflowResponse3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponse3;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse3.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse3.g.cs
new file mode 100644
index 0000000..23de7c4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse3.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class CreateWorkflowResponse3
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseError2 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 CreateWorkflowResponse3(
+ global::Fal.CreateWorkflowResponseError2 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowResponse3()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse4.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse4.Json.g.cs
new file mode 100644
index 0000000..e669a72
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse4.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponse4
+ {
+ ///
+ /// 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.CreateWorkflowResponse4? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponse4),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponse4;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse4? 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.CreateWorkflowResponse4),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponse4;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse4.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse4.g.cs
new file mode 100644
index 0000000..cc56b2a
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse4.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class CreateWorkflowResponse4
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseError3 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 CreateWorkflowResponse4(
+ global::Fal.CreateWorkflowResponseError3 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowResponse4()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse5.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse5.Json.g.cs
new file mode 100644
index 0000000..46a9752
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse5.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponse5
+ {
+ ///
+ /// 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.CreateWorkflowResponse5? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponse5),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponse5;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse5? 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.CreateWorkflowResponse5),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponse5;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse5.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse5.g.cs
new file mode 100644
index 0000000..67d2273
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse5.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class CreateWorkflowResponse5
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseError4 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 CreateWorkflowResponse5(
+ global::Fal.CreateWorkflowResponseError4 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowResponse5()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse6.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse6.Json.g.cs
new file mode 100644
index 0000000..ba54dad
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse6.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponse6
+ {
+ ///
+ /// 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.CreateWorkflowResponse6? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponse6),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponse6;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse6? 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.CreateWorkflowResponse6),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponse6;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponse6.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse6.g.cs
new file mode 100644
index 0000000..4c193e6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponse6.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class CreateWorkflowResponse6
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseError5 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 CreateWorkflowResponse6(
+ global::Fal.CreateWorkflowResponseError5 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWorkflowResponse6()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError.Json.g.cs
new file mode 100644
index 0000000..5c7f881
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponseError
+ {
+ ///
+ /// 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.CreateWorkflowResponseError? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponseError),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponseError;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponseError? 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.CreateWorkflowResponseError),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponseError;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponseError.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError.g.cs
new file mode 100644
index 0000000..af424f8
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class CreateWorkflowResponseError
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorTypeJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseErrorType 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 CreateWorkflowResponseError(
+ global::Fal.CreateWorkflowResponseErrorType 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 CreateWorkflowResponseError()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError2.Json.g.cs
new file mode 100644
index 0000000..bc1e04c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponseError2
+ {
+ ///
+ /// 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.CreateWorkflowResponseError2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponseError2),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponseError2;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponseError2? 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.CreateWorkflowResponseError2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponseError2;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponseError2.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError2.g.cs
new file mode 100644
index 0000000..2dbb7d3
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError2.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class CreateWorkflowResponseError2
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType2JsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseErrorType2 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 CreateWorkflowResponseError2(
+ global::Fal.CreateWorkflowResponseErrorType2 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 CreateWorkflowResponseError2()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError3.Json.g.cs
new file mode 100644
index 0000000..a9cd23e
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError3.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class CreateWorkflowResponseError3
+ {
+ ///
+ /// 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.CreateWorkflowResponseError3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.CreateWorkflowResponseError3),
+ jsonSerializerContext) as global::Fal.CreateWorkflowResponseError3;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponseError3? 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.CreateWorkflowResponseError3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.CreateWorkflowResponseError3;
+ }
+
+ ///
+ /// 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.CreateWorkflowResponseError3.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError3.g.cs
new file mode 100644
index 0000000..fc5cf7c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.CreateWorkflowResponseError3.g.cs
@@ -0,0 +1,82 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Error details
+ ///
+ public sealed partial class CreateWorkflowResponseError3
+ {
+ ///
+ /// The category of error that occurred
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Fal.JsonConverters.CreateWorkflowResponseErrorType3JsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.CreateWorkflowResponseErrorType3 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