diff --git a/src/libs/Fal/Generated/Fal.AssetsClient.CreateAssetCollection.g.cs b/src/libs/Fal/Generated/Fal.AssetsClient.CreateAssetCollection.g.cs
index 64ad48a..e338b70 100644
--- a/src/libs/Fal/Generated/Fal.AssetsClient.CreateAssetCollection.g.cs
+++ b/src/libs/Fal/Generated/Fal.AssetsClient.CreateAssetCollection.g.cs
@@ -810,6 +810,9 @@ partial void ProcessCreateAssetCollectionResponseContent(
///
/// Optional fal-hosted cover image URL for the collection
///
+ ///
+ /// Optional parent collection ID to nest this collection under (manual collections only). Omit or null to create a top-level collection.
+ ///
///
/// Assets filter DSL
///
@@ -823,6 +826,7 @@ partial void ProcessCreateAssetCollectionResponseContent(
string? icon = default,
string? color = default,
string? coverImageUrl = default,
+ string? parentCollectionId = default,
object? filters = default,
global::Fal.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
@@ -834,6 +838,7 @@ partial void ProcessCreateAssetCollectionResponseContent(
Icon = icon,
Color = color,
CoverImageUrl = coverImageUrl,
+ ParentCollectionId = parentCollectionId,
Filters = filters,
};
diff --git a/src/libs/Fal/Generated/Fal.AssetsClient.MoveAssetCollection.g.cs b/src/libs/Fal/Generated/Fal.AssetsClient.MoveAssetCollection.g.cs
new file mode 100644
index 0000000..9e6b44d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.AssetsClient.MoveAssetCollection.g.cs
@@ -0,0 +1,843 @@
+
+#nullable enable
+
+namespace Fal
+{
+ public partial class AssetsClient
+ {
+
+
+ private static readonly global::Fal.EndPointSecurityRequirement s_MoveAssetCollectionSecurityRequirement0 =
+ new global::Fal.EndPointSecurityRequirement
+ {
+ Authorizations = new global::Fal.EndPointAuthorizationRequirement[]
+ { new global::Fal.EndPointAuthorizationRequirement
+ {
+ Type = "Http",
+ SchemeId = "HttpBearer",
+ Location = "Header",
+ Name = "Bearer",
+ FriendlyName = "Bearer",
+ },
+ },
+ };
+ private static readonly global::Fal.EndPointSecurityRequirement[] s_MoveAssetCollectionSecurityRequirements =
+ new global::Fal.EndPointSecurityRequirement[]
+ { s_MoveAssetCollectionSecurityRequirement0,
+ };
+ partial void PrepareMoveAssetCollectionArguments(
+ global::System.Net.Http.HttpClient httpClient,
+ ref string collectionId,
+ ref string? idempotencyKey,
+ global::Fal.MoveAssetCollectionRequest request);
+ partial void PrepareMoveAssetCollectionRequest(
+ global::System.Net.Http.HttpClient httpClient,
+ global::System.Net.Http.HttpRequestMessage httpRequestMessage,
+ string collectionId,
+ string? idempotencyKey,
+ global::Fal.MoveAssetCollectionRequest request);
+ partial void ProcessMoveAssetCollectionResponse(
+ global::System.Net.Http.HttpClient httpClient,
+ global::System.Net.Http.HttpResponseMessage httpResponseMessage);
+
+ partial void ProcessMoveAssetCollectionResponseContent(
+ global::System.Net.Http.HttpClient httpClient,
+ global::System.Net.Http.HttpResponseMessage httpResponseMessage,
+ ref string content);
+
+ ///
+ /// Move asset collection
+ /// Move a manual asset collection under another collection, or to the top level. Only manual collections can be moved or act as folders; nesting is limited to 5 levels deep and cannot create a cycle.
+ ///
+ ///
+ /// Collection ID
+ /// Example: d8b6elcregj72v34jr8g
+ ///
+ ///
+ /// Optional idempotency key for safe request retries
+ /// Example: 550e8400-e29b-41d4-a716-446655440000
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ public async global::System.Threading.Tasks.Task MoveAssetCollectionAsync(
+ string collectionId,
+
+ global::Fal.MoveAssetCollectionRequest request,
+ string? idempotencyKey = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default)
+ {
+ var __response = await MoveAssetCollectionAsResponseAsync(
+ collectionId: collectionId,
+
+ request: request,
+ idempotencyKey: idempotencyKey,
+ requestOptions: requestOptions,
+ cancellationToken: cancellationToken
+ ).ConfigureAwait(false);
+
+ return __response.Body;
+ }
+ ///
+ /// Move asset collection
+ /// Move a manual asset collection under another collection, or to the top level. Only manual collections can be moved or act as folders; nesting is limited to 5 levels deep and cannot create a cycle.
+ ///
+ ///
+ /// Collection ID
+ /// Example: d8b6elcregj72v34jr8g
+ ///
+ ///
+ /// Optional idempotency key for safe request retries
+ /// Example: 550e8400-e29b-41d4-a716-446655440000
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ public async global::System.Threading.Tasks.Task> MoveAssetCollectionAsResponseAsync(
+ string collectionId,
+
+ global::Fal.MoveAssetCollectionRequest request,
+ string? idempotencyKey = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default)
+ {
+ request = request ?? throw new global::System.ArgumentNullException(nameof(request));
+
+ PrepareArguments(
+ client: HttpClient);
+ PrepareMoveAssetCollectionArguments(
+ httpClient: HttpClient,
+ collectionId: ref collectionId,
+ idempotencyKey: ref idempotencyKey,
+ request: request);
+
+
+ var __authorizations = global::Fal.EndPointSecurityResolver.ResolveAuthorizations(
+ availableAuthorizations: Authorizations,
+ securityRequirements: s_MoveAssetCollectionSecurityRequirements,
+ operationName: "MoveAssetCollectionAsync");
+
+ using var __timeoutCancellationTokenSource = global::Fal.AutoSDKRequestOptionsSupport.CreateTimeoutCancellationTokenSource(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ cancellationToken: cancellationToken);
+ var __effectiveCancellationToken = __timeoutCancellationTokenSource?.Token ?? cancellationToken;
+ var __effectiveReadResponseAsString = global::Fal.AutoSDKRequestOptionsSupport.GetReadResponseAsString(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ fallbackValue: ReadResponseAsString);
+ var __maxAttempts = global::Fal.AutoSDKRequestOptionsSupport.GetMaxAttempts(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ supportsRetry: true);
+
+ global::System.Net.Http.HttpRequestMessage __CreateHttpRequest()
+ {
+
+ var __pathBuilder = new global::Fal.PathBuilder(
+ path: $"/assets/collections/{collectionId}/move",
+ baseUri: HttpClient.BaseAddress);
+ var __path = __pathBuilder.ToString();
+ __path = global::Fal.AutoSDKRequestOptionsSupport.AppendQueryParameters(
+ path: __path,
+ clientParameters: Options.QueryParameters,
+ requestParameters: requestOptions?.QueryParameters);
+ var __httpRequest = new global::System.Net.Http.HttpRequestMessage(
+ method: global::System.Net.Http.HttpMethod.Post,
+ requestUri: new global::System.Uri(__path, global::System.UriKind.RelativeOrAbsolute));
+#if NET6_0_OR_GREATER
+ __httpRequest.Version = global::System.Net.HttpVersion.Version11;
+ __httpRequest.VersionPolicy = global::System.Net.Http.HttpVersionPolicy.RequestVersionOrHigher;
+#endif
+
+ foreach (var __authorization in __authorizations)
+ {
+ if (__authorization.Type == "Http" ||
+ __authorization.Type == "OAuth2" ||
+ __authorization.Type == "OpenIdConnect")
+ {
+ __httpRequest.Headers.Authorization = new global::System.Net.Http.Headers.AuthenticationHeaderValue(
+ scheme: __authorization.Name,
+ parameter: __authorization.Value);
+ }
+ else if (__authorization.Type == "ApiKey" &&
+ __authorization.Location == "Header")
+ {
+ __httpRequest.Headers.Add(__authorization.Name, __authorization.Value);
+ }
+ }
+
+ var __idempotencyKey = global::System.String.IsNullOrWhiteSpace(idempotencyKey)
+ ? CreateIdempotencyKey()
+ : idempotencyKey;
+ __httpRequest.Headers.TryAddWithoutValidation("Idempotency-Key", __idempotencyKey);
+
+ var __httpRequestContentBody = request.ToJson(JsonSerializerContext);
+ var __httpRequestContent = new global::System.Net.Http.StringContent(
+ content: __httpRequestContentBody,
+ encoding: global::System.Text.Encoding.UTF8,
+ mediaType: "application/json");
+ __httpRequest.Content = __httpRequestContent;
+ global::Fal.AutoSDKRequestOptionsSupport.ApplyHeaders(
+ request: __httpRequest,
+ clientHeaders: Options.Headers,
+ requestHeaders: requestOptions?.Headers);
+
+ PrepareRequest(
+ client: HttpClient,
+ request: __httpRequest);
+ PrepareMoveAssetCollectionRequest(
+ httpClient: HttpClient,
+ httpRequestMessage: __httpRequest,
+ collectionId: collectionId!,
+ idempotencyKey: idempotencyKey,
+ request: request);
+
+ return __httpRequest;
+ }
+
+ global::System.Net.Http.HttpRequestMessage? __httpRequest = null;
+ global::System.Net.Http.HttpResponseMessage? __response = null;
+ var __attemptNumber = 0;
+ try
+ {
+ for (var __attempt = 1; __attempt <= __maxAttempts; __attempt++)
+ {
+ __attemptNumber = __attempt;
+ __httpRequest = __CreateHttpRequest();
+ await global::Fal.AutoSDKRequestOptionsSupport.OnBeforeRequestAsync(
+ clientOptions: Options,
+ context: global::Fal.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "MoveAssetCollection",
+ methodName: "MoveAssetCollectionAsync",
+ pathTemplate: "$\"/assets/collections/{collectionId}/move\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: null,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attempt,
+ maxAttempts: __maxAttempts,
+ willRetry: false,
+ retryDelay: null,
+ retryReason: global::System.String.Empty,
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ try
+ {
+ __response = await HttpClient.SendAsync(
+ request: __httpRequest,
+ completionOption: global::System.Net.Http.HttpCompletionOption.ResponseContentRead,
+ cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
+ }
+ catch (global::System.Net.Http.HttpRequestException __exception)
+ {
+ var __retryDelay = global::Fal.AutoSDKRequestOptionsSupport.GetRetryDelay(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ response: null,
+ attempt: __attempt);
+ var __willRetry = __attempt < __maxAttempts && !__effectiveCancellationToken.IsCancellationRequested;
+ await global::Fal.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
+ clientOptions: Options,
+ context: global::Fal.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "MoveAssetCollection",
+ methodName: "MoveAssetCollectionAsync",
+ pathTemplate: "$\"/assets/collections/{collectionId}/move\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: null,
+ exception: __exception,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attempt,
+ maxAttempts: __maxAttempts,
+ willRetry: __willRetry,
+ retryDelay: __willRetry ? __retryDelay : (global::System.TimeSpan?)null,
+ retryReason: "exception",
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ if (!__willRetry)
+ {
+ throw;
+ }
+
+ __httpRequest.Dispose();
+ __httpRequest = null;
+ await global::Fal.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync(
+ retryDelay: __retryDelay,
+ cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
+ continue;
+ }
+
+ if (__response != null &&
+ __attempt < __maxAttempts &&
+ global::Fal.AutoSDKRequestOptionsSupport.ShouldRetryStatusCode(__response.StatusCode))
+ {
+ var __retryDelay = global::Fal.AutoSDKRequestOptionsSupport.GetRetryDelay(
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ response: __response,
+ attempt: __attempt);
+ await global::Fal.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
+ clientOptions: Options,
+ context: global::Fal.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "MoveAssetCollection",
+ methodName: "MoveAssetCollectionAsync",
+ pathTemplate: "$\"/assets/collections/{collectionId}/move\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: __response,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attempt,
+ maxAttempts: __maxAttempts,
+ willRetry: true,
+ retryDelay: __retryDelay,
+ retryReason: "status:" + ((int)__response.StatusCode).ToString(global::System.Globalization.CultureInfo.InvariantCulture),
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ __response.Dispose();
+ __response = null;
+ __httpRequest.Dispose();
+ __httpRequest = null;
+ await global::Fal.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync(
+ retryDelay: __retryDelay,
+ cancellationToken: __effectiveCancellationToken).ConfigureAwait(false);
+ continue;
+ }
+
+ break;
+ }
+
+ if (__response == null)
+ {
+ throw new global::System.InvalidOperationException("No response received.");
+ }
+
+ using (__response)
+ {
+
+ ProcessResponse(
+ client: HttpClient,
+ response: __response);
+ ProcessMoveAssetCollectionResponse(
+ httpClient: HttpClient,
+ httpResponseMessage: __response);
+ if (__response.IsSuccessStatusCode)
+ {
+ await global::Fal.AutoSDKRequestOptionsSupport.OnAfterSuccessAsync(
+ clientOptions: Options,
+ context: global::Fal.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "MoveAssetCollection",
+ methodName: "MoveAssetCollectionAsync",
+ pathTemplate: "$\"/assets/collections/{collectionId}/move\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: __response,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attemptNumber,
+ maxAttempts: __maxAttempts,
+ willRetry: false,
+ retryDelay: null,
+ retryReason: global::System.String.Empty,
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ }
+ else
+ {
+ await global::Fal.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
+ clientOptions: Options,
+ context: global::Fal.AutoSDKRequestOptionsSupport.CreateHookContext(
+ operationId: "MoveAssetCollection",
+ methodName: "MoveAssetCollectionAsync",
+ pathTemplate: "$\"/assets/collections/{collectionId}/move\"",
+ httpMethod: "POST",
+ baseUri: BaseUri,
+ request: __httpRequest!,
+ response: __response,
+ exception: null,
+ clientOptions: Options,
+ requestOptions: requestOptions,
+ attempt: __attemptNumber,
+ maxAttempts: __maxAttempts,
+ willRetry: false,
+ retryDelay: null,
+ retryReason: global::System.String.Empty,
+ cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false);
+ }
+ // Invalid request parameters
+ if ((int)__response.StatusCode == 400)
+ {
+ string? __content_400 = null;
+ global::System.Exception? __exception_400 = null;
+ global::Fal.MoveAssetCollectionResponse2? __value_400 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_400 = global::Fal.MoveAssetCollectionResponse2.FromJson(__content_400, JsonSerializerContext);
+ }
+ else
+ {
+ __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_400 = global::Fal.MoveAssetCollectionResponse2.FromJson(__content_400, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_400 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_400 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_400,
+ responseBody: __content_400,
+ responseObject: __value_400,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Authentication required
+ if ((int)__response.StatusCode == 401)
+ {
+ string? __content_401 = null;
+ global::System.Exception? __exception_401 = null;
+ global::Fal.MoveAssetCollectionResponse3? __value_401 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_401 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_401 = global::Fal.MoveAssetCollectionResponse3.FromJson(__content_401, JsonSerializerContext);
+ }
+ else
+ {
+ __content_401 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_401 = global::Fal.MoveAssetCollectionResponse3.FromJson(__content_401, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_401 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_401 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_401,
+ responseBody: __content_401,
+ responseObject: __value_401,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Access denied
+ if ((int)__response.StatusCode == 403)
+ {
+ string? __content_403 = null;
+ global::System.Exception? __exception_403 = null;
+ global::Fal.MoveAssetCollectionResponse4? __value_403 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_403 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_403 = global::Fal.MoveAssetCollectionResponse4.FromJson(__content_403, JsonSerializerContext);
+ }
+ else
+ {
+ __content_403 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_403 = global::Fal.MoveAssetCollectionResponse4.FromJson(__content_403, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_403 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_403 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_403,
+ responseBody: __content_403,
+ responseObject: __value_403,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Resource not found
+ if ((int)__response.StatusCode == 404)
+ {
+ string? __content_404 = null;
+ global::System.Exception? __exception_404 = null;
+ global::Fal.MoveAssetCollectionResponse5? __value_404 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_404 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_404 = global::Fal.MoveAssetCollectionResponse5.FromJson(__content_404, JsonSerializerContext);
+ }
+ else
+ {
+ __content_404 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_404 = global::Fal.MoveAssetCollectionResponse5.FromJson(__content_404, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_404 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_404 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_404,
+ responseBody: __content_404,
+ responseObject: __value_404,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Invalid request parameters
+ if ((int)__response.StatusCode == 409)
+ {
+ string? __content_409 = null;
+ global::System.Exception? __exception_409 = null;
+ global::Fal.MoveAssetCollectionResponse6? __value_409 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_409 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_409 = global::Fal.MoveAssetCollectionResponse6.FromJson(__content_409, JsonSerializerContext);
+ }
+ else
+ {
+ __content_409 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_409 = global::Fal.MoveAssetCollectionResponse6.FromJson(__content_409, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_409 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_409 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_409,
+ responseBody: __content_409,
+ responseObject: __value_409,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Invalid request parameters
+ if ((int)__response.StatusCode == 422)
+ {
+ string? __content_422 = null;
+ global::System.Exception? __exception_422 = null;
+ global::Fal.MoveAssetCollectionResponse7? __value_422 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_422 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_422 = global::Fal.MoveAssetCollectionResponse7.FromJson(__content_422, JsonSerializerContext);
+ }
+ else
+ {
+ __content_422 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_422 = global::Fal.MoveAssetCollectionResponse7.FromJson(__content_422, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_422 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_422 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_422,
+ responseBody: __content_422,
+ responseObject: __value_422,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Rate limit exceeded
+ if ((int)__response.StatusCode == 429)
+ {
+ string? __content_429 = null;
+ global::System.Exception? __exception_429 = null;
+ global::Fal.MoveAssetCollectionResponse8? __value_429 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_429 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_429 = global::Fal.MoveAssetCollectionResponse8.FromJson(__content_429, JsonSerializerContext);
+ }
+ else
+ {
+ __content_429 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_429 = global::Fal.MoveAssetCollectionResponse8.FromJson(__content_429, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_429 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_429 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_429,
+ responseBody: __content_429,
+ responseObject: __value_429,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Internal server error
+ if ((int)__response.StatusCode == 500)
+ {
+ string? __content_500 = null;
+ global::System.Exception? __exception_500 = null;
+ global::Fal.MoveAssetCollectionResponse9? __value_500 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_500 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_500 = global::Fal.MoveAssetCollectionResponse9.FromJson(__content_500, JsonSerializerContext);
+ }
+ else
+ {
+ __content_500 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_500 = global::Fal.MoveAssetCollectionResponse9.FromJson(__content_500, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_500 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_500 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_500,
+ responseBody: __content_500,
+ responseObject: __value_500,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ // Upstream asset service error
+ if ((int)__response.StatusCode == 502)
+ {
+ string? __content_502 = null;
+ global::System.Exception? __exception_502 = null;
+ global::Fal.MoveAssetCollectionResponse10? __value_502 = null;
+ try
+ {
+ if (__effectiveReadResponseAsString)
+ {
+ __content_502 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+ __value_502 = global::Fal.MoveAssetCollectionResponse10.FromJson(__content_502, JsonSerializerContext);
+ }
+ else
+ {
+ __content_502 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false);
+
+ __value_502 = global::Fal.MoveAssetCollectionResponse10.FromJson(__content_502, JsonSerializerContext);
+ }
+ }
+ catch (global::System.Exception __ex)
+ {
+ __exception_502 = __ex;
+ }
+
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content_502 ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __exception_502,
+ responseBody: __content_502,
+ responseObject: __value_502,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+
+ if (__effectiveReadResponseAsString)
+ {
+ var __content = await __response.Content.ReadAsStringAsync(
+ #if NET5_0_OR_GREATER
+ __effectiveCancellationToken
+ #endif
+ ).ConfigureAwait(false);
+
+ ProcessResponseContent(
+ client: HttpClient,
+ response: __response,
+ content: ref __content);
+ ProcessMoveAssetCollectionResponseContent(
+ httpClient: HttpClient,
+ httpResponseMessage: __response,
+ content: ref __content);
+
+ try
+ {
+ __response.EnsureSuccessStatusCode();
+
+ var __value = global::Fal.MoveAssetCollectionResponse.FromJson(__content, JsonSerializerContext) ??
+ throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" ");
+ return new global::Fal.AutoSDKHttpResponse(
+ statusCode: __response.StatusCode,
+ headers: global::Fal.AutoSDKHttpResponse.CreateHeaders(__response),
+ requestUri: __response.RequestMessage?.RequestUri,
+ body: __value);
+ }
+ catch (global::System.Exception __ex)
+ {
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __ex,
+ responseBody: __content,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ }
+ else
+ {
+ try
+ {
+ __response.EnsureSuccessStatusCode();
+ using var __content = await __response.Content.ReadAsStreamAsync(
+ #if NET5_0_OR_GREATER
+ __effectiveCancellationToken
+ #endif
+ ).ConfigureAwait(false);
+
+ var __value = await global::Fal.MoveAssetCollectionResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ??
+ throw new global::System.InvalidOperationException("Response deserialization failed.");
+ return new global::Fal.AutoSDKHttpResponse(
+ statusCode: __response.StatusCode,
+ headers: global::Fal.AutoSDKHttpResponse.CreateHeaders(__response),
+ requestUri: __response.RequestMessage?.RequestUri,
+ body: __value);
+ }
+ catch (global::System.Exception __ex)
+ {
+ string? __content = null;
+ try
+ {
+ __content = await __response.Content.ReadAsStringAsync(
+ #if NET5_0_OR_GREATER
+ __effectiveCancellationToken
+ #endif
+ ).ConfigureAwait(false);
+ }
+ catch (global::System.Exception)
+ {
+ }
+
+ throw global::Fal.ApiException.Create(
+ statusCode: __response.StatusCode,
+ message: __content ?? __response.ReasonPhrase ?? string.Empty,
+ innerException: __ex,
+ responseBody: __content,
+ responseHeaders: global::System.Linq.Enumerable.ToDictionary(
+ __response.Headers,
+ h => h.Key,
+ h => h.Value));
+ }
+ }
+
+ }
+ }
+ finally
+ {
+ __httpRequest?.Dispose();
+ }
+ }
+ ///
+ /// Move asset collection
+ /// Move a manual asset collection under another collection, or to the top level. Only manual collections can be moved or act as folders; nesting is limited to 5 levels deep and cannot create a cycle.
+ ///
+ ///
+ /// Collection ID
+ /// Example: d8b6elcregj72v34jr8g
+ ///
+ ///
+ /// Optional idempotency key for safe request retries
+ /// Example: 550e8400-e29b-41d4-a716-446655440000
+ ///
+ ///
+ /// Parent collection ID to move this collection under, or null to move it to the top level. Must be a manual collection; nesting is limited to 5 levels and cannot create a cycle.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ public async global::System.Threading.Tasks.Task MoveAssetCollectionAsync(
+ string collectionId,
+ string? idempotencyKey = default,
+ string? parentCollectionId = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default)
+ {
+ var __request = new global::Fal.MoveAssetCollectionRequest
+ {
+ ParentCollectionId = parentCollectionId,
+ };
+
+ return await MoveAssetCollectionAsync(
+ collectionId: collectionId,
+ idempotencyKey: idempotencyKey,
+ request: __request,
+ requestOptions: requestOptions,
+ cancellationToken: cancellationToken).ConfigureAwait(false);
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.IAssetsClient.CreateAssetCollection.g.cs b/src/libs/Fal/Generated/Fal.IAssetsClient.CreateAssetCollection.g.cs
index fd13611..d5f5c11 100644
--- a/src/libs/Fal/Generated/Fal.IAssetsClient.CreateAssetCollection.g.cs
+++ b/src/libs/Fal/Generated/Fal.IAssetsClient.CreateAssetCollection.g.cs
@@ -63,6 +63,9 @@ public partial interface IAssetsClient
///
/// Optional fal-hosted cover image URL for the collection
///
+ ///
+ /// Optional parent collection ID to nest this collection under (manual collections only). Omit or null to create a top-level collection.
+ ///
///
/// Assets filter DSL
///
@@ -76,6 +79,7 @@ public partial interface IAssetsClient
string? icon = default,
string? color = default,
string? coverImageUrl = default,
+ string? parentCollectionId = default,
object? filters = default,
global::Fal.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Fal/Generated/Fal.IAssetsClient.MoveAssetCollection.g.cs b/src/libs/Fal/Generated/Fal.IAssetsClient.MoveAssetCollection.g.cs
new file mode 100644
index 0000000..bb29161
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.IAssetsClient.MoveAssetCollection.g.cs
@@ -0,0 +1,78 @@
+#nullable enable
+
+namespace Fal
+{
+ public partial interface IAssetsClient
+ {
+ ///
+ /// Move asset collection
+ /// Move a manual asset collection under another collection, or to the top level. Only manual collections can be moved or act as folders; nesting is limited to 5 levels deep and cannot create a cycle.
+ ///
+ ///
+ /// Collection ID
+ /// Example: d8b6elcregj72v34jr8g
+ ///
+ ///
+ /// Optional idempotency key for safe request retries
+ /// Example: 550e8400-e29b-41d4-a716-446655440000
+ ///
+ ///
+ /// 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 MoveAssetCollectionAsync(
+ string collectionId,
+
+ global::Fal.MoveAssetCollectionRequest request,
+ string? idempotencyKey = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Move asset collection
+ /// Move a manual asset collection under another collection, or to the top level. Only manual collections can be moved or act as folders; nesting is limited to 5 levels deep and cannot create a cycle.
+ ///
+ ///
+ /// Collection ID
+ /// Example: d8b6elcregj72v34jr8g
+ ///
+ ///
+ /// Optional idempotency key for safe request retries
+ /// Example: 550e8400-e29b-41d4-a716-446655440000
+ ///
+ ///
+ /// 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> MoveAssetCollectionAsResponseAsync(
+ string collectionId,
+
+ global::Fal.MoveAssetCollectionRequest request,
+ string? idempotencyKey = default,
+ global::Fal.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Move asset collection
+ /// Move a manual asset collection under another collection, or to the top level. Only manual collections can be moved or act as folders; nesting is limited to 5 levels deep and cannot create a cycle.
+ ///
+ ///
+ /// Collection ID
+ /// Example: d8b6elcregj72v34jr8g
+ ///
+ ///
+ /// Optional idempotency key for safe request retries
+ /// Example: 550e8400-e29b-41d4-a716-446655440000
+ ///
+ ///
+ /// Parent collection ID to move this collection under, or null to move it to the top level. Must be a manual collection; nesting is limited to 5 levels and cannot create a cycle.
+ ///
+ /// 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 MoveAssetCollectionAsync(
+ string collectionId,
+ string? idempotencyKey = default,
+ string? parentCollectionId = 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.IModelsClient.GetUsage.g.cs b/src/libs/Fal/Generated/Fal.IModelsClient.GetUsage.g.cs
index ed6cb99..77a06ea 100644
--- a/src/libs/Fal/Generated/Fal.IModelsClient.GetUsage.g.cs
+++ b/src/libs/Fal/Generated/Fal.IModelsClient.GetUsage.g.cs
@@ -57,8 +57,16 @@ public partial interface IModelsClient
/// Filter by specific endpoint ID(s). Accepts 1-50 endpoint IDs. Supports comma-separated values: ?endpoint_id=model1,model2 or array syntax: ?endpoint_id=model1&endpoint_id=model2
/// Example: [fal-ai/flux/dev]
///
+ ///
+ /// Filter by specific API key ID(s). Accepts 1-50 key IDs. Supports comma-separated values: ?api_key_id=key1,key2 or array syntax: ?api_key_id=key1&api_key_id=key2
+ /// Example: [abc123]
+ ///
+ ///
+ /// Filter by team member login username(s) (nickname). Accepts 1-50 usernames. Supports comma-separated values: ?login_username=alice,bob or array syntax: ?login_username=alice&login_username=bob
+ /// Example: [alice]
+ ///
///
- /// Data to include in the response. Use 'time_series' for time-bucketed data, 'summary' for aggregate statistics, and 'auth_method' to include authentication method information (formatted with user key aliases). At least one of 'time_series' or 'summary' is required.
+ /// Data to include in the response. Use 'time_series' for time-bucketed data, 'summary' for aggregate statistics, 'auth_method' to include a formatted authentication method label, and 'auth_method_structured' to include a machine-readable auth method object (detail, api_key_id, login_username). At least one of 'time_series' or 'summary' is required.
/// Default Value: [time_series]
/// Example: [time_series, auth_method]
///
@@ -74,6 +82,8 @@ public partial interface IModelsClient
global::Fal.GetUsageTimeframe? timeframe = default,
global::Fal.GetUsageBoundToTimeframe? boundToTimeframe = default,
global::Fal.AnyOf>? endpointId = default,
+ global::Fal.AnyOf>? apiKeyId = default,
+ global::Fal.AnyOf>? loginUsername = default,
global::Fal.AnyOf>? expand = default,
global::Fal.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
@@ -130,8 +140,16 @@ public partial interface IModelsClient
/// Filter by specific endpoint ID(s). Accepts 1-50 endpoint IDs. Supports comma-separated values: ?endpoint_id=model1,model2 or array syntax: ?endpoint_id=model1&endpoint_id=model2
/// Example: [fal-ai/flux/dev]
///
+ ///
+ /// Filter by specific API key ID(s). Accepts 1-50 key IDs. Supports comma-separated values: ?api_key_id=key1,key2 or array syntax: ?api_key_id=key1&api_key_id=key2
+ /// Example: [abc123]
+ ///
+ ///
+ /// Filter by team member login username(s) (nickname). Accepts 1-50 usernames. Supports comma-separated values: ?login_username=alice,bob or array syntax: ?login_username=alice&login_username=bob
+ /// Example: [alice]
+ ///
///
- /// Data to include in the response. Use 'time_series' for time-bucketed data, 'summary' for aggregate statistics, and 'auth_method' to include authentication method information (formatted with user key aliases). At least one of 'time_series' or 'summary' is required.
+ /// Data to include in the response. Use 'time_series' for time-bucketed data, 'summary' for aggregate statistics, 'auth_method' to include a formatted authentication method label, and 'auth_method_structured' to include a machine-readable auth method object (detail, api_key_id, login_username). At least one of 'time_series' or 'summary' is required.
/// Default Value: [time_series]
/// Example: [time_series, auth_method]
///
@@ -147,6 +165,8 @@ public partial interface IModelsClient
global::Fal.GetUsageTimeframe? timeframe = default,
global::Fal.GetUsageBoundToTimeframe? boundToTimeframe = default,
global::Fal.AnyOf>? endpointId = default,
+ global::Fal.AnyOf>? apiKeyId = default,
+ global::Fal.AnyOf>? loginUsername = default,
global::Fal.AnyOf>? expand = default,
global::Fal.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseCollectionType.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseCollectionType.g.cs
new file mode 100644
index 0000000..7aabdf9
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseCollectionType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseCollectionTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseCollectionType 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.MoveAssetCollectionResponseCollectionTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseCollectionType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseCollectionType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseCollectionType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseCollectionTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullable.g.cs
new file mode 100644
index 0000000..06cb404
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseCollectionTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseCollectionType? 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.MoveAssetCollectionResponseCollectionTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseCollectionType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseCollectionType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseCollectionType? 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.MoveAssetCollectionResponseCollectionTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType.g.cs
new file mode 100644
index 0000000..5d9873e
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType 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.MoveAssetCollectionResponseErrorTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType2.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType2.g.cs
new file mode 100644
index 0000000..e6b9ed6
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType2.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType2 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.MoveAssetCollectionResponseErrorType2Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType2);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType2 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType2Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType2Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType2Nullable.g.cs
new file mode 100644
index 0000000..2655c3f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType2Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType2? 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.MoveAssetCollectionResponseErrorType2Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType2?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType2? 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.MoveAssetCollectionResponseErrorType2Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType3.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType3.g.cs
new file mode 100644
index 0000000..177cb22
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType3.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType3JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType3 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.MoveAssetCollectionResponseErrorType3Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType3);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType3 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType3Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType3Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType3Nullable.g.cs
new file mode 100644
index 0000000..8ec9f55
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType3Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType3NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType3? 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.MoveAssetCollectionResponseErrorType3Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType3?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType3? 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.MoveAssetCollectionResponseErrorType3Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType4.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType4.g.cs
new file mode 100644
index 0000000..3973da7
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType4.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType4JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType4 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.MoveAssetCollectionResponseErrorType4Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType4);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType4 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType4Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType4Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType4Nullable.g.cs
new file mode 100644
index 0000000..3a96bcb
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType4Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType4NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType4? 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.MoveAssetCollectionResponseErrorType4Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType4?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType4? 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.MoveAssetCollectionResponseErrorType4Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType5.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType5.g.cs
new file mode 100644
index 0000000..b63a11f
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType5.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType5JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType5 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.MoveAssetCollectionResponseErrorType5Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType5);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType5 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType5Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType5Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType5Nullable.g.cs
new file mode 100644
index 0000000..3be6c18
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType5Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType5NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType5? 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.MoveAssetCollectionResponseErrorType5Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType5?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType5? 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.MoveAssetCollectionResponseErrorType5Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType6.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType6.g.cs
new file mode 100644
index 0000000..ef4575d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType6.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType6JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType6 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.MoveAssetCollectionResponseErrorType6Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType6);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType6 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType6Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType6Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType6Nullable.g.cs
new file mode 100644
index 0000000..41a0a1e
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType6Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType6NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType6? 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.MoveAssetCollectionResponseErrorType6Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType6?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType6? 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.MoveAssetCollectionResponseErrorType6Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType7.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType7.g.cs
new file mode 100644
index 0000000..cea3bc4
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType7.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType7JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType7 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.MoveAssetCollectionResponseErrorType7Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType7)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType7);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType7 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType7Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType7Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType7Nullable.g.cs
new file mode 100644
index 0000000..52d0a9c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType7Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType7NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType7? 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.MoveAssetCollectionResponseErrorType7Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType7)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType7?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType7? 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.MoveAssetCollectionResponseErrorType7Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType8.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType8.g.cs
new file mode 100644
index 0000000..0692549
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType8.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType8JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType8 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.MoveAssetCollectionResponseErrorType8Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType8)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType8);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType8 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType8Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType8Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType8Nullable.g.cs
new file mode 100644
index 0000000..1c07c1a
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType8Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType8NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType8? 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.MoveAssetCollectionResponseErrorType8Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType8)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType8?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType8? 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.MoveAssetCollectionResponseErrorType8Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType9.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType9.g.cs
new file mode 100644
index 0000000..4ed9040
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType9.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType9JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType9 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.MoveAssetCollectionResponseErrorType9Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType9)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType9);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType9 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Fal.MoveAssetCollectionResponseErrorType9Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType9Nullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType9Nullable.g.cs
new file mode 100644
index 0000000..94c95c3
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorType9Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorType9NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType9? 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.MoveAssetCollectionResponseErrorType9Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType9)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType9?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType9? 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.MoveAssetCollectionResponseErrorType9Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullable.g.cs b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullable.g.cs
new file mode 100644
index 0000000..0bf6c96
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Fal.JsonConverters
+{
+ ///
+ public sealed class MoveAssetCollectionResponseErrorTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Fal.MoveAssetCollectionResponseErrorType? 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.MoveAssetCollectionResponseErrorTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Fal.MoveAssetCollectionResponseErrorType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Fal.MoveAssetCollectionResponseErrorType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Fal.MoveAssetCollectionResponseErrorType? 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.MoveAssetCollectionResponseErrorTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
index 2a4c68c..6d754d1 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContext.g.cs
@@ -741,6 +741,46 @@ namespace Fal
typeof(global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType9NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeNullableJsonConverter),
@@ -2249,6 +2289,10 @@ namespace Fal
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -2361,6 +2405,7 @@ namespace Fal
[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.MoveAssetCollectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.AddAssetToCollectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.RemoveAssetFromCollectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.CreateAssetCharacterRequest))]
@@ -2497,8 +2542,10 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseTimeSerie))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseTimeSerieResult))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseSummaryItem))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseSummaryItemAuthMethodStructured))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponse2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseError))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.GetUsageResponseErrorType), TypeInfoPropertyName = "GetUsageResponseErrorType2_3")]
@@ -2836,9 +2883,6 @@ namespace Fal
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError5))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType5), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType6), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse7))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -3578,6 +3622,46 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType9NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeNullableJsonConverter),
@@ -5086,6 +5170,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -5176,6 +5264,9 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType6), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse7))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseError7))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponseErrorType7), TypeInfoPropertyName = "DeleteAssetCollectionResponseErrorType72")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetCollectionResponse8))]
@@ -5244,6 +5335,36 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UnfavoriteAssetCollectionResponse10))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UnfavoriteAssetCollectionResponseError9))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UnfavoriteAssetCollectionResponseErrorType9), TypeInfoPropertyName = "UnfavoriteAssetCollectionResponseErrorType92")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseCollection))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseCollectionType), TypeInfoPropertyName = "MoveAssetCollectionResponseCollectionType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType2), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType3), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType4), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType5), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType6), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType7), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse9))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType8), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType82")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponse10))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseError9))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.MoveAssetCollectionResponseErrorType9), TypeInfoPropertyName = "MoveAssetCollectionResponseErrorType92")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ListAssetCollectionAssetsResponseAsset))]
@@ -5643,39 +5764,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse5))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType4), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType5), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType6), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse8))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType7), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType72")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse9))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError8))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType8), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType82")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse10))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError9))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType9), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType92")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType2), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType3), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType4), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType5), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType6), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType62")]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -6415,6 +6503,46 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType9NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeNullableJsonConverter),
@@ -7923,6 +8051,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -8013,6 +8145,39 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType5), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType6), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType7), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType72")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse9))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError8))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType8), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType82")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponse10))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseError9))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.UpdateAssetTagResponseErrorType9), TypeInfoPropertyName = "UpdateAssetTagResponseErrorType92")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType2), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType3), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType4), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType5), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType6), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponse7))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseError7))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.DeleteAssetTagResponseErrorType7), TypeInfoPropertyName = "DeleteAssetTagResponseErrorType72")]
@@ -8480,39 +8645,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType2), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType3), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType4), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType5), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType52")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse7))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType6), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType62")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseTimeSerie))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseTimeSerieResult))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseSummaryItem))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType2), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType3), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse5))]
internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -9252,6 +9384,46 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType9NullableJsonConverter),
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8NullableJsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9JsonConverter),
+
+ typeof(global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9NullableJsonConverter),
+
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeJsonConverter),
typeof(global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeNullableJsonConverter),
@@ -10760,6 +10932,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
+ typeof(global::Fal.JsonConverters.AnyOfJsonConverter>),
+
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
typeof(global::Fal.JsonConverters.AnyOfJsonConverter),
@@ -10850,6 +11026,39 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Fal.JsonConverters.UnixTimestampJsonConverter),
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType2), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType3), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType4), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType5), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponse7))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseError6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessListRequestsByEndpointResponseErrorType6), TypeInfoPropertyName = "ServerlessListRequestsByEndpointResponseErrorType62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseTimeSerie))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseTimeSerieResult))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseSummaryItem))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType2), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType3), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse5))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseError4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponseErrorType4), TypeInfoPropertyName = "ServerlessGetUsageResponseErrorType42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Fal.ServerlessGetUsageResponse6))]
@@ -11539,6 +11748,26 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType8NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType9JsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.UnfavoriteAssetCollectionResponseErrorType9NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseCollectionTypeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorTypeNullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType2NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType3NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType4NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType5NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType6NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType7NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType8NullableJsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9JsonConverter());
+ options.Converters.Add(new global::Fal.JsonConverters.MoveAssetCollectionResponseErrorType9NullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListAssetCollectionAssetsResponseAssetTypeNullableJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.ListAssetCollectionAssetsResponseErrorTypeJsonConverter());
@@ -12293,6 +12522,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
+ options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
+ options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::Fal.JsonConverters.AnyOfJsonConverter>());
diff --git a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
index 2f2a952..80d9496 100644
--- a/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Fal/Generated/Fal.JsonSerializerContextTypes.g.cs
@@ -112,6815 +112,6947 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Fal.AddAssetToCollectionRequest? Type21 { get; set; }
+ public global::Fal.MoveAssetCollectionRequest? Type21 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionRequest? Type22 { get; set; }
+ public global::Fal.AddAssetToCollectionRequest? Type22 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterRequest? Type23 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionRequest? Type23 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type24 { get; set; }
+ public global::Fal.CreateAssetCharacterRequest? Type24 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterRequest? Type25 { get; set; }
+ public global::System.Collections.Generic.IList? Type25 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagRequest? Type26 { get; set; }
+ public global::Fal.UpdateAssetCharacterRequest? Type26 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetRequest? Type27 { get; set; }
+ public global::Fal.CreateAssetTagRequest? Type27 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagRequest? Type28 { get; set; }
+ public global::Fal.SetAssetTagsForAssetRequest? Type28 { get; set; }
///
///
///
- public global::Fal.UploadAssetRequest? Type29 { get; set; }
+ public global::Fal.UpdateAssetTagRequest? Type29 { get; set; }
///
///
///
- public global::Fal.UploadAssetRequestType? Type30 { get; set; }
+ public global::Fal.UploadAssetRequest? Type30 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetRequest? Type31 { get; set; }
+ public global::Fal.UploadAssetRequestType? Type31 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetRequest? Type32 { get; set; }
+ public global::Fal.FavoriteAssetRequest? Type32 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagRequest? Type33 { get; set; }
+ public global::Fal.UnfavoriteAssetRequest? Type33 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagRequest? Type34 { get; set; }
+ public global::Fal.AssignAssetTagRequest? Type34 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclRequest? Type35 { get; set; }
+ public global::Fal.UnassignAssetTagRequest? Type35 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclRequestDefault? Type36 { get; set; }
+ public global::Fal.SetStorageFileAclRequest? Type36 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type37 { get; set; }
+ public global::Fal.SetStorageFileAclRequestDefault? Type37 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclRequestRule? Type38 { get; set; }
+ public global::System.Collections.Generic.IList? Type38 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclRequestRuleDecision? Type39 { get; set; }
+ public global::Fal.SetStorageFileAclRequestRule? Type39 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlRequest? Type40 { get; set; }
+ public global::Fal.SetStorageFileAclRequestRuleDecision? Type40 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsRequest? Type41 { get; set; }
+ public global::Fal.SignStorageFileUrlRequest? Type41 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsRequestInitialAcl? Type42 { get; set; }
+ public global::Fal.UpdateStorageSettingsRequest? Type42 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsRequestInitialAclDefault? Type43 { get; set; }
+ public global::Fal.UpdateStorageSettingsRequestInitialAcl? Type43 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type44 { get; set; }
+ public global::Fal.UpdateStorageSettingsRequestInitialAclDefault? Type44 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsRequestInitialAclRule? Type45 { get; set; }
+ public global::System.Collections.Generic.IList? Type45 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsRequestInitialAclRuleDecision? Type46 { get; set; }
+ public global::Fal.UpdateStorageSettingsRequestInitialAclRule? Type46 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlRequest? Type47 { get; set; }
+ public global::Fal.UpdateStorageSettingsRequestInitialAclRuleDecision? Type47 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileRequest? Type48 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlRequest? Type48 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type49 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileRequest? Type49 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryRequestItem? Type50 { get; set; }
+ public global::System.Collections.Generic.IList? Type50 { get; set; }
///
///
///
- public global::Fal.AnyOf>? Type51 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRequestItem? Type51 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryRequestItemConditionType? Type52 { get; set; }
+ public global::Fal.AnyOf>? Type52 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type53 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRequestItemConditionType? Type53 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRequestItem? Type54 { get; set; }
+ public global::System.Collections.Generic.IList? Type54 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRequestItemConditionType? Type55 { get; set; }
+ public global::Fal.ServerlessLogsStreamRequestItem? Type55 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceRequest? Type56 { get; set; }
+ public global::Fal.ServerlessLogsStreamRequestItemConditionType? Type56 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceRequestInstanceType? Type57 { get; set; }
+ public global::Fal.CreateComputeInstanceRequest? Type57 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceRequestSector? Type58 { get; set; }
+ public global::Fal.CreateComputeInstanceRequestInstanceType? Type58 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyRequest? Type59 { get; set; }
+ public global::Fal.CreateComputeInstanceRequestSector? Type59 { get; set; }
///
///
///
- public global::Fal.GetModelsStatus? Type60 { get; set; }
+ public global::Fal.CreateApiKeyRequest? Type60 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type61 { get; set; }
+ public global::Fal.GetModelsStatus? Type61 { get; set; }
///
///
///
- public global::System.DateTime? Type62 { get; set; }
+ public global::Fal.AnyOf? Type62 { get; set; }
///
///
///
- public global::Fal.GetUsageTimeframe? Type63 { get; set; }
+ public global::System.DateTime? Type63 { get; set; }
///
///
///
- public global::Fal.GetUsageBoundToTimeframe? Type64 { get; set; }
+ public global::Fal.GetUsageTimeframe? Type64 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsTimeframe? Type65 { get; set; }
+ public global::Fal.GetUsageBoundToTimeframe? Type65 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsBoundToTimeframe? Type66 { get; set; }
+ public global::Fal.GetAnalyticsTimeframe? Type66 { get; set; }
///
///
///
- public global::System.Guid? Type67 { get; set; }
+ public global::Fal.GetAnalyticsBoundToTimeframe? Type67 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointStatus? Type68 { get; set; }
+ public global::System.Guid? Type68 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointSortBy? Type69 { get; set; }
+ public global::Fal.ListRequestsByEndpointStatus? Type69 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type70 { get; set; }
+ public global::Fal.ListRequestsByEndpointSortBy? Type70 { get; set; }
///
///
///
- public global::Fal.ListAssetsMediaTypeItem? Type71 { get; set; }
+ public global::System.Collections.Generic.IList? Type71 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type72 { get; set; }
+ public global::Fal.ListAssetsMediaTypeItem? Type72 { get; set; }
///
///
///
- public global::Fal.ListAssetsSourceItem? Type73 { get; set; }
+ public global::System.Collections.Generic.IList? Type73 { get; set; }
///
///
///
- public global::Fal.ListAssetsSection? Type74 { get; set; }
+ public global::Fal.ListAssetsSourceItem? Type74 { get; set; }
///
///
///
- public global::Fal.ListAssetsTagMode? Type75 { get; set; }
+ public global::Fal.ListAssetsSection? Type75 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type76 { get; set; }
+ public global::Fal.ListAssetsTagMode? Type76 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsMediaTypeItem? Type77 { get; set; }
+ public global::System.Collections.Generic.IList? Type77 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type78 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsMediaTypeItem? Type78 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsSourceItem? Type79 { get; set; }
+ public global::System.Collections.Generic.IList? Type79 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsSection? Type80 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsSourceItem? Type80 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsTagMode? Type81 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsSection? Type81 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsTimeframe? Type82 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsTagMode? Type82 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsBoundToTimeframe? Type83 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsTimeframe? Type83 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryRunSource? Type84 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsBoundToTimeframe? Type84 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamRunSource? Type85 { get; set; }
+ public global::Fal.ServerlessLogsHistoryRunSource? Type85 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointStatus? Type86 { get; set; }
+ public global::Fal.ServerlessLogsStreamRunSource? Type86 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointSortBy? Type87 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointStatus? Type87 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageTimeframe? Type88 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointSortBy? Type88 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageBoundToTimeframe? Type89 { get; set; }
+ public global::Fal.ServerlessGetUsageTimeframe? Type89 { get; set; }
///
///
///
- public global::Fal.GetFocusReportSource? Type90 { get; set; }
+ public global::Fal.ServerlessGetUsageBoundToTimeframe? Type90 { get; set; }
///
///
///
- public global::Fal.GetFocusReportTimeframe? Type91 { get; set; }
+ public global::Fal.GetFocusReportSource? Type91 { get; set; }
///
///
///
- public global::Fal.GetFocusReportBoundToTimeframe? Type92 { get; set; }
+ public global::Fal.GetFocusReportTimeframe? Type92 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageTimeframe? Type93 { get; set; }
+ public global::Fal.GetFocusReportBoundToTimeframe? Type93 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageBoundToTimeframe? Type94 { get; set; }
+ public global::Fal.GetOrganizationUsageTimeframe? Type94 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse? Type95 { get; set; }
+ public global::Fal.GetOrganizationUsageBoundToTimeframe? Type95 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type96 { get; set; }
+ public global::Fal.GetModelsResponse? Type96 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModel? Type97 { get; set; }
+ public global::System.Collections.Generic.IList? Type97 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadata? Type98 { get; set; }
+ public global::Fal.GetModelsResponseModel? Type98 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataStatus? Type99 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadata? Type99 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataLicenseType? Type100 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataStatus? Type100 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataGroup? Type101 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataLicenseType? Type101 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelMetadataKind? Type102 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataGroup? Type102 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type103 { get; set; }
+ public global::Fal.GetModelsResponseModelMetadataKind? Type103 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant1? Type104 { get; set; }
+ public global::Fal.AnyOf? Type104 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2? Type105 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant1? Type105 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type106 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2? Type106 { get; set; }
///
///
///
- public global::Fal.AnyOf? Type107 { get; set; }
+ public global::Fal.GetModelsResponseModelOpenapiVariant2Error? Type107 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type108 { get; set; }
+ public global::Fal.AnyOf? Type108 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type109 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum? Type109 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type110 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnum2? Type110 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse2? Type111 { get; set; }
+ public global::Fal.GetModelsResponseModelEnterpriseStatusEnumError? Type111 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError? Type112 { get; set; }
+ public global::Fal.GetModelsResponse2? Type112 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType? Type113 { get; set; }
+ public global::Fal.GetModelsResponseError? Type113 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse3? Type114 { get; set; }
+ public global::Fal.GetModelsResponseErrorType? Type114 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError2? Type115 { get; set; }
+ public global::Fal.GetModelsResponse3? Type115 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType2? Type116 { get; set; }
+ public global::Fal.GetModelsResponseError2? Type116 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse4? Type117 { get; set; }
+ public global::Fal.GetModelsResponseErrorType2? Type117 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError3? Type118 { get; set; }
+ public global::Fal.GetModelsResponse4? Type118 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType3? Type119 { get; set; }
+ public global::Fal.GetModelsResponseError3? Type119 { get; set; }
///
///
///
- public global::Fal.GetModelsResponse5? Type120 { get; set; }
+ public global::Fal.GetModelsResponseErrorType3? Type120 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseError4? Type121 { get; set; }
+ public global::Fal.GetModelsResponse5? Type121 { get; set; }
///
///
///
- public global::Fal.GetModelsResponseErrorType4? Type122 { get; set; }
+ public global::Fal.GetModelsResponseError4? Type122 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse? Type123 { get; set; }
+ public global::Fal.GetModelsResponseErrorType4? Type123 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type124 { get; set; }
+ public global::Fal.GetPricingResponse? Type124 { get; set; }
///
///
///
- public global::Fal.GetPricingResponsePrice? Type125 { get; set; }
+ public global::System.Collections.Generic.IList? Type125 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse2? Type126 { get; set; }
+ public global::Fal.GetPricingResponsePrice? Type126 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError? Type127 { get; set; }
+ public global::Fal.GetPricingResponse2? Type127 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType? Type128 { get; set; }
+ public global::Fal.GetPricingResponseError? Type128 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse3? Type129 { get; set; }
+ public global::Fal.GetPricingResponseErrorType? Type129 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError2? Type130 { get; set; }
+ public global::Fal.GetPricingResponse3? Type130 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType2? Type131 { get; set; }
+ public global::Fal.GetPricingResponseError2? Type131 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse4? Type132 { get; set; }
+ public global::Fal.GetPricingResponseErrorType2? Type132 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError3? Type133 { get; set; }
+ public global::Fal.GetPricingResponse4? Type133 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType3? Type134 { get; set; }
+ public global::Fal.GetPricingResponseError3? Type134 { get; set; }
///
///
///
- public global::Fal.GetPricingResponse5? Type135 { get; set; }
+ public global::Fal.GetPricingResponseErrorType3? Type135 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseError4? Type136 { get; set; }
+ public global::Fal.GetPricingResponse5? Type136 { get; set; }
///
///
///
- public global::Fal.GetPricingResponseErrorType4? Type137 { get; set; }
+ public global::Fal.GetPricingResponseError4? Type137 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse? Type138 { get; set; }
+ public global::Fal.GetPricingResponseErrorType4? Type138 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseEstimateType? Type139 { get; set; }
+ public global::Fal.EstimatePricingResponse? Type139 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse2? Type140 { get; set; }
+ public global::Fal.EstimatePricingResponseEstimateType? Type140 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError? Type141 { get; set; }
+ public global::Fal.EstimatePricingResponse2? Type141 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType? Type142 { get; set; }
+ public global::Fal.EstimatePricingResponseError? Type142 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse3? Type143 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType? Type143 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError2? Type144 { get; set; }
+ public global::Fal.EstimatePricingResponse3? Type144 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType2? Type145 { get; set; }
+ public global::Fal.EstimatePricingResponseError2? Type145 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse4? Type146 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType2? Type146 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError3? Type147 { get; set; }
+ public global::Fal.EstimatePricingResponse4? Type147 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType3? Type148 { get; set; }
+ public global::Fal.EstimatePricingResponseError3? Type148 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponse5? Type149 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType3? Type149 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseError4? Type150 { get; set; }
+ public global::Fal.EstimatePricingResponse5? Type150 { get; set; }
///
///
///
- public global::Fal.EstimatePricingResponseErrorType4? Type151 { get; set; }
+ public global::Fal.EstimatePricingResponseError4? Type151 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse? Type152 { get; set; }
+ public global::Fal.EstimatePricingResponseErrorType4? Type152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type153 { get; set; }
+ public global::Fal.GetUsageResponse? Type153 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerie? Type154 { get; set; }
+ public global::System.Collections.Generic.IList? Type154 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type155 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerie? Type155 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseTimeSerieResult? Type156 { get; set; }
+ public global::System.Collections.Generic.IList? Type156 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type157 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerieResult? Type157 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseSummaryItem? Type158 { get; set; }
+ public global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured? Type158 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse2? Type159 { get; set; }
+ public global::System.Collections.Generic.IList? Type159 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError? Type160 { get; set; }
+ public global::Fal.GetUsageResponseSummaryItem? Type160 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType? Type161 { get; set; }
+ public global::Fal.GetUsageResponseSummaryItemAuthMethodStructured? Type161 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse3? Type162 { get; set; }
+ public global::Fal.GetUsageResponse2? Type162 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError2? Type163 { get; set; }
+ public global::Fal.GetUsageResponseError? Type163 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType2? Type164 { get; set; }
+ public global::Fal.GetUsageResponseErrorType? Type164 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse4? Type165 { get; set; }
+ public global::Fal.GetUsageResponse3? Type165 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError3? Type166 { get; set; }
+ public global::Fal.GetUsageResponseError2? Type166 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType3? Type167 { get; set; }
+ public global::Fal.GetUsageResponseErrorType2? Type167 { get; set; }
///
///
///
- public global::Fal.GetUsageResponse5? Type168 { get; set; }
+ public global::Fal.GetUsageResponse4? Type168 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseError4? Type169 { get; set; }
+ public global::Fal.GetUsageResponseError3? Type169 { get; set; }
///
///
///
- public global::Fal.GetUsageResponseErrorType4? Type170 { get; set; }
+ public global::Fal.GetUsageResponseErrorType3? Type170 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse? Type171 { get; set; }
+ public global::Fal.GetUsageResponse5? Type171 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type172 { get; set; }
+ public global::Fal.GetUsageResponseError4? Type172 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerie? Type173 { get; set; }
+ public global::Fal.GetUsageResponseErrorType4? Type173 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type174 { get; set; }
+ public global::Fal.GetAnalyticsResponse? Type174 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseTimeSerieResult? Type175 { get; set; }
+ public global::System.Collections.Generic.IList? Type175 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type176 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerie? Type176 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseSummaryItem? Type177 { get; set; }
+ public global::System.Collections.Generic.IList? Type177 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse2? Type178 { get; set; }
+ public global::Fal.GetAnalyticsResponseTimeSerieResult? Type178 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError? Type179 { get; set; }
+ public global::System.Collections.Generic.IList? Type179 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType? Type180 { get; set; }
+ public global::Fal.GetAnalyticsResponseSummaryItem? Type180 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse3? Type181 { get; set; }
+ public global::Fal.GetAnalyticsResponse2? Type181 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError2? Type182 { get; set; }
+ public global::Fal.GetAnalyticsResponseError? Type182 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType2? Type183 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType? Type183 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse4? Type184 { get; set; }
+ public global::Fal.GetAnalyticsResponse3? Type184 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError3? Type185 { get; set; }
+ public global::Fal.GetAnalyticsResponseError2? Type185 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType3? Type186 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType2? Type186 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse5? Type187 { get; set; }
+ public global::Fal.GetAnalyticsResponse4? Type187 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError4? Type188 { get; set; }
+ public global::Fal.GetAnalyticsResponseError3? Type188 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType4? Type189 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType3? Type189 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse6? Type190 { get; set; }
+ public global::Fal.GetAnalyticsResponse5? Type190 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError5? Type191 { get; set; }
+ public global::Fal.GetAnalyticsResponseError4? Type191 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType5? Type192 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType4? Type192 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponse7? Type193 { get; set; }
+ public global::Fal.GetAnalyticsResponse6? Type193 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseError6? Type194 { get; set; }
+ public global::Fal.GetAnalyticsResponseError5? Type194 { get; set; }
///
///
///
- public global::Fal.GetAnalyticsResponseErrorType6? Type195 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType5? Type195 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse? Type196 { get; set; }
+ public global::Fal.GetAnalyticsResponse7? Type196 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type197 { get; set; }
+ public global::Fal.GetAnalyticsResponseError6? Type197 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseBillingEvent? Type198 { get; set; }
+ public global::Fal.GetAnalyticsResponseErrorType6? Type198 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse2? Type199 { get; set; }
+ public global::Fal.GetBillingEventsResponse? Type199 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError? Type200 { get; set; }
+ public global::System.Collections.Generic.IList? Type200 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType? Type201 { get; set; }
+ public global::Fal.GetBillingEventsResponseBillingEvent? Type201 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse3? Type202 { get; set; }
+ public global::Fal.GetBillingEventsResponse2? Type202 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError2? Type203 { get; set; }
+ public global::Fal.GetBillingEventsResponseError? Type203 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType2? Type204 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType? Type204 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse4? Type205 { get; set; }
+ public global::Fal.GetBillingEventsResponse3? Type205 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError3? Type206 { get; set; }
+ public global::Fal.GetBillingEventsResponseError2? Type206 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType3? Type207 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType2? Type207 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse5? Type208 { get; set; }
+ public global::Fal.GetBillingEventsResponse4? Type208 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError4? Type209 { get; set; }
+ public global::Fal.GetBillingEventsResponseError3? Type209 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType4? Type210 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType3? Type210 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponse6? Type211 { get; set; }
+ public global::Fal.GetBillingEventsResponse5? Type211 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseError5? Type212 { get; set; }
+ public global::Fal.GetBillingEventsResponseError4? Type212 { get; set; }
///
///
///
- public global::Fal.GetBillingEventsResponseErrorType5? Type213 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType4? Type213 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse? Type214 { get; set; }
+ public global::Fal.GetBillingEventsResponse6? Type214 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type215 { get; set; }
+ public global::Fal.GetBillingEventsResponseError5? Type215 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type216 { get; set; }
+ public global::Fal.GetBillingEventsResponseErrorType5? Type216 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse2? Type217 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse? Type217 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError? Type218 { get; set; }
+ public global::System.Collections.Generic.IList? Type218 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType? Type219 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseCdnDeleteResult? Type219 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse3? Type220 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse2? Type220 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError2? Type221 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError? Type221 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type222 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType? Type222 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse4? Type223 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse3? Type223 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError3? Type224 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError2? Type224 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type225 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType2? Type225 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse5? Type226 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse4? Type226 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError4? Type227 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError3? Type227 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type228 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType3? Type228 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse6? Type229 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse5? Type229 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError5? Type230 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError4? Type230 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type231 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType4? Type231 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponse7? Type232 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse6? Type232 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseError6? Type233 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError5? Type233 { get; set; }
///
///
///
- public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type234 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType5? Type234 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse? Type235 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponse7? Type235 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type236 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseError6? Type236 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseItem? Type237 { get; set; }
+ public global::Fal.DeleteRequestPayloadsResponseErrorType6? Type237 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse2? Type238 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse? Type238 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError? Type239 { get; set; }
+ public global::System.Collections.Generic.IList? Type239 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType? Type240 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseItem? Type240 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse3? Type241 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse2? Type241 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError2? Type242 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError? Type242 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType2? Type243 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType? Type243 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse4? Type244 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse3? Type244 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError3? Type245 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError2? Type245 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType3? Type246 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType2? Type246 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse5? Type247 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse4? Type247 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError4? Type248 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError3? Type248 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType4? Type249 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType3? Type249 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse6? Type250 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse5? Type250 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError5? Type251 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError4? Type251 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType5? Type252 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType4? Type252 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponse7? Type253 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse6? Type253 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseError6? Type254 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError5? Type254 { get; set; }
///
///
///
- public global::Fal.ListRequestsByEndpointResponseErrorType6? Type255 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType5? Type255 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse? Type256 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponse7? Type256 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type257 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseError6? Type257 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseResult? Type258 { get; set; }
+ public global::Fal.ListRequestsByEndpointResponseErrorType6? Type258 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse2? Type259 { get; set; }
+ public global::Fal.SearchRequestsResponse? Type259 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError? Type260 { get; set; }
+ public global::System.Collections.Generic.IList? Type260 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType? Type261 { get; set; }
+ public global::Fal.SearchRequestsResponseResult? Type261 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse3? Type262 { get; set; }
+ public global::Fal.SearchRequestsResponse2? Type262 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError2? Type263 { get; set; }
+ public global::Fal.SearchRequestsResponseError? Type263 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType2? Type264 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType? Type264 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse4? Type265 { get; set; }
+ public global::Fal.SearchRequestsResponse3? Type265 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError3? Type266 { get; set; }
+ public global::Fal.SearchRequestsResponseError2? Type266 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType3? Type267 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType2? Type267 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse5? Type268 { get; set; }
+ public global::Fal.SearchRequestsResponse4? Type268 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError4? Type269 { get; set; }
+ public global::Fal.SearchRequestsResponseError3? Type269 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType4? Type270 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType3? Type270 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponse6? Type271 { get; set; }
+ public global::Fal.SearchRequestsResponse5? Type271 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseError5? Type272 { get; set; }
+ public global::Fal.SearchRequestsResponseError4? Type272 { get; set; }
///
///
///
- public global::Fal.SearchRequestsResponseErrorType5? Type273 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType4? Type273 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse? Type274 { get; set; }
+ public global::Fal.SearchRequestsResponse6? Type274 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type275 { get; set; }
+ public global::Fal.SearchRequestsResponseError5? Type275 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseWorkflow? Type276 { get; set; }
+ public global::Fal.SearchRequestsResponseErrorType5? Type276 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse2? Type277 { get; set; }
+ public global::Fal.ListWorkflowsResponse? Type277 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError? Type278 { get; set; }
+ public global::System.Collections.Generic.IList? Type278 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType? Type279 { get; set; }
+ public global::Fal.ListWorkflowsResponseWorkflow? Type279 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse3? Type280 { get; set; }
+ public global::Fal.ListWorkflowsResponse2? Type280 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError2? Type281 { get; set; }
+ public global::Fal.ListWorkflowsResponseError? Type281 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType2? Type282 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType? Type282 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse4? Type283 { get; set; }
+ public global::Fal.ListWorkflowsResponse3? Type283 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError3? Type284 { get; set; }
+ public global::Fal.ListWorkflowsResponseError2? Type284 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType3? Type285 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType2? Type285 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponse5? Type286 { get; set; }
+ public global::Fal.ListWorkflowsResponse4? Type286 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseError4? Type287 { get; set; }
+ public global::Fal.ListWorkflowsResponseError3? Type287 { get; set; }
///
///
///
- public global::Fal.ListWorkflowsResponseErrorType4? Type288 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType3? Type288 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse? Type289 { get; set; }
+ public global::Fal.ListWorkflowsResponse5? Type289 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseWorkflow? Type290 { get; set; }
+ public global::Fal.ListWorkflowsResponseError4? Type290 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse2? Type291 { get; set; }
+ public global::Fal.ListWorkflowsResponseErrorType4? Type291 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError? Type292 { get; set; }
+ public global::Fal.CreateWorkflowResponse? Type292 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType? Type293 { get; set; }
+ public global::Fal.CreateWorkflowResponseWorkflow? Type293 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse3? Type294 { get; set; }
+ public global::Fal.CreateWorkflowResponse2? Type294 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError2? Type295 { get; set; }
+ public global::Fal.CreateWorkflowResponseError? Type295 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType2? Type296 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType? Type296 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse4? Type297 { get; set; }
+ public global::Fal.CreateWorkflowResponse3? Type297 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError3? Type298 { get; set; }
+ public global::Fal.CreateWorkflowResponseError2? Type298 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType3? Type299 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType2? Type299 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse5? Type300 { get; set; }
+ public global::Fal.CreateWorkflowResponse4? Type300 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError4? Type301 { get; set; }
+ public global::Fal.CreateWorkflowResponseError3? Type301 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType4? Type302 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType3? Type302 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponse6? Type303 { get; set; }
+ public global::Fal.CreateWorkflowResponse5? Type303 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseError5? Type304 { get; set; }
+ public global::Fal.CreateWorkflowResponseError4? Type304 { get; set; }
///
///
///
- public global::Fal.CreateWorkflowResponseErrorType5? Type305 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType4? Type305 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse? Type306 { get; set; }
+ public global::Fal.CreateWorkflowResponse6? Type306 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseWorkflow? Type307 { get; set; }
+ public global::Fal.CreateWorkflowResponseError5? Type307 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse2? Type308 { get; set; }
+ public global::Fal.CreateWorkflowResponseErrorType5? Type308 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError? Type309 { get; set; }
+ public global::Fal.GetWorkflowResponse? Type309 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType? Type310 { get; set; }
+ public global::Fal.GetWorkflowResponseWorkflow? Type310 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse3? Type311 { get; set; }
+ public global::Fal.GetWorkflowResponse2? Type311 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError2? Type312 { get; set; }
+ public global::Fal.GetWorkflowResponseError? Type312 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType2? Type313 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType? Type313 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse4? Type314 { get; set; }
+ public global::Fal.GetWorkflowResponse3? Type314 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError3? Type315 { get; set; }
+ public global::Fal.GetWorkflowResponseError2? Type315 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType3? Type316 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType2? Type316 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse5? Type317 { get; set; }
+ public global::Fal.GetWorkflowResponse4? Type317 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError4? Type318 { get; set; }
+ public global::Fal.GetWorkflowResponseError3? Type318 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType4? Type319 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType3? Type319 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse6? Type320 { get; set; }
+ public global::Fal.GetWorkflowResponse5? Type320 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError5? Type321 { get; set; }
+ public global::Fal.GetWorkflowResponseError4? Type321 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType5? Type322 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType4? Type322 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponse7? Type323 { get; set; }
+ public global::Fal.GetWorkflowResponse6? Type323 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseError6? Type324 { get; set; }
+ public global::Fal.GetWorkflowResponseError5? Type324 { get; set; }
///
///
///
- public global::Fal.GetWorkflowResponseErrorType6? Type325 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType5? Type325 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse? Type326 { get; set; }
+ public global::Fal.GetWorkflowResponse7? Type326 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type327 { get; set; }
+ public global::Fal.GetWorkflowResponseError6? Type327 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAsset? Type328 { get; set; }
+ public global::Fal.GetWorkflowResponseErrorType6? Type328 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetType? Type329 { get; set; }
+ public global::Fal.ListAssetsResponse? Type329 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type330 { get; set; }
+ public global::System.Collections.Generic.IList? Type330 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseAssetTag? Type331 { get; set; }
+ public global::Fal.ListAssetsResponseAsset? Type331 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse2? Type332 { get; set; }
+ public global::Fal.ListAssetsResponseAssetType? Type332 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError? Type333 { get; set; }
+ public global::System.Collections.Generic.IList? Type333 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType? Type334 { get; set; }
+ public global::Fal.ListAssetsResponseAssetTag? Type334 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse3? Type335 { get; set; }
+ public global::Fal.ListAssetsResponse2? Type335 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError2? Type336 { get; set; }
+ public global::Fal.ListAssetsResponseError? Type336 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType2? Type337 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType? Type337 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse4? Type338 { get; set; }
+ public global::Fal.ListAssetsResponse3? Type338 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError3? Type339 { get; set; }
+ public global::Fal.ListAssetsResponseError2? Type339 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType3? Type340 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType2? Type340 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse5? Type341 { get; set; }
+ public global::Fal.ListAssetsResponse4? Type341 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError4? Type342 { get; set; }
+ public global::Fal.ListAssetsResponseError3? Type342 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType4? Type343 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType3? Type343 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse6? Type344 { get; set; }
+ public global::Fal.ListAssetsResponse5? Type344 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError5? Type345 { get; set; }
+ public global::Fal.ListAssetsResponseError4? Type345 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType5? Type346 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType4? Type346 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse7? Type347 { get; set; }
+ public global::Fal.ListAssetsResponse6? Type347 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError6? Type348 { get; set; }
+ public global::Fal.ListAssetsResponseError5? Type348 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType6? Type349 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType5? Type349 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse8? Type350 { get; set; }
+ public global::Fal.ListAssetsResponse7? Type350 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError7? Type351 { get; set; }
+ public global::Fal.ListAssetsResponseError6? Type351 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType7? Type352 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType6? Type352 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse9? Type353 { get; set; }
+ public global::Fal.ListAssetsResponse8? Type353 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError8? Type354 { get; set; }
+ public global::Fal.ListAssetsResponseError7? Type354 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType8? Type355 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType7? Type355 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponse10? Type356 { get; set; }
+ public global::Fal.ListAssetsResponse9? Type356 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseError9? Type357 { get; set; }
+ public global::Fal.ListAssetsResponseError8? Type357 { get; set; }
///
///
///
- public global::Fal.ListAssetsResponseErrorType9? Type358 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType8? Type358 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse? Type359 { get; set; }
+ public global::Fal.ListAssetsResponse10? Type359 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type360 { get; set; }
+ public global::Fal.ListAssetsResponseError9? Type360 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollection? Type361 { get; set; }
+ public global::Fal.ListAssetsResponseErrorType9? Type361 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseCollectionType? Type362 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse? Type362 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse2? Type363 { get; set; }
+ public global::System.Collections.Generic.IList? Type363 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError? Type364 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollection? Type364 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType? Type365 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseCollectionType? Type365 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse3? Type366 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse2? Type366 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError2? Type367 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError? Type367 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType2? Type368 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType? Type368 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse4? Type369 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse3? Type369 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError3? Type370 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError2? Type370 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType3? Type371 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType2? Type371 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse5? Type372 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse4? Type372 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError4? Type373 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError3? Type373 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType4? Type374 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType3? Type374 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse6? Type375 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse5? Type375 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError5? Type376 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError4? Type376 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType5? Type377 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType4? Type377 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse7? Type378 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse6? Type378 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError6? Type379 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError5? Type379 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType6? Type380 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType5? Type380 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse8? Type381 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse7? Type381 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError7? Type382 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError6? Type382 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType7? Type383 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType6? Type383 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse9? Type384 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse8? Type384 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError8? Type385 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError7? Type385 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType8? Type386 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType7? Type386 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponse10? Type387 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse9? Type387 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseError9? Type388 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError8? Type388 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionsResponseErrorType9? Type389 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType8? Type389 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse? Type390 { get; set; }
+ public global::Fal.ListAssetCollectionsResponse10? Type390 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollection? Type391 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseError9? Type391 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseCollectionType? Type392 { get; set; }
+ public global::Fal.ListAssetCollectionsResponseErrorType9? Type392 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse2? Type393 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse? Type393 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError? Type394 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollection? Type394 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType? Type395 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseCollectionType? Type395 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse3? Type396 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse2? Type396 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError2? Type397 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError? Type397 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType2? Type398 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType? Type398 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse4? Type399 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse3? Type399 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError3? Type400 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError2? Type400 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType3? Type401 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType2? Type401 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse5? Type402 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse4? Type402 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError4? Type403 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError3? Type403 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType4? Type404 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType3? Type404 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse6? Type405 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse5? Type405 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError5? Type406 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError4? Type406 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType5? Type407 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType4? Type407 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse7? Type408 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse6? Type408 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError6? Type409 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError5? Type409 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType6? Type410 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType5? Type410 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse8? Type411 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse7? Type411 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError7? Type412 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError6? Type412 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType7? Type413 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType6? Type413 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse9? Type414 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse8? Type414 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError8? Type415 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError7? Type415 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType8? Type416 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType7? Type416 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponse10? Type417 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse9? Type417 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseError9? Type418 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError8? Type418 { get; set; }
///
///
///
- public global::Fal.CreateAssetCollectionResponseErrorType9? Type419 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType8? Type419 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse? Type420 { get; set; }
+ public global::Fal.CreateAssetCollectionResponse10? Type420 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollection? Type421 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseError9? Type421 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseCollectionType? Type422 { get; set; }
+ public global::Fal.CreateAssetCollectionResponseErrorType9? Type422 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse2? Type423 { get; set; }
+ public global::Fal.GetAssetCollectionResponse? Type423 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError? Type424 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollection? Type424 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType? Type425 { get; set; }
+ public global::Fal.GetAssetCollectionResponseCollectionType? Type425 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse3? Type426 { get; set; }
+ public global::Fal.GetAssetCollectionResponse2? Type426 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError2? Type427 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError? Type427 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType2? Type428 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType? Type428 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse4? Type429 { get; set; }
+ public global::Fal.GetAssetCollectionResponse3? Type429 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError3? Type430 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError2? Type430 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType3? Type431 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType2? Type431 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse5? Type432 { get; set; }
+ public global::Fal.GetAssetCollectionResponse4? Type432 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError4? Type433 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError3? Type433 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType4? Type434 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType3? Type434 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse6? Type435 { get; set; }
+ public global::Fal.GetAssetCollectionResponse5? Type435 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError5? Type436 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError4? Type436 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType5? Type437 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType4? Type437 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse7? Type438 { get; set; }
+ public global::Fal.GetAssetCollectionResponse6? Type438 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError6? Type439 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError5? Type439 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType6? Type440 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType5? Type440 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse8? Type441 { get; set; }
+ public global::Fal.GetAssetCollectionResponse7? Type441 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError7? Type442 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError6? Type442 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType7? Type443 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType6? Type443 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse9? Type444 { get; set; }
+ public global::Fal.GetAssetCollectionResponse8? Type444 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError8? Type445 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError7? Type445 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType8? Type446 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType7? Type446 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponse10? Type447 { get; set; }
+ public global::Fal.GetAssetCollectionResponse9? Type447 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseError9? Type448 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError8? Type448 { get; set; }
///
///
///
- public global::Fal.GetAssetCollectionResponseErrorType9? Type449 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType8? Type449 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse? Type450 { get; set; }
+ public global::Fal.GetAssetCollectionResponse10? Type450 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollection? Type451 { get; set; }
+ public global::Fal.GetAssetCollectionResponseError9? Type451 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseCollectionType? Type452 { get; set; }
+ public global::Fal.GetAssetCollectionResponseErrorType9? Type452 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse2? Type453 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse? Type453 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError? Type454 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollection? Type454 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType? Type455 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseCollectionType? Type455 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse3? Type456 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse2? Type456 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError2? Type457 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError? Type457 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType2? Type458 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType? Type458 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse4? Type459 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse3? Type459 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError3? Type460 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError2? Type460 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType3? Type461 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType2? Type461 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse5? Type462 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse4? Type462 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError4? Type463 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError3? Type463 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType4? Type464 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType3? Type464 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse6? Type465 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse5? Type465 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError5? Type466 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError4? Type466 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType5? Type467 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType4? Type467 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse7? Type468 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse6? Type468 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError6? Type469 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError5? Type469 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType6? Type470 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType5? Type470 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse8? Type471 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse7? Type471 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError7? Type472 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError6? Type472 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType7? Type473 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType6? Type473 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse9? Type474 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse8? Type474 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError8? Type475 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError7? Type475 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType8? Type476 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType7? Type476 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponse10? Type477 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse9? Type477 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseError9? Type478 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError8? Type478 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCollectionResponseErrorType9? Type479 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType8? Type479 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse? Type480 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponse10? Type480 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError? Type481 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseError9? Type481 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType? Type482 { get; set; }
+ public global::Fal.UpdateAssetCollectionResponseErrorType9? Type482 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse2? Type483 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse? Type483 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError2? Type484 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError? Type484 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType2? Type485 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType? Type485 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse3? Type486 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse2? Type486 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError3? Type487 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError2? Type487 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType3? Type488 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType2? Type488 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse4? Type489 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse3? Type489 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError4? Type490 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError3? Type490 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType4? Type491 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType3? Type491 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse5? Type492 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse4? Type492 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError5? Type493 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError4? Type493 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType5? Type494 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType4? Type494 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse6? Type495 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse5? Type495 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError6? Type496 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError5? Type496 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType6? Type497 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType5? Type497 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse7? Type498 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse6? Type498 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError7? Type499 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError6? Type499 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType7? Type500 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType6? Type500 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse8? Type501 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse7? Type501 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError8? Type502 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError7? Type502 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType8? Type503 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType7? Type503 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponse9? Type504 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse8? Type504 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseError9? Type505 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError8? Type505 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCollectionResponseErrorType9? Type506 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType8? Type506 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse? Type507 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponse9? Type507 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollection? Type508 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseError9? Type508 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type509 { get; set; }
+ public global::Fal.DeleteAssetCollectionResponseErrorType9? Type509 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse2? Type510 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse? Type510 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError? Type511 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollection? Type511 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType? Type512 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseCollectionType? Type512 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse3? Type513 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse2? Type513 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError2? Type514 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError? Type514 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type515 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType? Type515 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse4? Type516 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse3? Type516 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError3? Type517 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError2? Type517 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type518 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType2? Type518 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse5? Type519 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse4? Type519 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError4? Type520 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError3? Type520 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type521 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType3? Type521 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse6? Type522 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse5? Type522 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError5? Type523 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError4? Type523 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type524 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType4? Type524 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse7? Type525 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse6? Type525 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError6? Type526 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError5? Type526 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type527 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType5? Type527 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse8? Type528 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse7? Type528 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError7? Type529 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError6? Type529 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type530 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType6? Type530 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse9? Type531 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse8? Type531 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError8? Type532 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError7? Type532 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type533 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType7? Type533 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponse10? Type534 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse9? Type534 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseError9? Type535 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError8? Type535 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type536 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType8? Type536 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse? Type537 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponse10? Type537 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type538 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseError9? Type538 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type539 { get; set; }
+ public global::Fal.FavoriteAssetCollectionResponseErrorType9? Type539 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse2? Type540 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse? Type540 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError? Type541 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollection? Type541 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type542 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseCollectionType? Type542 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse3? Type543 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse2? Type543 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError2? Type544 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError? Type544 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type545 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType? Type545 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse4? Type546 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse3? Type546 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError3? Type547 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError2? Type547 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type548 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType2? Type548 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse5? Type549 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse4? Type549 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError4? Type550 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError3? Type550 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type551 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType3? Type551 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse6? Type552 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse5? Type552 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError5? Type553 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError4? Type553 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type554 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType4? Type554 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse7? Type555 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse6? Type555 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError6? Type556 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError5? Type556 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type557 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType5? Type557 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse8? Type558 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse7? Type558 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError7? Type559 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError6? Type559 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type560 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType6? Type560 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse9? Type561 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse8? Type561 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError8? Type562 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError7? Type562 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type563 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType7? Type563 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponse10? Type564 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse9? Type564 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseError9? Type565 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError8? Type565 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type566 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType8? Type566 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse? Type567 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponse10? Type567 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type568 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseError9? Type568 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAsset? Type569 { get; set; }
+ public global::Fal.UnfavoriteAssetCollectionResponseErrorType9? Type569 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type570 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse? Type570 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type571 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseCollection? Type571 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type572 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseCollectionType? Type572 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse2? Type573 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse2? Type573 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError? Type574 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError? Type574 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type575 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType? Type575 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse3? Type576 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse3? Type576 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError2? Type577 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError2? Type577 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type578 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType2? Type578 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse4? Type579 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse4? Type579 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError3? Type580 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError3? Type580 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type581 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType3? Type581 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse5? Type582 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse5? Type582 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError4? Type583 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError4? Type583 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type584 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType4? Type584 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse6? Type585 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse6? Type585 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError5? Type586 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError5? Type586 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type587 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType5? Type587 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse7? Type588 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse7? Type588 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError6? Type589 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError6? Type589 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type590 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType6? Type590 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse8? Type591 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse8? Type591 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError7? Type592 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError7? Type592 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type593 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType7? Type593 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse9? Type594 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse9? Type594 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError8? Type595 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError8? Type595 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type596 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType8? Type596 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponse10? Type597 { get; set; }
+ public global::Fal.MoveAssetCollectionResponse10? Type597 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseError9? Type598 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseError9? Type598 { get; set; }
///
///
///
- public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type599 { get; set; }
+ public global::Fal.MoveAssetCollectionResponseErrorType9? Type599 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse? Type600 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse? Type600 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse2? Type601 { get; set; }
+ public global::System.Collections.Generic.IList? Type601 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError? Type602 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAsset? Type602 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType? Type603 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetType? Type603 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse3? Type604 { get; set; }
+ public global::System.Collections.Generic.IList? Type604 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError2? Type605 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseAssetTag? Type605 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType2? Type606 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse2? Type606 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse4? Type607 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError? Type607 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError3? Type608 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType? Type608 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType3? Type609 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse3? Type609 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse5? Type610 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError2? Type610 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError4? Type611 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType2? Type611 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType4? Type612 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse4? Type612 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse6? Type613 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError3? Type613 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError5? Type614 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType3? Type614 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType5? Type615 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse5? Type615 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse7? Type616 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError4? Type616 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError6? Type617 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType4? Type617 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType6? Type618 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse6? Type618 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse8? Type619 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError5? Type619 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError7? Type620 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType5? Type620 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType7? Type621 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse7? Type621 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse9? Type622 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError6? Type622 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError8? Type623 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType6? Type623 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType8? Type624 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse8? Type624 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponse10? Type625 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError7? Type625 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseError9? Type626 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType7? Type626 { get; set; }
///
///
///
- public global::Fal.AddAssetToCollectionResponseErrorType9? Type627 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse9? Type627 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse? Type628 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError8? Type628 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError? Type629 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType8? Type629 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type630 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponse10? Type630 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse2? Type631 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseError9? Type631 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError2? Type632 { get; set; }
+ public global::Fal.ListAssetCollectionAssetsResponseErrorType9? Type632 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type633 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse? Type633 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse3? Type634 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse2? Type634 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError3? Type635 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError? Type635 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type636 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType? Type636 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse4? Type637 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse3? Type637 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError4? Type638 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError2? Type638 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type639 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType2? Type639 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse5? Type640 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse4? Type640 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError5? Type641 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError3? Type641 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type642 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType3? Type642 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse6? Type643 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse5? Type643 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError6? Type644 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError4? Type644 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type645 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType4? Type645 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse7? Type646 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse6? Type646 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError7? Type647 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError5? Type647 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type648 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType5? Type648 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse8? Type649 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse7? Type649 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError8? Type650 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError6? Type650 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type651 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType6? Type651 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponse9? Type652 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse8? Type652 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseError9? Type653 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError7? Type653 { get; set; }
///
///
///
- public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type654 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType7? Type654 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse? Type655 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse9? Type655 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type656 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError8? Type656 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacter? Type657 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType8? Type657 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseCharacterType? Type658 { get; set; }
+ public global::Fal.AddAssetToCollectionResponse10? Type658 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse2? Type659 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseError9? Type659 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError? Type660 { get; set; }
+ public global::Fal.AddAssetToCollectionResponseErrorType9? Type660 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType? Type661 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse? Type661 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse3? Type662 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError? Type662 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError2? Type663 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType? Type663 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType2? Type664 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse2? Type664 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse4? Type665 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError2? Type665 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError3? Type666 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType2? Type666 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType3? Type667 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse3? Type667 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse5? Type668 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError3? Type668 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError4? Type669 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType3? Type669 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType4? Type670 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse4? Type670 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse6? Type671 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError4? Type671 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError5? Type672 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType4? Type672 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType5? Type673 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse5? Type673 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse7? Type674 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError5? Type674 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError6? Type675 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType5? Type675 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType6? Type676 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse6? Type676 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse8? Type677 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError6? Type677 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError7? Type678 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType6? Type678 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType7? Type679 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse7? Type679 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse9? Type680 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError7? Type680 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError8? Type681 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType7? Type681 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType8? Type682 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse8? Type682 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponse10? Type683 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError8? Type683 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseError9? Type684 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType8? Type684 { get; set; }
///
///
///
- public global::Fal.ListAssetCharactersResponseErrorType9? Type685 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponse9? Type685 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse? Type686 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseError9? Type686 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacter? Type687 { get; set; }
+ public global::Fal.RemoveAssetFromCollectionResponseErrorType9? Type687 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseCharacterType? Type688 { get; set; }
+ public global::Fal.ListAssetCharactersResponse? Type688 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse2? Type689 { get; set; }
+ public global::System.Collections.Generic.IList? Type689 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError? Type690 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacter? Type690 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType? Type691 { get; set; }
+ public global::Fal.ListAssetCharactersResponseCharacterType? Type691 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse3? Type692 { get; set; }
+ public global::Fal.ListAssetCharactersResponse2? Type692 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError2? Type693 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError? Type693 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType2? Type694 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType? Type694 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse4? Type695 { get; set; }
+ public global::Fal.ListAssetCharactersResponse3? Type695 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError3? Type696 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError2? Type696 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType3? Type697 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType2? Type697 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse5? Type698 { get; set; }
+ public global::Fal.ListAssetCharactersResponse4? Type698 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError4? Type699 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError3? Type699 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType4? Type700 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType3? Type700 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse6? Type701 { get; set; }
+ public global::Fal.ListAssetCharactersResponse5? Type701 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError5? Type702 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError4? Type702 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType5? Type703 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType4? Type703 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse7? Type704 { get; set; }
+ public global::Fal.ListAssetCharactersResponse6? Type704 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError6? Type705 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError5? Type705 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType6? Type706 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType5? Type706 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse8? Type707 { get; set; }
+ public global::Fal.ListAssetCharactersResponse7? Type707 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError7? Type708 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError6? Type708 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType7? Type709 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType6? Type709 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse9? Type710 { get; set; }
+ public global::Fal.ListAssetCharactersResponse8? Type710 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError8? Type711 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError7? Type711 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType8? Type712 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType7? Type712 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponse10? Type713 { get; set; }
+ public global::Fal.ListAssetCharactersResponse9? Type713 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseError9? Type714 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError8? Type714 { get; set; }
///
///
///
- public global::Fal.CreateAssetCharacterResponseErrorType9? Type715 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType8? Type715 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse? Type716 { get; set; }
+ public global::Fal.ListAssetCharactersResponse10? Type716 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacter? Type717 { get; set; }
+ public global::Fal.ListAssetCharactersResponseError9? Type717 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseCharacterType? Type718 { get; set; }
+ public global::Fal.ListAssetCharactersResponseErrorType9? Type718 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse2? Type719 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse? Type719 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError? Type720 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacter? Type720 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType? Type721 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseCharacterType? Type721 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse3? Type722 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse2? Type722 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError2? Type723 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError? Type723 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType2? Type724 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType? Type724 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse4? Type725 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse3? Type725 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError3? Type726 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError2? Type726 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType3? Type727 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType2? Type727 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse5? Type728 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse4? Type728 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError4? Type729 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError3? Type729 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType4? Type730 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType3? Type730 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse6? Type731 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse5? Type731 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError5? Type732 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError4? Type732 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType5? Type733 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType4? Type733 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse7? Type734 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse6? Type734 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError6? Type735 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError5? Type735 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType6? Type736 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType5? Type736 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse8? Type737 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse7? Type737 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError7? Type738 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError6? Type738 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType7? Type739 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType6? Type739 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse9? Type740 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse8? Type740 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError8? Type741 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError7? Type741 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType8? Type742 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType7? Type742 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponse10? Type743 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse9? Type743 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseError9? Type744 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError8? Type744 { get; set; }
///
///
///
- public global::Fal.UpdateAssetCharacterResponseErrorType9? Type745 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType8? Type745 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse? Type746 { get; set; }
+ public global::Fal.CreateAssetCharacterResponse10? Type746 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacter? Type747 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseError9? Type747 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseCharacterType? Type748 { get; set; }
+ public global::Fal.CreateAssetCharacterResponseErrorType9? Type748 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse2? Type749 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse? Type749 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError? Type750 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacter? Type750 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType? Type751 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseCharacterType? Type751 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse3? Type752 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse2? Type752 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError2? Type753 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError? Type753 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType2? Type754 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType? Type754 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse4? Type755 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse3? Type755 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError3? Type756 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError2? Type756 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType3? Type757 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType2? Type757 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse5? Type758 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse4? Type758 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError4? Type759 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError3? Type759 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType4? Type760 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType3? Type760 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse6? Type761 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse5? Type761 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError5? Type762 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError4? Type762 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType5? Type763 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType4? Type763 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse7? Type764 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse6? Type764 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError6? Type765 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError5? Type765 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType6? Type766 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType5? Type766 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse8? Type767 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse7? Type767 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError7? Type768 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError6? Type768 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType7? Type769 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType6? Type769 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse9? Type770 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse8? Type770 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError8? Type771 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError7? Type771 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType8? Type772 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType7? Type772 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponse10? Type773 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse9? Type773 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseError9? Type774 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError8? Type774 { get; set; }
///
///
///
- public global::Fal.GetAssetCharacterResponseErrorType9? Type775 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType8? Type775 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse? Type776 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponse10? Type776 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError? Type777 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseError9? Type777 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType? Type778 { get; set; }
+ public global::Fal.UpdateAssetCharacterResponseErrorType9? Type778 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse2? Type779 { get; set; }
+ public global::Fal.GetAssetCharacterResponse? Type779 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError2? Type780 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacter? Type780 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType2? Type781 { get; set; }
+ public global::Fal.GetAssetCharacterResponseCharacterType? Type781 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse3? Type782 { get; set; }
+ public global::Fal.GetAssetCharacterResponse2? Type782 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError3? Type783 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError? Type783 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType3? Type784 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType? Type784 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse4? Type785 { get; set; }
+ public global::Fal.GetAssetCharacterResponse3? Type785 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError4? Type786 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError2? Type786 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType4? Type787 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType2? Type787 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse5? Type788 { get; set; }
+ public global::Fal.GetAssetCharacterResponse4? Type788 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError5? Type789 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError3? Type789 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType5? Type790 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType3? Type790 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse6? Type791 { get; set; }
+ public global::Fal.GetAssetCharacterResponse5? Type791 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError6? Type792 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError4? Type792 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType6? Type793 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType4? Type793 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse7? Type794 { get; set; }
+ public global::Fal.GetAssetCharacterResponse6? Type794 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError7? Type795 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError5? Type795 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType7? Type796 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType5? Type796 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse8? Type797 { get; set; }
+ public global::Fal.GetAssetCharacterResponse7? Type797 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError8? Type798 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError6? Type798 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType8? Type799 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType6? Type799 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponse9? Type800 { get; set; }
+ public global::Fal.GetAssetCharacterResponse8? Type800 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseError9? Type801 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError7? Type801 { get; set; }
///
///
///
- public global::Fal.DeleteAssetCharacterResponseErrorType9? Type802 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType7? Type802 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse? Type803 { get; set; }
+ public global::Fal.GetAssetCharacterResponse9? Type803 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacter? Type804 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError8? Type804 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type805 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType8? Type805 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse2? Type806 { get; set; }
+ public global::Fal.GetAssetCharacterResponse10? Type806 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError? Type807 { get; set; }
+ public global::Fal.GetAssetCharacterResponseError9? Type807 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType? Type808 { get; set; }
+ public global::Fal.GetAssetCharacterResponseErrorType9? Type808 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse3? Type809 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse? Type809 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError2? Type810 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError? Type810 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type811 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType? Type811 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse4? Type812 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse2? Type812 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError3? Type813 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError2? Type813 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type814 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType2? Type814 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse5? Type815 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse3? Type815 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError4? Type816 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError3? Type816 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type817 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType3? Type817 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse6? Type818 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse4? Type818 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError5? Type819 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError4? Type819 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type820 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType4? Type820 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse7? Type821 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse5? Type821 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError6? Type822 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError5? Type822 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type823 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType5? Type823 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse8? Type824 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse6? Type824 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError7? Type825 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError6? Type825 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type826 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType6? Type826 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse9? Type827 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse7? Type827 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError8? Type828 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError7? Type828 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type829 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType7? Type829 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponse10? Type830 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse8? Type830 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseError9? Type831 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError8? Type831 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type832 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType8? Type832 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse? Type833 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponse9? Type833 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type834 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseError9? Type834 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type835 { get; set; }
+ public global::Fal.DeleteAssetCharacterResponseErrorType9? Type835 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse2? Type836 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse? Type836 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError? Type837 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacter? Type837 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type838 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseCharacterType? Type838 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse3? Type839 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse2? Type839 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError2? Type840 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError? Type840 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type841 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType? Type841 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse4? Type842 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse3? Type842 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError3? Type843 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError2? Type843 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type844 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType2? Type844 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse5? Type845 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse4? Type845 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError4? Type846 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError3? Type846 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type847 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType3? Type847 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse6? Type848 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse5? Type848 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError5? Type849 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError4? Type849 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type850 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType4? Type850 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse7? Type851 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse6? Type851 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError6? Type852 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError5? Type852 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type853 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType5? Type853 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse8? Type854 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse7? Type854 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError7? Type855 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError6? Type855 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type856 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType6? Type856 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse9? Type857 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse8? Type857 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError8? Type858 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError7? Type858 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type859 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType7? Type859 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponse10? Type860 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse9? Type860 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseError9? Type861 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError8? Type861 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type862 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType8? Type862 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse? Type863 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponse10? Type863 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type864 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseError9? Type864 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseTag? Type865 { get; set; }
+ public global::Fal.FavoriteAssetCharacterResponseErrorType9? Type865 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse2? Type866 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse? Type866 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError? Type867 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacter? Type867 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType? Type868 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseCharacterType? Type868 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse3? Type869 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse2? Type869 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError2? Type870 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError? Type870 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType2? Type871 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType? Type871 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse4? Type872 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse3? Type872 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError3? Type873 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError2? Type873 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType3? Type874 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType2? Type874 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse5? Type875 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse4? Type875 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError4? Type876 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError3? Type876 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType4? Type877 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType3? Type877 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse6? Type878 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse5? Type878 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError5? Type879 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError4? Type879 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType5? Type880 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType4? Type880 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse7? Type881 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse6? Type881 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError6? Type882 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError5? Type882 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType6? Type883 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType5? Type883 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse8? Type884 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse7? Type884 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError7? Type885 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError6? Type885 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType7? Type886 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType6? Type886 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse9? Type887 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse8? Type887 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError8? Type888 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError7? Type888 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType8? Type889 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType7? Type889 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponse10? Type890 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse9? Type890 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseError9? Type891 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError8? Type891 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsResponseErrorType9? Type892 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType8? Type892 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse? Type893 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponse10? Type893 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseTag? Type894 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseError9? Type894 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse2? Type895 { get; set; }
+ public global::Fal.UnfavoriteAssetCharacterResponseErrorType9? Type895 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError? Type896 { get; set; }
+ public global::Fal.ListAssetTagsResponse? Type896 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType? Type897 { get; set; }
+ public global::System.Collections.Generic.IList? Type897 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse3? Type898 { get; set; }
+ public global::Fal.ListAssetTagsResponseTag? Type898 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError2? Type899 { get; set; }
+ public global::Fal.ListAssetTagsResponse2? Type899 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType2? Type900 { get; set; }
+ public global::Fal.ListAssetTagsResponseError? Type900 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse4? Type901 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType? Type901 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError3? Type902 { get; set; }
+ public global::Fal.ListAssetTagsResponse3? Type902 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType3? Type903 { get; set; }
+ public global::Fal.ListAssetTagsResponseError2? Type903 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse5? Type904 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType2? Type904 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError4? Type905 { get; set; }
+ public global::Fal.ListAssetTagsResponse4? Type905 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType4? Type906 { get; set; }
+ public global::Fal.ListAssetTagsResponseError3? Type906 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse6? Type907 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType3? Type907 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError5? Type908 { get; set; }
+ public global::Fal.ListAssetTagsResponse5? Type908 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType5? Type909 { get; set; }
+ public global::Fal.ListAssetTagsResponseError4? Type909 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse7? Type910 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType4? Type910 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError6? Type911 { get; set; }
+ public global::Fal.ListAssetTagsResponse6? Type911 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType6? Type912 { get; set; }
+ public global::Fal.ListAssetTagsResponseError5? Type912 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse8? Type913 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType5? Type913 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError7? Type914 { get; set; }
+ public global::Fal.ListAssetTagsResponse7? Type914 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType7? Type915 { get; set; }
+ public global::Fal.ListAssetTagsResponseError6? Type915 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse9? Type916 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType6? Type916 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError8? Type917 { get; set; }
+ public global::Fal.ListAssetTagsResponse8? Type917 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType8? Type918 { get; set; }
+ public global::Fal.ListAssetTagsResponseError7? Type918 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponse10? Type919 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType7? Type919 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseError9? Type920 { get; set; }
+ public global::Fal.ListAssetTagsResponse9? Type920 { get; set; }
///
///
///
- public global::Fal.CreateAssetTagResponseErrorType9? Type921 { get; set; }
+ public global::Fal.ListAssetTagsResponseError8? Type921 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse? Type922 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType8? Type922 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type923 { get; set; }
+ public global::Fal.ListAssetTagsResponse10? Type923 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseTag? Type924 { get; set; }
+ public global::Fal.ListAssetTagsResponseError9? Type924 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse2? Type925 { get; set; }
+ public global::Fal.ListAssetTagsResponseErrorType9? Type925 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError? Type926 { get; set; }
+ public global::Fal.CreateAssetTagResponse? Type926 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType? Type927 { get; set; }
+ public global::Fal.CreateAssetTagResponseTag? Type927 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse3? Type928 { get; set; }
+ public global::Fal.CreateAssetTagResponse2? Type928 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError2? Type929 { get; set; }
+ public global::Fal.CreateAssetTagResponseError? Type929 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type930 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType? Type930 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse4? Type931 { get; set; }
+ public global::Fal.CreateAssetTagResponse3? Type931 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError3? Type932 { get; set; }
+ public global::Fal.CreateAssetTagResponseError2? Type932 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type933 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType2? Type933 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse5? Type934 { get; set; }
+ public global::Fal.CreateAssetTagResponse4? Type934 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError4? Type935 { get; set; }
+ public global::Fal.CreateAssetTagResponseError3? Type935 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type936 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType3? Type936 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse6? Type937 { get; set; }
+ public global::Fal.CreateAssetTagResponse5? Type937 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError5? Type938 { get; set; }
+ public global::Fal.CreateAssetTagResponseError4? Type938 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type939 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType4? Type939 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse7? Type940 { get; set; }
+ public global::Fal.CreateAssetTagResponse6? Type940 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError6? Type941 { get; set; }
+ public global::Fal.CreateAssetTagResponseError5? Type941 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type942 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType5? Type942 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse8? Type943 { get; set; }
+ public global::Fal.CreateAssetTagResponse7? Type943 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError7? Type944 { get; set; }
+ public global::Fal.CreateAssetTagResponseError6? Type944 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type945 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType6? Type945 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse9? Type946 { get; set; }
+ public global::Fal.CreateAssetTagResponse8? Type946 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError8? Type947 { get; set; }
+ public global::Fal.CreateAssetTagResponseError7? Type947 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type948 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType7? Type948 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponse10? Type949 { get; set; }
+ public global::Fal.CreateAssetTagResponse9? Type949 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseError9? Type950 { get; set; }
+ public global::Fal.CreateAssetTagResponseError8? Type950 { get; set; }
///
///
///
- public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type951 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType8? Type951 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse? Type952 { get; set; }
+ public global::Fal.CreateAssetTagResponse10? Type952 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseTag? Type953 { get; set; }
+ public global::Fal.CreateAssetTagResponseError9? Type953 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse2? Type954 { get; set; }
+ public global::Fal.CreateAssetTagResponseErrorType9? Type954 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError? Type955 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse? Type955 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType? Type956 { get; set; }
+ public global::System.Collections.Generic.IList? Type956 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse3? Type957 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseTag? Type957 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError2? Type958 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse2? Type958 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType2? Type959 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError? Type959 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse4? Type960 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType? Type960 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError3? Type961 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse3? Type961 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType3? Type962 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError2? Type962 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse5? Type963 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType2? Type963 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError4? Type964 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse4? Type964 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType4? Type965 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError3? Type965 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse6? Type966 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType3? Type966 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError5? Type967 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse5? Type967 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType5? Type968 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError4? Type968 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse7? Type969 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType4? Type969 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError6? Type970 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse6? Type970 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType6? Type971 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError5? Type971 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse8? Type972 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType5? Type972 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError7? Type973 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse7? Type973 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType7? Type974 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError6? Type974 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse9? Type975 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType6? Type975 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError8? Type976 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse8? Type976 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType8? Type977 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError7? Type977 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponse10? Type978 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType7? Type978 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseError9? Type979 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse9? Type979 { get; set; }
///
///
///
- public global::Fal.UpdateAssetTagResponseErrorType9? Type980 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError8? Type980 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse? Type981 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType8? Type981 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError? Type982 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponse10? Type982 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType? Type983 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseError9? Type983 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse2? Type984 { get; set; }
+ public global::Fal.SetAssetTagsForAssetResponseErrorType9? Type984 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError2? Type985 { get; set; }
+ public global::Fal.UpdateAssetTagResponse? Type985 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType2? Type986 { get; set; }
+ public global::Fal.UpdateAssetTagResponseTag? Type986 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse3? Type987 { get; set; }
+ public global::Fal.UpdateAssetTagResponse2? Type987 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError3? Type988 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError? Type988 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType3? Type989 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType? Type989 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse4? Type990 { get; set; }
+ public global::Fal.UpdateAssetTagResponse3? Type990 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError4? Type991 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError2? Type991 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType4? Type992 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType2? Type992 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse5? Type993 { get; set; }
+ public global::Fal.UpdateAssetTagResponse4? Type993 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError5? Type994 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError3? Type994 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType5? Type995 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType3? Type995 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse6? Type996 { get; set; }
+ public global::Fal.UpdateAssetTagResponse5? Type996 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError6? Type997 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError4? Type997 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType6? Type998 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType4? Type998 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse7? Type999 { get; set; }
+ public global::Fal.UpdateAssetTagResponse6? Type999 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError7? Type1000 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError5? Type1000 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType7? Type1001 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType5? Type1001 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse8? Type1002 { get; set; }
+ public global::Fal.UpdateAssetTagResponse7? Type1002 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError8? Type1003 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError6? Type1003 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType8? Type1004 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType6? Type1004 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponse9? Type1005 { get; set; }
+ public global::Fal.UpdateAssetTagResponse8? Type1005 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseError9? Type1006 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError7? Type1006 { get; set; }
///
///
///
- public global::Fal.DeleteAssetTagResponseErrorType9? Type1007 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType7? Type1007 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse? Type1008 { get; set; }
+ public global::Fal.UpdateAssetTagResponse9? Type1008 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAsset? Type1009 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError8? Type1009 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetType? Type1010 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType8? Type1010 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1011 { get; set; }
+ public global::Fal.UpdateAssetTagResponse10? Type1011 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseAssetTag? Type1012 { get; set; }
+ public global::Fal.UpdateAssetTagResponseError9? Type1012 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse2? Type1013 { get; set; }
+ public global::Fal.UpdateAssetTagResponseErrorType9? Type1013 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError? Type1014 { get; set; }
+ public global::Fal.DeleteAssetTagResponse? Type1014 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType? Type1015 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError? Type1015 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse3? Type1016 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType? Type1016 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError2? Type1017 { get; set; }
+ public global::Fal.DeleteAssetTagResponse2? Type1017 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType2? Type1018 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError2? Type1018 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse4? Type1019 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType2? Type1019 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError3? Type1020 { get; set; }
+ public global::Fal.DeleteAssetTagResponse3? Type1020 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType3? Type1021 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError3? Type1021 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse5? Type1022 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType3? Type1022 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError4? Type1023 { get; set; }
+ public global::Fal.DeleteAssetTagResponse4? Type1023 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType4? Type1024 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError4? Type1024 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse6? Type1025 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType4? Type1025 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError5? Type1026 { get; set; }
+ public global::Fal.DeleteAssetTagResponse5? Type1026 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType5? Type1027 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError5? Type1027 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse7? Type1028 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType5? Type1028 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError6? Type1029 { get; set; }
+ public global::Fal.DeleteAssetTagResponse6? Type1029 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType6? Type1030 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError6? Type1030 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse8? Type1031 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType6? Type1031 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError7? Type1032 { get; set; }
+ public global::Fal.DeleteAssetTagResponse7? Type1032 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType7? Type1033 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError7? Type1033 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse9? Type1034 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType7? Type1034 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError8? Type1035 { get; set; }
+ public global::Fal.DeleteAssetTagResponse8? Type1035 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType8? Type1036 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError8? Type1036 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponse10? Type1037 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType8? Type1037 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseError9? Type1038 { get; set; }
+ public global::Fal.DeleteAssetTagResponse9? Type1038 { get; set; }
///
///
///
- public global::Fal.UploadAssetResponseErrorType9? Type1039 { get; set; }
+ public global::Fal.DeleteAssetTagResponseError9? Type1039 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse? Type1040 { get; set; }
+ public global::Fal.DeleteAssetTagResponseErrorType9? Type1040 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAsset? Type1041 { get; set; }
+ public global::Fal.UploadAssetResponse? Type1041 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetType? Type1042 { get; set; }
+ public global::Fal.UploadAssetResponseAsset? Type1042 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1043 { get; set; }
+ public global::Fal.UploadAssetResponseAssetType? Type1043 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseAssetTag? Type1044 { get; set; }
+ public global::System.Collections.Generic.IList? Type1044 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse2? Type1045 { get; set; }
+ public global::Fal.UploadAssetResponseAssetTag? Type1045 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError? Type1046 { get; set; }
+ public global::Fal.UploadAssetResponse2? Type1046 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType? Type1047 { get; set; }
+ public global::Fal.UploadAssetResponseError? Type1047 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse3? Type1048 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType? Type1048 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError2? Type1049 { get; set; }
+ public global::Fal.UploadAssetResponse3? Type1049 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType2? Type1050 { get; set; }
+ public global::Fal.UploadAssetResponseError2? Type1050 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse4? Type1051 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType2? Type1051 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError3? Type1052 { get; set; }
+ public global::Fal.UploadAssetResponse4? Type1052 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType3? Type1053 { get; set; }
+ public global::Fal.UploadAssetResponseError3? Type1053 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse5? Type1054 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType3? Type1054 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError4? Type1055 { get; set; }
+ public global::Fal.UploadAssetResponse5? Type1055 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType4? Type1056 { get; set; }
+ public global::Fal.UploadAssetResponseError4? Type1056 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse6? Type1057 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType4? Type1057 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError5? Type1058 { get; set; }
+ public global::Fal.UploadAssetResponse6? Type1058 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType5? Type1059 { get; set; }
+ public global::Fal.UploadAssetResponseError5? Type1059 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse7? Type1060 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType5? Type1060 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError6? Type1061 { get; set; }
+ public global::Fal.UploadAssetResponse7? Type1061 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType6? Type1062 { get; set; }
+ public global::Fal.UploadAssetResponseError6? Type1062 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse8? Type1063 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType6? Type1063 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError7? Type1064 { get; set; }
+ public global::Fal.UploadAssetResponse8? Type1064 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType7? Type1065 { get; set; }
+ public global::Fal.UploadAssetResponseError7? Type1065 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse9? Type1066 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType7? Type1066 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError8? Type1067 { get; set; }
+ public global::Fal.UploadAssetResponse9? Type1067 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType8? Type1068 { get; set; }
+ public global::Fal.UploadAssetResponseError8? Type1068 { get; set; }
///
///
///
- public global::Fal.GetAssetResponse10? Type1069 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType8? Type1069 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseError9? Type1070 { get; set; }
+ public global::Fal.UploadAssetResponse10? Type1070 { get; set; }
///
///
///
- public global::Fal.GetAssetResponseErrorType9? Type1071 { get; set; }
+ public global::Fal.UploadAssetResponseError9? Type1071 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse? Type1072 { get; set; }
+ public global::Fal.UploadAssetResponseErrorType9? Type1072 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse2? Type1073 { get; set; }
+ public global::Fal.GetAssetResponse? Type1073 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError? Type1074 { get; set; }
+ public global::Fal.GetAssetResponseAsset? Type1074 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType? Type1075 { get; set; }
+ public global::Fal.GetAssetResponseAssetType? Type1075 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse3? Type1076 { get; set; }
+ public global::System.Collections.Generic.IList? Type1076 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError2? Type1077 { get; set; }
+ public global::Fal.GetAssetResponseAssetTag? Type1077 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType2? Type1078 { get; set; }
+ public global::Fal.GetAssetResponse2? Type1078 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse4? Type1079 { get; set; }
+ public global::Fal.GetAssetResponseError? Type1079 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError3? Type1080 { get; set; }
+ public global::Fal.GetAssetResponseErrorType? Type1080 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType3? Type1081 { get; set; }
+ public global::Fal.GetAssetResponse3? Type1081 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse5? Type1082 { get; set; }
+ public global::Fal.GetAssetResponseError2? Type1082 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError4? Type1083 { get; set; }
+ public global::Fal.GetAssetResponseErrorType2? Type1083 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType4? Type1084 { get; set; }
+ public global::Fal.GetAssetResponse4? Type1084 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse6? Type1085 { get; set; }
+ public global::Fal.GetAssetResponseError3? Type1085 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError5? Type1086 { get; set; }
+ public global::Fal.GetAssetResponseErrorType3? Type1086 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType5? Type1087 { get; set; }
+ public global::Fal.GetAssetResponse5? Type1087 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse7? Type1088 { get; set; }
+ public global::Fal.GetAssetResponseError4? Type1088 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError6? Type1089 { get; set; }
+ public global::Fal.GetAssetResponseErrorType4? Type1089 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType6? Type1090 { get; set; }
+ public global::Fal.GetAssetResponse6? Type1090 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse8? Type1091 { get; set; }
+ public global::Fal.GetAssetResponseError5? Type1091 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError7? Type1092 { get; set; }
+ public global::Fal.GetAssetResponseErrorType5? Type1092 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType7? Type1093 { get; set; }
+ public global::Fal.GetAssetResponse7? Type1093 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse9? Type1094 { get; set; }
+ public global::Fal.GetAssetResponseError6? Type1094 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError8? Type1095 { get; set; }
+ public global::Fal.GetAssetResponseErrorType6? Type1095 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType8? Type1096 { get; set; }
+ public global::Fal.GetAssetResponse8? Type1096 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponse10? Type1097 { get; set; }
+ public global::Fal.GetAssetResponseError7? Type1097 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseError9? Type1098 { get; set; }
+ public global::Fal.GetAssetResponseErrorType7? Type1098 { get; set; }
///
///
///
- public global::Fal.FavoriteAssetResponseErrorType9? Type1099 { get; set; }
+ public global::Fal.GetAssetResponse9? Type1099 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse? Type1100 { get; set; }
+ public global::Fal.GetAssetResponseError8? Type1100 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse2? Type1101 { get; set; }
+ public global::Fal.GetAssetResponseErrorType8? Type1101 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError? Type1102 { get; set; }
+ public global::Fal.GetAssetResponse10? Type1102 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType? Type1103 { get; set; }
+ public global::Fal.GetAssetResponseError9? Type1103 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse3? Type1104 { get; set; }
+ public global::Fal.GetAssetResponseErrorType9? Type1104 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError2? Type1105 { get; set; }
+ public global::Fal.FavoriteAssetResponse? Type1105 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType2? Type1106 { get; set; }
+ public global::Fal.FavoriteAssetResponse2? Type1106 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse4? Type1107 { get; set; }
+ public global::Fal.FavoriteAssetResponseError? Type1107 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError3? Type1108 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType? Type1108 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType3? Type1109 { get; set; }
+ public global::Fal.FavoriteAssetResponse3? Type1109 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse5? Type1110 { get; set; }
+ public global::Fal.FavoriteAssetResponseError2? Type1110 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError4? Type1111 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType2? Type1111 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType4? Type1112 { get; set; }
+ public global::Fal.FavoriteAssetResponse4? Type1112 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse6? Type1113 { get; set; }
+ public global::Fal.FavoriteAssetResponseError3? Type1113 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError5? Type1114 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType3? Type1114 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType5? Type1115 { get; set; }
+ public global::Fal.FavoriteAssetResponse5? Type1115 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse7? Type1116 { get; set; }
+ public global::Fal.FavoriteAssetResponseError4? Type1116 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError6? Type1117 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType4? Type1117 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType6? Type1118 { get; set; }
+ public global::Fal.FavoriteAssetResponse6? Type1118 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse8? Type1119 { get; set; }
+ public global::Fal.FavoriteAssetResponseError5? Type1119 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError7? Type1120 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType5? Type1120 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType7? Type1121 { get; set; }
+ public global::Fal.FavoriteAssetResponse7? Type1121 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse9? Type1122 { get; set; }
+ public global::Fal.FavoriteAssetResponseError6? Type1122 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError8? Type1123 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType6? Type1123 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType8? Type1124 { get; set; }
+ public global::Fal.FavoriteAssetResponse8? Type1124 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponse10? Type1125 { get; set; }
+ public global::Fal.FavoriteAssetResponseError7? Type1125 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseError9? Type1126 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType7? Type1126 { get; set; }
///
///
///
- public global::Fal.UnfavoriteAssetResponseErrorType9? Type1127 { get; set; }
+ public global::Fal.FavoriteAssetResponse9? Type1127 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse? Type1128 { get; set; }
+ public global::Fal.FavoriteAssetResponseError8? Type1128 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1129 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType8? Type1129 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseTag? Type1130 { get; set; }
+ public global::Fal.FavoriteAssetResponse10? Type1130 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse2? Type1131 { get; set; }
+ public global::Fal.FavoriteAssetResponseError9? Type1131 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError? Type1132 { get; set; }
+ public global::Fal.FavoriteAssetResponseErrorType9? Type1132 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1133 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse? Type1133 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse3? Type1134 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse2? Type1134 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError2? Type1135 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError? Type1135 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1136 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType? Type1136 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse4? Type1137 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse3? Type1137 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError3? Type1138 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError2? Type1138 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1139 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType2? Type1139 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse5? Type1140 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse4? Type1140 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError4? Type1141 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError3? Type1141 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1142 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType3? Type1142 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse6? Type1143 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse5? Type1143 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError5? Type1144 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError4? Type1144 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1145 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType4? Type1145 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse7? Type1146 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse6? Type1146 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError6? Type1147 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError5? Type1147 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1148 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType5? Type1148 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse8? Type1149 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse7? Type1149 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError7? Type1150 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError6? Type1150 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1151 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType6? Type1151 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse9? Type1152 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse8? Type1152 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError8? Type1153 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError7? Type1153 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1154 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType7? Type1154 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponse10? Type1155 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse9? Type1155 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseError9? Type1156 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError8? Type1156 { get; set; }
///
///
///
- public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1157 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType8? Type1157 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse? Type1158 { get; set; }
+ public global::Fal.UnfavoriteAssetResponse10? Type1158 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse2? Type1159 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseError9? Type1159 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError? Type1160 { get; set; }
+ public global::Fal.UnfavoriteAssetResponseErrorType9? Type1160 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType? Type1161 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse? Type1161 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse3? Type1162 { get; set; }
+ public global::System.Collections.Generic.IList? Type1162 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError2? Type1163 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseTag? Type1163 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType2? Type1164 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse2? Type1164 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse4? Type1165 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError? Type1165 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError3? Type1166 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType? Type1166 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType3? Type1167 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse3? Type1167 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse5? Type1168 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError2? Type1168 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError4? Type1169 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType2? Type1169 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType4? Type1170 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse4? Type1170 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse6? Type1171 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError3? Type1171 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError5? Type1172 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType3? Type1172 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType5? Type1173 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse5? Type1173 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse7? Type1174 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError4? Type1174 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError6? Type1175 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType4? Type1175 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType6? Type1176 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse6? Type1176 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse8? Type1177 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError5? Type1177 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError7? Type1178 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType5? Type1178 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType7? Type1179 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse7? Type1179 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse9? Type1180 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError6? Type1180 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError8? Type1181 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType6? Type1181 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType8? Type1182 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse8? Type1182 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponse10? Type1183 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError7? Type1183 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseError9? Type1184 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType7? Type1184 { get; set; }
///
///
///
- public global::Fal.AssignAssetTagResponseErrorType9? Type1185 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse9? Type1185 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse? Type1186 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError8? Type1186 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError? Type1187 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType8? Type1187 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType? Type1188 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponse10? Type1188 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse2? Type1189 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseError9? Type1189 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError2? Type1190 { get; set; }
+ public global::Fal.ListAssetTagsForAssetResponseErrorType9? Type1190 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType2? Type1191 { get; set; }
+ public global::Fal.AssignAssetTagResponse? Type1191 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse3? Type1192 { get; set; }
+ public global::Fal.AssignAssetTagResponse2? Type1192 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError3? Type1193 { get; set; }
+ public global::Fal.AssignAssetTagResponseError? Type1193 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType3? Type1194 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType? Type1194 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse4? Type1195 { get; set; }
+ public global::Fal.AssignAssetTagResponse3? Type1195 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError4? Type1196 { get; set; }
+ public global::Fal.AssignAssetTagResponseError2? Type1196 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType4? Type1197 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType2? Type1197 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse5? Type1198 { get; set; }
+ public global::Fal.AssignAssetTagResponse4? Type1198 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError5? Type1199 { get; set; }
+ public global::Fal.AssignAssetTagResponseError3? Type1199 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType5? Type1200 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType3? Type1200 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse6? Type1201 { get; set; }
+ public global::Fal.AssignAssetTagResponse5? Type1201 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError6? Type1202 { get; set; }
+ public global::Fal.AssignAssetTagResponseError4? Type1202 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType6? Type1203 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType4? Type1203 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse7? Type1204 { get; set; }
+ public global::Fal.AssignAssetTagResponse6? Type1204 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError7? Type1205 { get; set; }
+ public global::Fal.AssignAssetTagResponseError5? Type1205 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType7? Type1206 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType5? Type1206 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse8? Type1207 { get; set; }
+ public global::Fal.AssignAssetTagResponse7? Type1207 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError8? Type1208 { get; set; }
+ public global::Fal.AssignAssetTagResponseError6? Type1208 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType8? Type1209 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType6? Type1209 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponse9? Type1210 { get; set; }
+ public global::Fal.AssignAssetTagResponse8? Type1210 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseError9? Type1211 { get; set; }
+ public global::Fal.AssignAssetTagResponseError7? Type1211 { get; set; }
///
///
///
- public global::Fal.UnassignAssetTagResponseErrorType9? Type1212 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType7? Type1212 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse? Type1213 { get; set; }
+ public global::Fal.AssignAssetTagResponse9? Type1213 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseDefault? Type1214 { get; set; }
+ public global::Fal.AssignAssetTagResponseError8? Type1214 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1215 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType8? Type1215 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseRule? Type1216 { get; set; }
+ public global::Fal.AssignAssetTagResponse10? Type1216 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseRuleDecision? Type1217 { get; set; }
+ public global::Fal.AssignAssetTagResponseError9? Type1217 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse2? Type1218 { get; set; }
+ public global::Fal.AssignAssetTagResponseErrorType9? Type1218 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError? Type1219 { get; set; }
+ public global::Fal.UnassignAssetTagResponse? Type1219 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType? Type1220 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError? Type1220 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse3? Type1221 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType? Type1221 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError2? Type1222 { get; set; }
+ public global::Fal.UnassignAssetTagResponse2? Type1222 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType2? Type1223 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError2? Type1223 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse4? Type1224 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType2? Type1224 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError3? Type1225 { get; set; }
+ public global::Fal.UnassignAssetTagResponse3? Type1225 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType3? Type1226 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError3? Type1226 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse5? Type1227 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType3? Type1227 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError4? Type1228 { get; set; }
+ public global::Fal.UnassignAssetTagResponse4? Type1228 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType4? Type1229 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError4? Type1229 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse6? Type1230 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType4? Type1230 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError5? Type1231 { get; set; }
+ public global::Fal.UnassignAssetTagResponse5? Type1231 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType5? Type1232 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError5? Type1232 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponse7? Type1233 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType5? Type1233 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseError6? Type1234 { get; set; }
+ public global::Fal.UnassignAssetTagResponse6? Type1234 { get; set; }
///
///
///
- public global::Fal.GetStorageFileAclResponseErrorType6? Type1235 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError6? Type1235 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse? Type1236 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType6? Type1236 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseDefault? Type1237 { get; set; }
+ public global::Fal.UnassignAssetTagResponse7? Type1237 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1238 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError7? Type1238 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseRule? Type1239 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType7? Type1239 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseRuleDecision? Type1240 { get; set; }
+ public global::Fal.UnassignAssetTagResponse8? Type1240 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse2? Type1241 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError8? Type1241 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError? Type1242 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType8? Type1242 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType? Type1243 { get; set; }
+ public global::Fal.UnassignAssetTagResponse9? Type1243 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse3? Type1244 { get; set; }
+ public global::Fal.UnassignAssetTagResponseError9? Type1244 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError2? Type1245 { get; set; }
+ public global::Fal.UnassignAssetTagResponseErrorType9? Type1245 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType2? Type1246 { get; set; }
+ public global::Fal.GetStorageFileAclResponse? Type1246 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse4? Type1247 { get; set; }
+ public global::Fal.GetStorageFileAclResponseDefault? Type1247 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError3? Type1248 { get; set; }
+ public global::System.Collections.Generic.IList? Type1248 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType3? Type1249 { get; set; }
+ public global::Fal.GetStorageFileAclResponseRule? Type1249 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse5? Type1250 { get; set; }
+ public global::Fal.GetStorageFileAclResponseRuleDecision? Type1250 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError4? Type1251 { get; set; }
+ public global::Fal.GetStorageFileAclResponse2? Type1251 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType4? Type1252 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError? Type1252 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse6? Type1253 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType? Type1253 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError5? Type1254 { get; set; }
+ public global::Fal.GetStorageFileAclResponse3? Type1254 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType5? Type1255 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError2? Type1255 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponse7? Type1256 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType2? Type1256 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseError6? Type1257 { get; set; }
+ public global::Fal.GetStorageFileAclResponse4? Type1257 { get; set; }
///
///
///
- public global::Fal.SetStorageFileAclResponseErrorType6? Type1258 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError3? Type1258 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse? Type1259 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType3? Type1259 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse2? Type1260 { get; set; }
+ public global::Fal.GetStorageFileAclResponse5? Type1260 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError? Type1261 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError4? Type1261 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType? Type1262 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType4? Type1262 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse3? Type1263 { get; set; }
+ public global::Fal.GetStorageFileAclResponse6? Type1263 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError2? Type1264 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError5? Type1264 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType2? Type1265 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType5? Type1265 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse4? Type1266 { get; set; }
+ public global::Fal.GetStorageFileAclResponse7? Type1266 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError3? Type1267 { get; set; }
+ public global::Fal.GetStorageFileAclResponseError6? Type1267 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType3? Type1268 { get; set; }
+ public global::Fal.GetStorageFileAclResponseErrorType6? Type1268 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse5? Type1269 { get; set; }
+ public global::Fal.SetStorageFileAclResponse? Type1269 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError4? Type1270 { get; set; }
+ public global::Fal.SetStorageFileAclResponseDefault? Type1270 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType4? Type1271 { get; set; }
+ public global::System.Collections.Generic.IList? Type1271 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse6? Type1272 { get; set; }
+ public global::Fal.SetStorageFileAclResponseRule? Type1272 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError5? Type1273 { get; set; }
+ public global::Fal.SetStorageFileAclResponseRuleDecision? Type1273 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType5? Type1274 { get; set; }
+ public global::Fal.SetStorageFileAclResponse2? Type1274 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponse7? Type1275 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError? Type1275 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseError6? Type1276 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType? Type1276 { get; set; }
///
///
///
- public global::Fal.SignStorageFileUrlResponseErrorType6? Type1277 { get; set; }
+ public global::Fal.SetStorageFileAclResponse3? Type1277 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse? Type1278 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError2? Type1278 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAcl? Type1279 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType2? Type1279 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclDefault? Type1280 { get; set; }
+ public global::Fal.SetStorageFileAclResponse4? Type1280 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1281 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError3? Type1281 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclRule? Type1282 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType3? Type1282 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseInitialAclRuleDecision? Type1283 { get; set; }
+ public global::Fal.SetStorageFileAclResponse5? Type1283 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse2? Type1284 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError4? Type1284 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError? Type1285 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType4? Type1285 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType? Type1286 { get; set; }
+ public global::Fal.SetStorageFileAclResponse6? Type1286 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse3? Type1287 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError5? Type1287 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError2? Type1288 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType5? Type1288 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType2? Type1289 { get; set; }
+ public global::Fal.SetStorageFileAclResponse7? Type1289 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse4? Type1290 { get; set; }
+ public global::Fal.SetStorageFileAclResponseError6? Type1290 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError3? Type1291 { get; set; }
+ public global::Fal.SetStorageFileAclResponseErrorType6? Type1291 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType3? Type1292 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse? Type1292 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponse5? Type1293 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse2? Type1293 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseError4? Type1294 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError? Type1294 { get; set; }
///
///
///
- public global::Fal.GetStorageSettingsResponseErrorType4? Type1295 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType? Type1295 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse? Type1296 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse3? Type1296 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAcl? Type1297 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError2? Type1297 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclDefault? Type1298 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType2? Type1298 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1299 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse4? Type1299 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclRule? Type1300 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError3? Type1300 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseInitialAclRuleDecision? Type1301 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType3? Type1301 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse2? Type1302 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse5? Type1302 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError? Type1303 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError4? Type1303 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType? Type1304 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType4? Type1304 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse3? Type1305 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse6? Type1305 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError2? Type1306 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError5? Type1306 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType2? Type1307 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType5? Type1307 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse4? Type1308 { get; set; }
+ public global::Fal.SignStorageFileUrlResponse7? Type1308 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError3? Type1309 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseError6? Type1309 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType3? Type1310 { get; set; }
+ public global::Fal.SignStorageFileUrlResponseErrorType6? Type1310 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse5? Type1311 { get; set; }
+ public global::Fal.GetStorageSettingsResponse? Type1311 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError4? Type1312 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAcl? Type1312 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType4? Type1313 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclDefault? Type1313 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponse6? Type1314 { get; set; }
+ public global::System.Collections.Generic.IList? Type1314 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseError5? Type1315 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclRule? Type1315 { get; set; }
///
///
///
- public global::Fal.UpdateStorageSettingsResponseErrorType5? Type1316 { get; set; }
+ public global::Fal.GetStorageSettingsResponseInitialAclRuleDecision? Type1316 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse? Type1317 { get; set; }
+ public global::Fal.GetStorageSettingsResponse2? Type1317 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1318 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError? Type1318 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1319 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType? Type1319 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1320 { get; set; }
+ public global::Fal.GetStorageSettingsResponse3? Type1320 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1321 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError2? Type1321 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1322 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType2? Type1322 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1323 { get; set; }
+ public global::Fal.GetStorageSettingsResponse4? Type1323 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse2? Type1324 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError3? Type1324 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError? Type1325 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType3? Type1325 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1326 { get; set; }
+ public global::Fal.GetStorageSettingsResponse5? Type1326 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse3? Type1327 { get; set; }
+ public global::Fal.GetStorageSettingsResponseError4? Type1327 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError2? Type1328 { get; set; }
+ public global::Fal.GetStorageSettingsResponseErrorType4? Type1328 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1329 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse? Type1329 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse4? Type1330 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAcl? Type1330 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError3? Type1331 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclDefault? Type1331 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1332 { get; set; }
+ public global::System.Collections.Generic.IList? Type1332 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse5? Type1333 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclRule? Type1333 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError4? Type1334 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseInitialAclRuleDecision? Type1334 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1335 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse2? Type1335 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse6? Type1336 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError? Type1336 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError5? Type1337 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType? Type1337 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1338 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse3? Type1338 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponse7? Type1339 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError2? Type1339 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseError6? Type1340 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType2? Type1340 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1341 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse4? Type1341 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse? Type1342 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError3? Type1342 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1343 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType3? Type1343 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1344 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse5? Type1344 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1345 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError4? Type1345 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1346 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType4? Type1346 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1347 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponse6? Type1347 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1348 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseError5? Type1348 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1349 { get; set; }
+ public global::Fal.UpdateStorageSettingsResponseErrorType5? Type1349 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1350 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse? Type1350 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1351 { get; set; }
+ public global::System.Collections.Generic.IList? Type1351 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1352 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerie? Type1352 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1353 { get; set; }
+ public global::System.Collections.Generic.IList? Type1353 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1354 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseTimeSerieResult? Type1354 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1355 { get; set; }
+ public global::System.Collections.Generic.IList? Type1355 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1356 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseSummaryItem? Type1356 { get; set; }
///
///
///
- public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1357 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse2? Type1357 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse? Type1358 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError? Type1358 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError? Type1359 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType? Type1359 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1360 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse3? Type1360 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse2? Type1361 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError2? Type1361 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError2? Type1362 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType2? Type1362 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1363 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse4? Type1363 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse3? Type1364 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError3? Type1364 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError3? Type1365 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType3? Type1365 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1366 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse5? Type1366 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse4? Type1367 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError4? Type1367 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError4? Type1368 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType4? Type1368 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1369 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse6? Type1369 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse5? Type1370 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError5? Type1370 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError5? Type1371 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType5? Type1371 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1372 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponse7? Type1372 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponse6? Type1373 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseError6? Type1373 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseError6? Type1374 { get; set; }
+ public global::Fal.ServerlessGetAnalyticsResponseErrorType6? Type1374 { get; set; }
///
///
///
- public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1375 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse? Type1375 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1376 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse2? Type1376 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseItem? Type1377 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError? Type1377 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse? Type1378 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType? Type1378 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError? Type1379 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse3? Type1379 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType? Type1380 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError2? Type1380 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse2? Type1381 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType2? Type1381 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError2? Type1382 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse4? Type1382 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType2? Type1383 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError3? Type1383 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponse3? Type1384 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType3? Type1384 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseError3? Type1385 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse5? Type1385 { get; set; }
///
///
///
- public global::Fal.ServerlessListRootResponseErrorType3? Type1386 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError4? Type1386 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1387 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType4? Type1387 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseItem? Type1388 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponse6? Type1388 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse? Type1389 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseError5? Type1389 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError? Type1390 { get; set; }
+ public global::Fal.ServerlessGetAppQueueInfoResponseErrorType5? Type1390 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType? Type1391 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse? Type1391 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse2? Type1392 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError? Type1392 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError2? Type1393 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType? Type1393 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1394 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse2? Type1394 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponse3? Type1395 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError2? Type1395 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseError3? Type1396 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType2? Type1396 { get; set; }
///
///
///
- public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1397 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse3? Type1397 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse2? Type1398 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError3? Type1398 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError? Type1399 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType3? Type1399 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType? Type1400 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse4? Type1400 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse3? Type1401 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError4? Type1401 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError2? Type1402 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType4? Type1402 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1403 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse5? Type1403 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse4? Type1404 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError5? Type1404 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError3? Type1405 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType5? Type1405 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1406 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponse6? Type1406 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponse5? Type1407 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseError6? Type1407 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseError4? Type1408 { get; set; }
+ public global::Fal.ServerlessFlushAppQueueResponseErrorType6? Type1408 { get; set; }
///
///
///
- public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1409 { get; set; }
+ public global::System.Collections.Generic.IList? Type1409 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse? Type1410 { get; set; }
+ public global::Fal.ServerlessListRootResponseItem? Type1410 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError? Type1411 { get; set; }
+ public global::Fal.ServerlessListRootResponse? Type1411 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1412 { get; set; }
+ public global::Fal.ServerlessListRootResponseError? Type1412 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse2? Type1413 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType? Type1413 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError2? Type1414 { get; set; }
+ public global::Fal.ServerlessListRootResponse2? Type1414 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1415 { get; set; }
+ public global::Fal.ServerlessListRootResponseError2? Type1415 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponse3? Type1416 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType2? Type1416 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseError3? Type1417 { get; set; }
+ public global::Fal.ServerlessListRootResponse3? Type1417 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1418 { get; set; }
+ public global::Fal.ServerlessListRootResponseError3? Type1418 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse? Type1419 { get; set; }
+ public global::Fal.ServerlessListRootResponseErrorType3? Type1419 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError? Type1420 { get; set; }
+ public global::System.Collections.Generic.IList? Type1420 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1421 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseItem? Type1421 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse2? Type1422 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse? Type1422 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError2? Type1423 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError? Type1423 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1424 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType? Type1424 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse3? Type1425 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse2? Type1425 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError3? Type1426 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError2? Type1426 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1427 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType2? Type1427 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponse4? Type1428 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponse3? Type1428 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseError4? Type1429 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseError3? Type1429 { get; set; }
///
///
///
- public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1430 { get; set; }
+ public global::Fal.ServerlessListDirectoryResponseErrorType3? Type1430 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse? Type1431 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse2? Type1431 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError? Type1432 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError? Type1432 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType? Type1433 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType? Type1433 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse2? Type1434 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse3? Type1434 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError2? Type1435 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError2? Type1435 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1436 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType2? Type1436 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponse3? Type1437 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse4? Type1437 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseError3? Type1438 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError3? Type1438 { get; set; }
///
///
///
- public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1439 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType3? Type1439 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse? Type1440 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponse5? Type1440 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1441 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseError4? Type1441 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseItem? Type1442 { get; set; }
+ public global::Fal.ServerlessDownloadFileResponseErrorType4? Type1442 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse2? Type1443 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse? Type1443 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError? Type1444 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError? Type1444 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1445 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType? Type1445 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse3? Type1446 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse2? Type1446 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError2? Type1447 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError2? Type1447 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1448 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType2? Type1448 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponse4? Type1449 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponse3? Type1449 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseError3? Type1450 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseError3? Type1450 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1451 { get; set; }
+ public global::Fal.ServerlessUploadFromUrlResponseErrorType3? Type1451 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse2? Type1452 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse? Type1452 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError? Type1453 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError? Type1453 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType? Type1454 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType? Type1454 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse3? Type1455 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse2? Type1455 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError2? Type1456 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError2? Type1456 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1457 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType2? Type1457 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponse4? Type1458 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse3? Type1458 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseError3? Type1459 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError3? Type1459 { get; set; }
///
///
///
- public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1460 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType3? Type1460 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse? Type1461 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponse4? Type1461 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1462 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseError4? Type1462 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1463 { get; set; }
+ public global::Fal.ServerlessUploadLocalFileResponseErrorType4? Type1463 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1464 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse? Type1464 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1465 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError? Type1465 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1466 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType? Type1466 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1467 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse2? Type1467 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1468 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError2? Type1468 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1469 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType2? Type1469 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1470 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponse3? Type1470 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1471 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseError3? Type1471 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1472 { get; set; }
+ public global::Fal.ServerlessGetMetricsResponseErrorType3? Type1472 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1473 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse? Type1473 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1474 { get; set; }
+ public global::System.Collections.Generic.IList? Type1474 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1475 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseItem? Type1475 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1476 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse2? Type1476 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1477 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError? Type1477 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1478 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType? Type1478 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1479 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse3? Type1479 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1480 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError2? Type1480 { get; set; }
///
///
///
- public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1481 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType2? Type1481 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse? Type1482 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponse4? Type1482 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1483 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseError3? Type1483 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseTimeSerie? Type1484 { get; set; }
+ public global::Fal.ServerlessLogsHistoryResponseErrorType3? Type1484 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1485 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse2? Type1485 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseTimeSerieResult? Type1486 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError? Type1486 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1487 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType? Type1487 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseSummaryItem? Type1488 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse3? Type1488 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse2? Type1489 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError2? Type1489 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError? Type1490 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType2? Type1490 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType? Type1491 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponse4? Type1491 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse3? Type1492 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseError3? Type1492 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError2? Type1493 { get; set; }
+ public global::Fal.ServerlessLogsStreamResponseErrorType3? Type1493 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType2? Type1494 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse? Type1494 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse4? Type1495 { get; set; }
+ public global::System.Collections.Generic.IList? Type1495 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError3? Type1496 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseItem? Type1496 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType3? Type1497 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse2? Type1497 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse5? Type1498 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError? Type1498 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError4? Type1499 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType? Type1499 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType4? Type1500 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse3? Type1500 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse6? Type1501 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError2? Type1501 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError5? Type1502 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType2? Type1502 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType5? Type1503 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse4? Type1503 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponse7? Type1504 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError3? Type1504 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseError6? Type1505 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType3? Type1505 { get; set; }
///
///
///
- public global::Fal.ServerlessGetUsageResponseErrorType6? Type1506 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse5? Type1506 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse? Type1507 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError4? Type1507 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1508 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType4? Type1508 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstance? Type1509 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse6? Type1509 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1510 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError5? Type1510 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1511 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType5? Type1511 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceSector? Type1512 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponse7? Type1512 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1513 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseError6? Type1513 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse2? Type1514 { get; set; }
+ public global::Fal.ServerlessListRequestsByEndpointResponseErrorType6? Type1514 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError? Type1515 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse? Type1515 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType? Type1516 { get; set; }
+ public global::System.Collections.Generic.IList? Type1516 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse3? Type1517 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseTimeSerie? Type1517 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError2? Type1518 { get; set; }
+ public global::System.Collections.Generic.IList? Type1518 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType2? Type1519 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseTimeSerieResult? Type1519 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse4? Type1520 { get; set; }
+ public global::System.Collections.Generic.IList? Type1520 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError3? Type1521 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseSummaryItem? Type1521 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType3? Type1522 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse2? Type1522 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponse5? Type1523 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError? Type1523 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseError4? Type1524 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType? Type1524 { get; set; }
///
///
///
- public global::Fal.ListComputeInstancesResponseErrorType4? Type1525 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse3? Type1525 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse? Type1526 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError2? Type1526 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseInstanceType? Type1527 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType2? Type1527 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseRegion? Type1528 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse4? Type1528 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseSector? Type1529 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError3? Type1529 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseStatus? Type1530 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType3? Type1530 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse2? Type1531 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse5? Type1531 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError? Type1532 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError4? Type1532 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType? Type1533 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType4? Type1533 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse3? Type1534 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse6? Type1534 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError2? Type1535 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError5? Type1535 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType2? Type1536 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType5? Type1536 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse4? Type1537 { get; set; }
+ public global::Fal.ServerlessGetUsageResponse7? Type1537 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError3? Type1538 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseError6? Type1538 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType3? Type1539 { get; set; }
+ public global::Fal.ServerlessGetUsageResponseErrorType6? Type1539 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse5? Type1540 { get; set; }
+ public global::Fal.ListComputeInstancesResponse? Type1540 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError4? Type1541 { get; set; }
+ public global::System.Collections.Generic.IList? Type1541 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType4? Type1542 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstance? Type1542 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponse6? Type1543 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceInstanceType? Type1543 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseError5? Type1544 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceRegion? Type1544 { get; set; }
///
///
///
- public global::Fal.CreateComputeInstanceResponseErrorType5? Type1545 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceSector? Type1545 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse? Type1546 { get; set; }
+ public global::Fal.ListComputeInstancesResponseInstanceStatus? Type1546 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseInstanceType? Type1547 { get; set; }
+ public global::Fal.ListComputeInstancesResponse2? Type1547 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseRegion? Type1548 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError? Type1548 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseSector? Type1549 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType? Type1549 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseStatus? Type1550 { get; set; }
+ public global::Fal.ListComputeInstancesResponse3? Type1550 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse2? Type1551 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError2? Type1551 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError? Type1552 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType2? Type1552 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType? Type1553 { get; set; }
+ public global::Fal.ListComputeInstancesResponse4? Type1553 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse3? Type1554 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError3? Type1554 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError2? Type1555 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType3? Type1555 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType2? Type1556 { get; set; }
+ public global::Fal.ListComputeInstancesResponse5? Type1556 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse4? Type1557 { get; set; }
+ public global::Fal.ListComputeInstancesResponseError4? Type1557 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError3? Type1558 { get; set; }
+ public global::Fal.ListComputeInstancesResponseErrorType4? Type1558 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType3? Type1559 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse? Type1559 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse5? Type1560 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseInstanceType? Type1560 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError4? Type1561 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseRegion? Type1561 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType4? Type1562 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseSector? Type1562 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponse6? Type1563 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseStatus? Type1563 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseError5? Type1564 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse2? Type1564 { get; set; }
///
///
///
- public global::Fal.GetComputeInstanceResponseErrorType5? Type1565 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError? Type1565 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse? Type1566 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType? Type1566 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError? Type1567 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse3? Type1567 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType? Type1568 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError2? Type1568 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse2? Type1569 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType2? Type1569 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError2? Type1570 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse4? Type1570 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1571 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError3? Type1571 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse3? Type1572 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType3? Type1572 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError3? Type1573 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse5? Type1573 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1574 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError4? Type1574 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse4? Type1575 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType4? Type1575 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError4? Type1576 { get; set; }
+ public global::Fal.CreateComputeInstanceResponse6? Type1576 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1577 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseError5? Type1577 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponse5? Type1578 { get; set; }
+ public global::Fal.CreateComputeInstanceResponseErrorType5? Type1578 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseError5? Type1579 { get; set; }
+ public global::Fal.GetComputeInstanceResponse? Type1579 { get; set; }
///
///
///
- public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1580 { get; set; }
+ public global::Fal.GetComputeInstanceResponseInstanceType? Type1580 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse? Type1581 { get; set; }
+ public global::Fal.GetComputeInstanceResponseRegion? Type1581 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1582 { get; set; }
+ public global::Fal.GetComputeInstanceResponseSector? Type1582 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKey? Type1583 { get; set; }
+ public global::Fal.GetComputeInstanceResponseStatus? Type1583 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseKeyScope? Type1584 { get; set; }
+ public global::Fal.GetComputeInstanceResponse2? Type1584 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse2? Type1585 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError? Type1585 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError? Type1586 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType? Type1586 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType? Type1587 { get; set; }
+ public global::Fal.GetComputeInstanceResponse3? Type1587 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse3? Type1588 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError2? Type1588 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError2? Type1589 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType2? Type1589 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType2? Type1590 { get; set; }
+ public global::Fal.GetComputeInstanceResponse4? Type1590 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse4? Type1591 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError3? Type1591 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError3? Type1592 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType3? Type1592 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType3? Type1593 { get; set; }
+ public global::Fal.GetComputeInstanceResponse5? Type1593 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponse5? Type1594 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError4? Type1594 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseError4? Type1595 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType4? Type1595 { get; set; }
///
///
///
- public global::Fal.ListApiKeysResponseErrorType4? Type1596 { get; set; }
+ public global::Fal.GetComputeInstanceResponse6? Type1596 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse? Type1597 { get; set; }
+ public global::Fal.GetComputeInstanceResponseError5? Type1597 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse2? Type1598 { get; set; }
+ public global::Fal.GetComputeInstanceResponseErrorType5? Type1598 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError? Type1599 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse? Type1599 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType? Type1600 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError? Type1600 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse3? Type1601 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType? Type1601 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError2? Type1602 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse2? Type1602 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType2? Type1603 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError2? Type1603 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse4? Type1604 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType2? Type1604 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError3? Type1605 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse3? Type1605 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType3? Type1606 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError3? Type1606 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse5? Type1607 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType3? Type1607 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError4? Type1608 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse4? Type1608 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType4? Type1609 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError4? Type1609 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponse6? Type1610 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType4? Type1610 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseError5? Type1611 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponse5? Type1611 { get; set; }
///
///
///
- public global::Fal.CreateApiKeyResponseErrorType5? Type1612 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseError5? Type1612 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse? Type1613 { get; set; }
+ public global::Fal.DeleteComputeInstanceResponseErrorType5? Type1613 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError? Type1614 { get; set; }
+ public global::Fal.ListApiKeysResponse? Type1614 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType? Type1615 { get; set; }
+ public global::System.Collections.Generic.IList? Type1615 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse2? Type1616 { get; set; }
+ public global::Fal.ListApiKeysResponseKey? Type1616 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError2? Type1617 { get; set; }
+ public global::Fal.ListApiKeysResponseKeyScope? Type1617 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType2? Type1618 { get; set; }
+ public global::Fal.ListApiKeysResponse2? Type1618 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse3? Type1619 { get; set; }
+ public global::Fal.ListApiKeysResponseError? Type1619 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError3? Type1620 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType? Type1620 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType3? Type1621 { get; set; }
+ public global::Fal.ListApiKeysResponse3? Type1621 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponse4? Type1622 { get; set; }
+ public global::Fal.ListApiKeysResponseError2? Type1622 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseError4? Type1623 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType2? Type1623 { get; set; }
///
///
///
- public global::Fal.DeleteApiKeyResponseErrorType4? Type1624 { get; set; }
+ public global::Fal.ListApiKeysResponse4? Type1624 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse? Type1625 { get; set; }
+ public global::Fal.ListApiKeysResponseError3? Type1625 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseCredits? Type1626 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType3? Type1626 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse2? Type1627 { get; set; }
+ public global::Fal.ListApiKeysResponse5? Type1627 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError? Type1628 { get; set; }
+ public global::Fal.ListApiKeysResponseError4? Type1628 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType? Type1629 { get; set; }
+ public global::Fal.ListApiKeysResponseErrorType4? Type1629 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse3? Type1630 { get; set; }
+ public global::Fal.CreateApiKeyResponse? Type1630 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError2? Type1631 { get; set; }
+ public global::Fal.CreateApiKeyResponse2? Type1631 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType2? Type1632 { get; set; }
+ public global::Fal.CreateApiKeyResponseError? Type1632 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse4? Type1633 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType? Type1633 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError3? Type1634 { get; set; }
+ public global::Fal.CreateApiKeyResponse3? Type1634 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType3? Type1635 { get; set; }
+ public global::Fal.CreateApiKeyResponseError2? Type1635 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse5? Type1636 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType2? Type1636 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError4? Type1637 { get; set; }
+ public global::Fal.CreateApiKeyResponse4? Type1637 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType4? Type1638 { get; set; }
+ public global::Fal.CreateApiKeyResponseError3? Type1638 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponse6? Type1639 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType3? Type1639 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseError5? Type1640 { get; set; }
+ public global::Fal.CreateApiKeyResponse5? Type1640 { get; set; }
///
///
///
- public global::Fal.GetAccountBillingResponseErrorType5? Type1641 { get; set; }
+ public global::Fal.CreateApiKeyResponseError4? Type1641 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse? Type1642 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType4? Type1642 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError? Type1643 { get; set; }
+ public global::Fal.CreateApiKeyResponse6? Type1643 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType? Type1644 { get; set; }
+ public global::Fal.CreateApiKeyResponseError5? Type1644 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse2? Type1645 { get; set; }
+ public global::Fal.CreateApiKeyResponseErrorType5? Type1645 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError2? Type1646 { get; set; }
+ public global::Fal.DeleteApiKeyResponse? Type1646 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType2? Type1647 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError? Type1647 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse3? Type1648 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType? Type1648 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError3? Type1649 { get; set; }
+ public global::Fal.DeleteApiKeyResponse2? Type1649 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType3? Type1650 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError2? Type1650 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse4? Type1651 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType2? Type1651 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError4? Type1652 { get; set; }
+ public global::Fal.DeleteApiKeyResponse3? Type1652 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType4? Type1653 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError3? Type1653 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponse5? Type1654 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType3? Type1654 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseError5? Type1655 { get; set; }
+ public global::Fal.DeleteApiKeyResponse4? Type1655 { get; set; }
///
///
///
- public global::Fal.GetFocusReportResponseErrorType5? Type1656 { get; set; }
+ public global::Fal.DeleteApiKeyResponseError4? Type1656 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse? Type1657 { get; set; }
+ public global::Fal.DeleteApiKeyResponseErrorType4? Type1657 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError? Type1658 { get; set; }
+ public global::Fal.GetAccountBillingResponse? Type1658 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType? Type1659 { get; set; }
+ public global::Fal.GetAccountBillingResponseCredits? Type1659 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse2? Type1660 { get; set; }
+ public global::Fal.GetAccountBillingResponse2? Type1660 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError2? Type1661 { get; set; }
+ public global::Fal.GetAccountBillingResponseError? Type1661 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType2? Type1662 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType? Type1662 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse3? Type1663 { get; set; }
+ public global::Fal.GetAccountBillingResponse3? Type1663 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError3? Type1664 { get; set; }
+ public global::Fal.GetAccountBillingResponseError2? Type1664 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType3? Type1665 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType2? Type1665 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponse4? Type1666 { get; set; }
+ public global::Fal.GetAccountBillingResponse4? Type1666 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseError4? Type1667 { get; set; }
+ public global::Fal.GetAccountBillingResponseError3? Type1667 { get; set; }
///
///
///
- public global::Fal.GetModelAccessControlsResponseErrorType4? Type1668 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType3? Type1668 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse? Type1669 { get; set; }
+ public global::Fal.GetAccountBillingResponse5? Type1669 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1670 { get; set; }
+ public global::Fal.GetAccountBillingResponseError4? Type1670 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseTeam? Type1671 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType4? Type1671 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse2? Type1672 { get; set; }
+ public global::Fal.GetAccountBillingResponse6? Type1672 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError? Type1673 { get; set; }
+ public global::Fal.GetAccountBillingResponseError5? Type1673 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType? Type1674 { get; set; }
+ public global::Fal.GetAccountBillingResponseErrorType5? Type1674 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse3? Type1675 { get; set; }
+ public global::Fal.GetFocusReportResponse? Type1675 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError2? Type1676 { get; set; }
+ public global::Fal.GetFocusReportResponseError? Type1676 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1677 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType? Type1677 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse4? Type1678 { get; set; }
+ public global::Fal.GetFocusReportResponse2? Type1678 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError3? Type1679 { get; set; }
+ public global::Fal.GetFocusReportResponseError2? Type1679 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1680 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType2? Type1680 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse5? Type1681 { get; set; }
+ public global::Fal.GetFocusReportResponse3? Type1681 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError4? Type1682 { get; set; }
+ public global::Fal.GetFocusReportResponseError3? Type1682 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1683 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType3? Type1683 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse6? Type1684 { get; set; }
+ public global::Fal.GetFocusReportResponse4? Type1684 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError5? Type1685 { get; set; }
+ public global::Fal.GetFocusReportResponseError4? Type1685 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1686 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType4? Type1686 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponse7? Type1687 { get; set; }
+ public global::Fal.GetFocusReportResponse5? Type1687 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseError6? Type1688 { get; set; }
+ public global::Fal.GetFocusReportResponseError5? Type1688 { get; set; }
///
///
///
- public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1689 { get; set; }
+ public global::Fal.GetFocusReportResponseErrorType5? Type1689 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse? Type1690 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse? Type1690 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1691 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError? Type1691 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1692 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType? Type1692 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1693 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse2? Type1693 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1694 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError2? Type1694 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1695 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType2? Type1695 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1696 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse3? Type1696 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1697 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError3? Type1697 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1698 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType3? Type1698 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse2? Type1699 { get; set; }
+ public global::Fal.GetModelAccessControlsResponse4? Type1699 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError? Type1700 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseError4? Type1700 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType? Type1701 { get; set; }
+ public global::Fal.GetModelAccessControlsResponseErrorType4? Type1701 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse3? Type1702 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse? Type1702 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError2? Type1703 { get; set; }
+ public global::System.Collections.Generic.IList? Type1703 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType2? Type1704 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseTeam? Type1704 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse4? Type1705 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse2? Type1705 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError3? Type1706 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError? Type1706 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType3? Type1707 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType? Type1707 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse5? Type1708 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse3? Type1708 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError4? Type1709 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError2? Type1709 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType4? Type1710 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType2? Type1710 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse6? Type1711 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse4? Type1711 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError5? Type1712 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError3? Type1712 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType5? Type1713 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType3? Type1713 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponse7? Type1714 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse5? Type1714 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseError6? Type1715 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError4? Type1715 { get; set; }
///
///
///
- public global::Fal.GetOrganizationUsageResponseErrorType6? Type1716 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType4? Type1716 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse? Type1717 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse6? Type1717 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse2? Type1718 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError5? Type1718 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError? Type1719 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType5? Type1719 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType? Type1720 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponse7? Type1720 { get; set; }
///
///
///
- public global::Fal.GetMetaResponse3? Type1721 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseError6? Type1721 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseError2? Type1722 { get; set; }
+ public global::Fal.GetOrganizationTeamsResponseErrorType6? Type1722 { get; set; }
///
///
///
- public global::Fal.GetMetaResponseErrorType2? Type1723 { get; set; }
+ public global::Fal.GetOrganizationUsageResponse? Type1723 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type1724 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseTimeSerie? Type1725 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type1726 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResult? Type1727 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseTimeSerieResultProduct? Type1728 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type1729 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseSummaryItem? Type1730 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseSummaryItemProduct? Type1731 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse2? Type1732 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError? Type1733 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType? Type1734 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse3? Type1735 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError2? Type1736 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType2? Type1737 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse4? Type1738 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError3? Type1739 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType3? Type1740 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse5? Type1741 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError4? Type1742 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType4? Type1743 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse6? Type1744 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError5? Type1745 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType5? Type1746 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponse7? Type1747 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseError6? Type1748 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetOrganizationUsageResponseErrorType6? Type1749 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse? Type1750 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse2? Type1751 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError? Type1752 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType? Type1753 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponse3? Type1754 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseError2? Type1755 { get; set; }
+ ///
+ ///
+ ///
+ public global::Fal.GetMetaResponseErrorType2? Type1756 { get; set; }
///
///
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateAssetCharacterResponseCharacter.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateAssetCharacterResponseCharacter.g.cs
index 3b141f4..b88bfd5 100644
--- a/src/libs/Fal/Generated/Fal.Models.CreateAssetCharacterResponseCharacter.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.CreateAssetCharacterResponseCharacter.g.cs
@@ -59,6 +59,12 @@ public sealed partial class CreateAssetCharacterResponseCharacter
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -138,6 +144,9 @@ public sealed partial class CreateAssetCharacterResponseCharacter
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Exact asset count when available; null for smart/character collections
///
@@ -157,6 +166,7 @@ public CreateAssetCharacterResponseCharacter(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
double? assetCount)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
@@ -167,6 +177,7 @@ public CreateAssetCharacterResponseCharacter(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.AssetCount = assetCount;
this.CreatedAt = createdAt ?? throw new global::System.ArgumentNullException(nameof(createdAt));
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionRequest.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionRequest.g.cs
index b896280..78d5d66 100644
--- a/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionRequest.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionRequest.g.cs
@@ -39,6 +39,12 @@ public sealed partial class CreateAssetCollectionRequest
[global::System.Text.Json.Serialization.JsonPropertyName("cover_image_url")]
public string? CoverImageUrl { get; set; }
+ ///
+ /// Optional parent collection ID to nest this collection under (manual collections only). Omit or null to create a top-level collection.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Assets filter DSL
///
@@ -69,6 +75,9 @@ public sealed partial class CreateAssetCollectionRequest
///
/// Optional fal-hosted cover image URL for the collection
///
+ ///
+ /// Optional parent collection ID to nest this collection under (manual collections only). Omit or null to create a top-level collection.
+ ///
///
/// Assets filter DSL
///
@@ -81,6 +90,7 @@ public CreateAssetCollectionRequest(
string? icon,
string? color,
string? coverImageUrl,
+ string? parentCollectionId,
object? filters)
{
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
@@ -88,6 +98,7 @@ public CreateAssetCollectionRequest(
this.Icon = icon;
this.Color = color;
this.CoverImageUrl = coverImageUrl;
+ this.ParentCollectionId = parentCollectionId;
this.Filters = filters;
}
diff --git a/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionResponseCollection.g.cs b/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionResponseCollection.g.cs
index 7ac6a2e..992583d 100644
--- a/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionResponseCollection.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.CreateAssetCollectionResponseCollection.g.cs
@@ -60,6 +60,12 @@ public sealed partial class CreateAssetCollectionResponseCollection
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -135,6 +141,9 @@ public sealed partial class CreateAssetCollectionResponseCollection
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Filter DSL backing smart and character collections
///
@@ -156,6 +165,7 @@ public CreateAssetCollectionResponseCollection(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
object? filters,
double? assetCount)
{
@@ -167,6 +177,7 @@ public CreateAssetCollectionResponseCollection(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.Filters = filters;
this.AssetCount = assetCount;
diff --git a/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCharacterResponseCharacter.g.cs b/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCharacterResponseCharacter.g.cs
index 5cf3906..cfccaaf 100644
--- a/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCharacterResponseCharacter.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCharacterResponseCharacter.g.cs
@@ -59,6 +59,12 @@ public sealed partial class FavoriteAssetCharacterResponseCharacter
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -138,6 +144,9 @@ public sealed partial class FavoriteAssetCharacterResponseCharacter
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Exact asset count when available; null for smart/character collections
///
@@ -157,6 +166,7 @@ public FavoriteAssetCharacterResponseCharacter(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
double? assetCount)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
@@ -167,6 +177,7 @@ public FavoriteAssetCharacterResponseCharacter(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.AssetCount = assetCount;
this.CreatedAt = createdAt ?? throw new global::System.ArgumentNullException(nameof(createdAt));
diff --git a/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCollectionResponseCollection.g.cs b/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCollectionResponseCollection.g.cs
index 8b82351..a9f737b 100644
--- a/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCollectionResponseCollection.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.FavoriteAssetCollectionResponseCollection.g.cs
@@ -60,6 +60,12 @@ public sealed partial class FavoriteAssetCollectionResponseCollection
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -135,6 +141,9 @@ public sealed partial class FavoriteAssetCollectionResponseCollection
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Filter DSL backing smart and character collections
///
@@ -156,6 +165,7 @@ public FavoriteAssetCollectionResponseCollection(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
object? filters,
double? assetCount)
{
@@ -167,6 +177,7 @@ public FavoriteAssetCollectionResponseCollection(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.Filters = filters;
this.AssetCount = assetCount;
diff --git a/src/libs/Fal/Generated/Fal.Models.GetAssetCharacterResponseCharacter.g.cs b/src/libs/Fal/Generated/Fal.Models.GetAssetCharacterResponseCharacter.g.cs
index fdd0965..470f712 100644
--- a/src/libs/Fal/Generated/Fal.Models.GetAssetCharacterResponseCharacter.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.GetAssetCharacterResponseCharacter.g.cs
@@ -59,6 +59,12 @@ public sealed partial class GetAssetCharacterResponseCharacter
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -138,6 +144,9 @@ public sealed partial class GetAssetCharacterResponseCharacter
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Exact asset count when available; null for smart/character collections
///
@@ -157,6 +166,7 @@ public GetAssetCharacterResponseCharacter(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
double? assetCount)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
@@ -167,6 +177,7 @@ public GetAssetCharacterResponseCharacter(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.AssetCount = assetCount;
this.CreatedAt = createdAt ?? throw new global::System.ArgumentNullException(nameof(createdAt));
diff --git a/src/libs/Fal/Generated/Fal.Models.GetAssetCollectionResponseCollection.g.cs b/src/libs/Fal/Generated/Fal.Models.GetAssetCollectionResponseCollection.g.cs
index 12229e1..1acaa0e 100644
--- a/src/libs/Fal/Generated/Fal.Models.GetAssetCollectionResponseCollection.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.GetAssetCollectionResponseCollection.g.cs
@@ -60,6 +60,12 @@ public sealed partial class GetAssetCollectionResponseCollection
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -135,6 +141,9 @@ public sealed partial class GetAssetCollectionResponseCollection
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Filter DSL backing smart and character collections
///
@@ -156,6 +165,7 @@ public GetAssetCollectionResponseCollection(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
object? filters,
double? assetCount)
{
@@ -167,6 +177,7 @@ public GetAssetCollectionResponseCollection(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.Filters = filters;
this.AssetCount = assetCount;
diff --git a/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItem.g.cs b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItem.g.cs
index 74374bf..5a671c0 100644
--- a/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItem.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItem.g.cs
@@ -56,6 +56,12 @@ public sealed partial class GetUsageResponseSummaryItem
[global::System.Text.Json.Serialization.JsonPropertyName("auth_method")]
public string? AuthMethod { get; set; }
+ ///
+ /// Structured authentication method identity. Only populated when 'auth_method_structured' is included in expand parameter.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("auth_method_structured")]
+ public global::Fal.GetUsageResponseSummaryItemAuthMethodStructured? AuthMethodStructured { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -86,6 +92,9 @@ public sealed partial class GetUsageResponseSummaryItem
///
/// Authentication method label (e.g., 'Key 1', 'Key 2', 'User token'). Only populated when 'auth_method' is included in expand parameter.
///
+ ///
+ /// Structured authentication method identity. Only populated when 'auth_method_structured' is included in expand parameter.
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -96,7 +105,8 @@ public GetUsageResponseSummaryItem(
double unitPrice,
double cost,
string currency,
- string? authMethod)
+ string? authMethod,
+ global::Fal.GetUsageResponseSummaryItemAuthMethodStructured? authMethodStructured)
{
this.EndpointId = endpointId ?? throw new global::System.ArgumentNullException(nameof(endpointId));
this.Unit = unit ?? throw new global::System.ArgumentNullException(nameof(unit));
@@ -105,6 +115,7 @@ public GetUsageResponseSummaryItem(
this.Cost = cost;
this.Currency = currency ?? throw new global::System.ArgumentNullException(nameof(currency));
this.AuthMethod = authMethod;
+ this.AuthMethodStructured = authMethodStructured;
}
///
diff --git a/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItemAuthMethodStructured.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItemAuthMethodStructured.Json.g.cs
new file mode 100644
index 0000000..249f3ff
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItemAuthMethodStructured.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class GetUsageResponseSummaryItemAuthMethodStructured
+ {
+ ///
+ /// 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.GetUsageResponseSummaryItemAuthMethodStructured? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.GetUsageResponseSummaryItemAuthMethodStructured),
+ jsonSerializerContext) as global::Fal.GetUsageResponseSummaryItemAuthMethodStructured;
+ }
+
+ ///
+ /// 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.GetUsageResponseSummaryItemAuthMethodStructured? 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.GetUsageResponseSummaryItemAuthMethodStructured),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.GetUsageResponseSummaryItemAuthMethodStructured;
+ }
+
+ ///
+ /// 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.GetUsageResponseSummaryItemAuthMethodStructured.g.cs b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItemAuthMethodStructured.g.cs
new file mode 100644
index 0000000..cc03ee9
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseSummaryItemAuthMethodStructured.g.cs
@@ -0,0 +1,69 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Structured authentication method identity. Only populated when 'auth_method_structured' is included in expand parameter.
+ ///
+ public sealed partial class GetUsageResponseSummaryItemAuthMethodStructured
+ {
+ ///
+ /// Human-readable summary of the authentication method (key alias, login username, or 'User token'/'None').
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("detail")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Detail { get; set; }
+
+ ///
+ /// API key ID, present when the request was made with an API key.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("api_key_id")]
+ public string? ApiKeyId { get; set; }
+
+ ///
+ /// Team member login username (nickname), present when the request was made with a user login token resolvable to a team member.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("login_username")]
+ public string? LoginUsername { 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.
+ ///
+ ///
+ /// Human-readable summary of the authentication method (key alias, login username, or 'User token'/'None').
+ ///
+ ///
+ /// API key ID, present when the request was made with an API key.
+ ///
+ ///
+ /// Team member login username (nickname), present when the request was made with a user login token resolvable to a team member.
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public GetUsageResponseSummaryItemAuthMethodStructured(
+ string detail,
+ string? apiKeyId,
+ string? loginUsername)
+ {
+ this.Detail = detail ?? throw new global::System.ArgumentNullException(nameof(detail));
+ this.ApiKeyId = apiKeyId;
+ this.LoginUsername = loginUsername;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public GetUsageResponseSummaryItemAuthMethodStructured()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResult.g.cs b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResult.g.cs
index b57a74a..59f87e6 100644
--- a/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResult.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResult.g.cs
@@ -56,6 +56,12 @@ public sealed partial class GetUsageResponseTimeSerieResult
[global::System.Text.Json.Serialization.JsonPropertyName("auth_method")]
public string? AuthMethod { get; set; }
+ ///
+ /// Structured authentication method identity. Only populated when 'auth_method_structured' is included in expand parameter.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("auth_method_structured")]
+ public global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured? AuthMethodStructured { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -86,6 +92,9 @@ public sealed partial class GetUsageResponseTimeSerieResult
///
/// Authentication method label (e.g., 'Key 1', 'Key 2', 'User token'). Only populated when 'auth_method' is included in expand parameter.
///
+ ///
+ /// Structured authentication method identity. Only populated when 'auth_method_structured' is included in expand parameter.
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -96,7 +105,8 @@ public GetUsageResponseTimeSerieResult(
double unitPrice,
double cost,
string currency,
- string? authMethod)
+ string? authMethod,
+ global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured? authMethodStructured)
{
this.EndpointId = endpointId ?? throw new global::System.ArgumentNullException(nameof(endpointId));
this.Unit = unit ?? throw new global::System.ArgumentNullException(nameof(unit));
@@ -105,6 +115,7 @@ public GetUsageResponseTimeSerieResult(
this.Cost = cost;
this.Currency = currency ?? throw new global::System.ArgumentNullException(nameof(currency));
this.AuthMethod = authMethod;
+ this.AuthMethodStructured = authMethodStructured;
}
///
diff --git a/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResultAuthMethodStructured.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResultAuthMethodStructured.Json.g.cs
new file mode 100644
index 0000000..3e33eb5
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResultAuthMethodStructured.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class GetUsageResponseTimeSerieResultAuthMethodStructured
+ {
+ ///
+ /// 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.GetUsageResponseTimeSerieResultAuthMethodStructured? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured),
+ jsonSerializerContext) as global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured;
+ }
+
+ ///
+ /// 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.GetUsageResponseTimeSerieResultAuthMethodStructured? 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.GetUsageResponseTimeSerieResultAuthMethodStructured),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.GetUsageResponseTimeSerieResultAuthMethodStructured;
+ }
+
+ ///
+ /// 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.GetUsageResponseTimeSerieResultAuthMethodStructured.g.cs b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResultAuthMethodStructured.g.cs
new file mode 100644
index 0000000..367eb82
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.GetUsageResponseTimeSerieResultAuthMethodStructured.g.cs
@@ -0,0 +1,69 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Structured authentication method identity. Only populated when 'auth_method_structured' is included in expand parameter.
+ ///
+ public sealed partial class GetUsageResponseTimeSerieResultAuthMethodStructured
+ {
+ ///
+ /// Human-readable summary of the authentication method (key alias, login username, or 'User token'/'None').
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("detail")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string Detail { get; set; }
+
+ ///
+ /// API key ID, present when the request was made with an API key.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("api_key_id")]
+ public string? ApiKeyId { get; set; }
+
+ ///
+ /// Team member login username (nickname), present when the request was made with a user login token resolvable to a team member.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("login_username")]
+ public string? LoginUsername { 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.
+ ///
+ ///
+ /// Human-readable summary of the authentication method (key alias, login username, or 'User token'/'None').
+ ///
+ ///
+ /// API key ID, present when the request was made with an API key.
+ ///
+ ///
+ /// Team member login username (nickname), present when the request was made with a user login token resolvable to a team member.
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public GetUsageResponseTimeSerieResultAuthMethodStructured(
+ string detail,
+ string? apiKeyId,
+ string? loginUsername)
+ {
+ this.Detail = detail ?? throw new global::System.ArgumentNullException(nameof(detail));
+ this.ApiKeyId = apiKeyId;
+ this.LoginUsername = loginUsername;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public GetUsageResponseTimeSerieResultAuthMethodStructured()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.ListAssetCharactersResponseCharacter.g.cs b/src/libs/Fal/Generated/Fal.Models.ListAssetCharactersResponseCharacter.g.cs
index ff10bca..73ba01b 100644
--- a/src/libs/Fal/Generated/Fal.Models.ListAssetCharactersResponseCharacter.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.ListAssetCharactersResponseCharacter.g.cs
@@ -59,6 +59,12 @@ public sealed partial class ListAssetCharactersResponseCharacter
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -138,6 +144,9 @@ public sealed partial class ListAssetCharactersResponseCharacter
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Exact asset count when available; null for smart/character collections
///
@@ -157,6 +166,7 @@ public ListAssetCharactersResponseCharacter(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
double? assetCount)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
@@ -167,6 +177,7 @@ public ListAssetCharactersResponseCharacter(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.AssetCount = assetCount;
this.CreatedAt = createdAt ?? throw new global::System.ArgumentNullException(nameof(createdAt));
diff --git a/src/libs/Fal/Generated/Fal.Models.ListAssetCollectionsResponseCollection.g.cs b/src/libs/Fal/Generated/Fal.Models.ListAssetCollectionsResponseCollection.g.cs
index b5047eb..d3cd2c8 100644
--- a/src/libs/Fal/Generated/Fal.Models.ListAssetCollectionsResponseCollection.g.cs
+++ b/src/libs/Fal/Generated/Fal.Models.ListAssetCollectionsResponseCollection.g.cs
@@ -60,6 +60,12 @@ public sealed partial class ListAssetCollectionsResponseCollection
[global::System.Text.Json.Serialization.JsonPropertyName("character_identifier")]
public string? CharacterIdentifier { get; set; }
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { get; set; }
+
///
/// Whether the collection is favorited
///
@@ -135,6 +141,9 @@ public sealed partial class ListAssetCollectionsResponseCollection
///
/// Character @mention identifier for character collections
///
+ ///
+ /// Parent collection ID for a nested (manual) collection; null when top-level
+ ///
///
/// Filter DSL backing smart and character collections
///
@@ -156,6 +165,7 @@ public ListAssetCollectionsResponseCollection(
string? color,
string? coverImageUrl,
string? characterIdentifier,
+ string? parentCollectionId,
object? filters,
double? assetCount)
{
@@ -167,6 +177,7 @@ public ListAssetCollectionsResponseCollection(
this.Color = color;
this.CoverImageUrl = coverImageUrl;
this.CharacterIdentifier = characterIdentifier;
+ this.ParentCollectionId = parentCollectionId;
this.IsFavorited = isFavorited;
this.Filters = filters;
this.AssetCount = assetCount;
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionRequest.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionRequest.Json.g.cs
new file mode 100644
index 0000000..eb9b769
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionRequest.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionRequest
+ {
+ ///
+ /// 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.MoveAssetCollectionRequest? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionRequest),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionRequest;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionRequest? 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.MoveAssetCollectionRequest),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionRequest;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionRequest.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionRequest.g.cs
new file mode 100644
index 0000000..7c62c7d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionRequest.g.cs
@@ -0,0 +1,46 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class MoveAssetCollectionRequest
+ {
+ ///
+ /// Parent collection ID to move this collection under, or null to move it to the top level. Must be a manual collection; nesting is limited to 5 levels and cannot create a cycle.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("parent_collection_id")]
+ public string? ParentCollectionId { 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.
+ ///
+ ///
+ /// Parent collection ID to move this collection under, or null to move it to the top level. Must be a manual collection; nesting is limited to 5 levels and cannot create a cycle.
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public MoveAssetCollectionRequest(
+ string? parentCollectionId)
+ {
+ this.ParentCollectionId = parentCollectionId;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public MoveAssetCollectionRequest()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse.Json.g.cs
new file mode 100644
index 0000000..86efd19
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionResponse
+ {
+ ///
+ /// 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.MoveAssetCollectionResponse? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionResponse),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionResponse;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse? 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.MoveAssetCollectionResponse),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionResponse;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse.g.cs
new file mode 100644
index 0000000..af1d935
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ ///
+ ///
+ public sealed partial class MoveAssetCollectionResponse
+ {
+ ///
+ /// Asset collection
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("collection")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.MoveAssetCollectionResponseCollection Collection { 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.
+ ///
+ ///
+ /// Asset collection
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public MoveAssetCollectionResponse(
+ global::Fal.MoveAssetCollectionResponseCollection collection)
+ {
+ this.Collection = collection ?? throw new global::System.ArgumentNullException(nameof(collection));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public MoveAssetCollectionResponse()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse10.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse10.Json.g.cs
new file mode 100644
index 0000000..2f6067c
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse10.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionResponse10
+ {
+ ///
+ /// 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.MoveAssetCollectionResponse10? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionResponse10),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionResponse10;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse10? 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.MoveAssetCollectionResponse10),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionResponse10;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse10.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse10.g.cs
new file mode 100644
index 0000000..0a5e937
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse10.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class MoveAssetCollectionResponse10
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.MoveAssetCollectionResponseError9 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 MoveAssetCollectionResponse10(
+ global::Fal.MoveAssetCollectionResponseError9 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public MoveAssetCollectionResponse10()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse2.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse2.Json.g.cs
new file mode 100644
index 0000000..a0f165e
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse2.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionResponse2
+ {
+ ///
+ /// 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.MoveAssetCollectionResponse2? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionResponse2),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionResponse2;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse2? 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.MoveAssetCollectionResponse2),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionResponse2;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse2.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse2.g.cs
new file mode 100644
index 0000000..22b7cfa
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse2.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class MoveAssetCollectionResponse2
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.MoveAssetCollectionResponseError 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 MoveAssetCollectionResponse2(
+ global::Fal.MoveAssetCollectionResponseError error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public MoveAssetCollectionResponse2()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse3.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse3.Json.g.cs
new file mode 100644
index 0000000..9e5eb20
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse3.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionResponse3
+ {
+ ///
+ /// 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.MoveAssetCollectionResponse3? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionResponse3),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionResponse3;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse3? 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.MoveAssetCollectionResponse3),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionResponse3;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse3.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse3.g.cs
new file mode 100644
index 0000000..0df2f0d
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse3.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class MoveAssetCollectionResponse3
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.MoveAssetCollectionResponseError2 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 MoveAssetCollectionResponse3(
+ global::Fal.MoveAssetCollectionResponseError2 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public MoveAssetCollectionResponse3()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse4.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse4.Json.g.cs
new file mode 100644
index 0000000..106c301
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse4.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionResponse4
+ {
+ ///
+ /// 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.MoveAssetCollectionResponse4? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionResponse4),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionResponse4;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse4? 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.MoveAssetCollectionResponse4),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionResponse4;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse4.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse4.g.cs
new file mode 100644
index 0000000..7332a70
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse4.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class MoveAssetCollectionResponse4
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.MoveAssetCollectionResponseError3 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 MoveAssetCollectionResponse4(
+ global::Fal.MoveAssetCollectionResponseError3 error)
+ {
+ this.Error = error ?? throw new global::System.ArgumentNullException(nameof(error));
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public MoveAssetCollectionResponse4()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse5.Json.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse5.Json.g.cs
new file mode 100644
index 0000000..c665b3b
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse5.Json.g.cs
@@ -0,0 +1,92 @@
+#nullable enable
+
+namespace Fal
+{
+ public sealed partial class MoveAssetCollectionResponse5
+ {
+ ///
+ /// 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.MoveAssetCollectionResponse5? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::Fal.MoveAssetCollectionResponse5),
+ jsonSerializerContext) as global::Fal.MoveAssetCollectionResponse5;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse5? 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.MoveAssetCollectionResponse5),
+ jsonSerializerContext).ConfigureAwait(false)) as global::Fal.MoveAssetCollectionResponse5;
+ }
+
+ ///
+ /// 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.MoveAssetCollectionResponse5.g.cs b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse5.g.cs
new file mode 100644
index 0000000..5f32dd1
--- /dev/null
+++ b/src/libs/Fal/Generated/Fal.Models.MoveAssetCollectionResponse5.g.cs
@@ -0,0 +1,47 @@
+
+#nullable enable
+
+namespace Fal
+{
+ ///
+ /// Standard error response format
+ ///
+ public sealed partial class MoveAssetCollectionResponse5
+ {
+ ///
+ /// Error details
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("error")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Fal.MoveAssetCollectionResponseError4 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