From d73279bdd0224faf08e67454bd01ec9cdc6d0c87 Mon Sep 17 00:00:00 2001 From: Evgeny Afanasiev Date: Tue, 10 Feb 2026 15:21:20 +0300 Subject: [PATCH 1/5] Token expiration check added --- Acumatica.RESTClient/AuthApi/AuthApi.cs | 592 ++++++++++---------- Acumatica.RESTClient/AuthApi/Model/Token.cs | 18 +- Acumatica.RESTClient/Client/ApiClient.cs | 2 +- 3 files changed, 316 insertions(+), 296 deletions(-) diff --git a/Acumatica.RESTClient/AuthApi/AuthApi.cs b/Acumatica.RESTClient/AuthApi/AuthApi.cs index 888852a4e..31a49565e 100644 --- a/Acumatica.RESTClient/AuthApi/AuthApi.cs +++ b/Acumatica.RESTClient/AuthApi/AuthApi.cs @@ -1,342 +1,348 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net.Http; -using System.Text; -using System.Threading; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Text; +using System.Threading; using System.Threading.Tasks; -using Acumatica.RESTClient.Api; +using Acumatica.RESTClient.Api; using Acumatica.RESTClient.AuthApi.Model; -using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.Client; -using static Acumatica.RESTClient.Auxiliary.ApiClientHelpers; - - -namespace Acumatica.RESTClient.AuthApi +using static Acumatica.RESTClient.Auxiliary.ApiClientHelpers; + + +namespace Acumatica.RESTClient.AuthApi { - /// - /// Represents a collection of functions to interact with the Authorization endpoint - /// - public static class AuthApiExtensions + /// + /// Represents a collection of functions to interact with the Authorization endpoint + /// + public static class AuthApiExtensions { - #region Public Methods - #region OAuth - public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) + #region Public Methods + #region OAuth + public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) { RefreshAccessTokenAsync(client, clientID, clientSecret).GetAwaiter().GetResult(); } - public async static Task RefreshAccessTokenAsync(this ApiClient client, string clientID, string clientSecret, CancellationToken cancellationToken = default) - { - if (client == null || string.IsNullOrEmpty(client.Token?.Refresh_token)) + public async static Task RefreshAccessTokenAsync(this ApiClient client, string clientID, string clientSecret, CancellationToken cancellationToken = default) + { + if (client == null || string.IsNullOrEmpty(client.Token?.Refresh_token)) ThrowMissingParameter(nameof(RefreshAccessToken), "Refresh_Token"); + var time = DateTime.UtcNow; HttpResponseMessage response = await client!.CallApiAsync( resourcePath: "/identity/connect/token", method: HttpMethod.Post, queryParams: null, body: await ToFormUrlEncodedAsync(new Dictionary() - { - {"grant_type", "refresh_token" }, - {"client_id", clientID }, - {"client_secret", clientSecret }, + { + {"grant_type", "refresh_token" }, + {"client_id", clientID }, + {"client_secret", clientSecret }, {"refresh_token", client.Token!.Refresh_token! }, }).ConfigureAwait(false), acceptType: HeaderContentType.None, contentType: HeaderContentType.WwwForm, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - + cancellationToken: cancellationToken + ).ConfigureAwait(false); + response.EnsureSuccessStatusCode(); - client.Token = await DeserializeAsync(response).ConfigureAwait(false); + client.Token = await DeserializeAsync(response).ConfigureAwait(false); + client.Token?.SetTokenObtainedDT(time); } - /// - /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) + /// + /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) /// - /// - /// - /// - /// - /// - /// - public static void ReceiveAccessToken(this ApiClient client, string clientID, string clientSecret, string username, string password, OAuthScope scope) + /// + /// + /// + /// + /// + /// + public static void ReceiveAccessToken(this ApiClient client, string clientID, string clientSecret, string username, string password, OAuthScope scope) { ReceiveAccessTokenAsync(client, clientID, clientSecret, username, password, scope).GetAwaiter().GetResult(); } - /// - /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) + /// + /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) /// - /// - /// - /// - /// - /// + /// + /// + /// + /// + /// /// - /// - public async static Task ReceiveAccessTokenAsync( - this ApiClient client, - string clientID, - string clientSecret, - string username, - string password, - OAuthScope scope, - CancellationToken cancellationToken = default) + /// + public async static Task ReceiveAccessTokenAsync( + this ApiClient client, + string clientID, + string clientSecret, + string username, + string password, + OAuthScope scope, + CancellationToken cancellationToken = default) { + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "identity/connect/token", method: HttpMethod.Post, acceptType: HeaderContentType.None, contentType: HeaderContentType.WwwForm, body: await ToFormUrlEncodedAsync(new Dictionary - { - {"grant_type", "password" }, - {"client_id", clientID }, - {"client_secret", clientSecret }, - {"username", username }, - {"password", password }, + { + {"grant_type", "password" }, + {"client_id", clientID }, + {"client_secret", clientSecret }, + {"username", username }, + {"password", password }, {"scope", PrepareScopeParameter(scope) } - }).ConfigureAwait(false), - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, nameof(ReceiveAccessTokenAsync)).ConfigureAwait(false); - - client.Token = await DeserializeAsync(response).ConfigureAwait(false); + }).ConfigureAwait(false), + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, nameof(ReceiveAccessTokenAsync)).ConfigureAwait(false); + + client.Token = await DeserializeAsync(response).ConfigureAwait(false); + client.Token?.SetTokenObtainedDT(time); } - /// - /// + /// + /// /// - /// - /// - /// - /// - /// - public static string Authorize(this ApiClient client, string clientID, string clientSecret, string redirectUrl, OAuthScope scope) + /// + /// + /// + /// + /// + public static string Authorize(this ApiClient client, string clientID, string clientSecret, string redirectUrl, OAuthScope scope) { return AuthorizeAsync(client, clientID, clientSecret, redirectUrl, scope).Result; } - /// - /// + /// + /// /// - /// - /// - /// - /// + /// + /// + /// + /// /// - /// - public async static Task AuthorizeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - OAuthScope scope, - CancellationToken cancellationToken = default) - { + /// + public async static Task AuthorizeAsync( + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + OAuthScope scope, + CancellationToken cancellationToken = default) + { List> queryParams = new List> { new KeyValuePair("response_type", "code"), new KeyValuePair("client_id", clientID), new KeyValuePair("scope", PrepareScopeParameter(scope)), new KeyValuePair("redirect_uri", redirectUrl) - }; - - HttpResponseMessage response = await client.CallApiAsync( - resourcePath: "identity/connect/authorize", - method: HttpMethod.Get, - acceptType: HeaderContentType.Any, + }; + + HttpResponseMessage response = await client.CallApiAsync( + resourcePath: "identity/connect/authorize", + method: HttpMethod.Get, + acceptType: HeaderContentType.Any, contentType: HeaderContentType.None, - queryParams: queryParams, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); - - var locationHeader = response.Headers.Where(_ => _.Key == "Location").FirstOrDefault(); - if (!response.Headers.Where(_ => _.Key == "Location").Any()) - { - //maybe we've already been redirected, let's take response URL in this case - return response.RequestMessage.RequestUri.ToString(); - } - return response.Headers.Where(_ => _.Key == "Location").First().Value.First().ToString(); + queryParams: queryParams, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); + + var locationHeader = response.Headers.Where(_ => _.Key == "Location").FirstOrDefault(); + if (!response.Headers.Where(_ => _.Key == "Location").Any()) + { + //maybe we've already been redirected, let's take response URL in this case + return response.RequestMessage.RequestUri.ToString(); + } + return response.Headers.Where(_ => _.Key == "Location").First().Value.First().ToString(); } - /// - /// Receives access token for OAuth 2.0 authentication (Authorization code flow) - /// - /// - /// - /// - /// - /// - public static void ReceiveAccessTokenAuthCode(this ApiClient client, string clientID, string clientSecret, string redirectUrl, string code) + /// + /// Receives access token for OAuth 2.0 authentication (Authorization code flow) + /// + /// + /// + /// + /// + /// + public static void ReceiveAccessTokenAuthCode(this ApiClient client, string clientID, string clientSecret, string redirectUrl, string code) { - ReceiveAccessTokenAuthCodeAsync(client, clientID, clientSecret, redirectUrl, code).GetAwaiter().GetResult(); + ReceiveAccessTokenAuthCodeAsync(client, clientID, clientSecret, redirectUrl, code).GetAwaiter().GetResult(); } - /// - /// Receives access token for OAuth 2.0 authentication (Authorization code flow) - /// - /// - /// - /// - /// + /// + /// Receives access token for OAuth 2.0 authentication (Authorization code flow) + /// + /// + /// + /// + /// /// - /// - public static async Task ReceiveAccessTokenAuthCodeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - string code, - CancellationToken cancellationToken = default) + /// + public static async Task ReceiveAccessTokenAuthCodeAsync( + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + string code, + CancellationToken cancellationToken = default) { + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "/identity/connect/token", method: HttpMethod.Post, acceptType: HeaderContentType.None, contentType: HeaderContentType.WwwForm, body: await ToFormUrlEncodedAsync(new Dictionary - { - {"grant_type", "authorization_code" }, - {"code", code }, - {"redirect_uri", redirectUrl }, - {"client_id", clientID }, + { + {"grant_type", "authorization_code" }, + {"code", code }, + {"redirect_uri", redirectUrl }, + {"client_id", clientID }, {"client_secret", clientSecret }, // {"scope", PrepareScopeParameter(scope) } }).ConfigureAwait(false), - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); - - client.Token = await DeserializeAsync(response).ConfigureAwait(false); + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); + + client.Token = await DeserializeAsync(response).ConfigureAwait(false); + client.Token?.SetTokenObtainedDT(time); } - #endregion + #endregion - #region Login - /// - /// Logs in to the system. - /// + #region Login + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// Name of the user that is used to open a new session (required). - /// User password (required). - /// Defines the tenant to log in. - /// Defines the branch to log in. - /// Defines the locale to use for localizable data. - [Obsolete("Use OAuth 2.0 methods instead.")] - public static void Login(this ApiClient client, string username, string password, string? tenant = null, string? branch = null, string? locale = null) - { - Login(client, new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale)); + /// + /// Name of the user that is used to open a new session (required). + /// User password (required). + /// Defines the tenant to log in. + /// Defines the branch to log in. + /// Defines the locale to use for localizable data. + [Obsolete("Use OAuth 2.0 methods instead.")] + public static void Login(this ApiClient client, string username, string password, string? tenant = null, string? branch = null, string? locale = null) + { + Login(client, new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale)); } - /// - /// Logs in to the system. - /// + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// Name of the user that is used to open a new session (required). - /// User password (required). - /// Defines the tenant to log in. - /// Defines the branch to log in. + /// + /// Name of the user that is used to open a new session (required). + /// User password (required). + /// Defines the tenant to log in. + /// Defines the branch to log in. /// Defines the locale to use for localizable data. /// - [Obsolete("Use OAuth 2.0 methods instead.")] - public async static Task LoginAsync(this ApiClient client, - string username, string password, string? tenant = null, string? branch = null, string? locale = null, - CancellationToken cancellationToken = default) + [Obsolete("Use OAuth 2.0 methods instead.")] + public async static Task LoginAsync(this ApiClient client, + string username, string password, string? tenant = null, string? branch = null, string? locale = null, + CancellationToken cancellationToken = default) { - await LoginAsync( + await LoginAsync( client: client, - credentials: new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale), - cancellationToken: cancellationToken - ).ConfigureAwait(false); + credentials: new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale), + cancellationToken: cancellationToken + ).ConfigureAwait(false); } - /// - /// Logs in to the system. - /// + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// - /// object that provides information required to log into the web service. - /// - [Obsolete("Use OAuth 2.0 methods instead.")] - public static void Login(this ApiClient client, Credentials credentials) + /// + /// + /// object that provides information required to log into the web service. + /// + [Obsolete("Use OAuth 2.0 methods instead.")] + public static void Login(this ApiClient client, Credentials credentials) { LoginAsync(client, credentials).GetAwaiter().GetResult(); } - /// - /// Logs in to the system. - /// + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// - /// object that provides information required to log into the web service. + /// + /// + /// object that provides information required to log into the web service. /// /// - [Obsolete("Use OAuth 2.0 methods instead.")] - public async static Task LoginAsync( - this ApiClient client, - Credentials credentials, - CancellationToken cancellationToken = default) + [Obsolete("Use OAuth 2.0 methods instead.")] + public async static Task LoginAsync( + this ApiClient client, + Credentials credentials, + CancellationToken cancellationToken = default) { - if (credentials == null) - ThrowMissingParameter(nameof(LoginAsync), nameof(credentials)); - - HttpResponseMessage response = await client.CallApiAsync( - resourcePath: "/entity/auth/login", - method: HttpMethod.Post, - acceptType: HeaderContentType.None, + if (credentials == null) + ThrowMissingParameter(nameof(LoginAsync), nameof(credentials)); + + HttpResponseMessage response = await client.CallApiAsync( + resourcePath: "/entity/auth/login", + method: HttpMethod.Post, + acceptType: HeaderContentType.None, contentType: HeaderContentType.Json | HeaderContentType.Xml | HeaderContentType.WwwForm, - body: credentials, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, nameof(LoginAsync)).ConfigureAwait(false); + body: credentials, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, nameof(LoginAsync)).ConfigureAwait(false); } - #endregion + #endregion - #region Logout - /// - /// Logs out from the system. - /// - /// Thrown when fails to make API call - /// - public static void Logout(this ApiClient client) + #region Logout + /// + /// Logs out from the system. + /// + /// Thrown when fails to make API call + /// + public static void Logout(this ApiClient client) { - LogoutAsync(client).GetAwaiter().GetResult(); - } - - /// - /// Logs out from the system without throwing exceptions if the logout failed. - /// - /// Returns true if the logout has been successful - public static bool TryLogout(this ApiClient client) - { - try + LogoutAsync(client).GetAwaiter().GetResult(); + } + + /// + /// Logs out from the system without throwing exceptions if the logout failed. + /// + /// Returns true if the logout has been successful + public static bool TryLogout(this ApiClient client) + { + try { Logout(client); - return true; - } - catch - { - return false; - } - } - - - /// - /// Logs out from the system. - /// - /// Thrown when fails to make API call - /// Task of void - public static async Task LogoutAsync(this ApiClient client, CancellationToken cancellationToken = default) + return true; + } + catch + { + return false; + } + } + + + /// + /// Logs out from the system. + /// + /// Thrown when fails to make API call + /// Task of void + public static async Task LogoutAsync(this ApiClient client, CancellationToken cancellationToken = default) { if (!client.HasSessionInfo()) { @@ -346,56 +352,56 @@ public static async Task LogoutAsync(this ApiClient client, CancellationToken ca resourcePath: "/entity/auth/logout", method: HttpMethod.Post, acceptType: HeaderContentType.None, - contentType: HeaderContentType.None, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); - } - - #endregion - #endregion - - #region Auxiliary - private async static Task VerifyResponseAsync(ApiClient client, HttpResponseMessage response, string methodName) - { - if (!response.IsSuccessStatusCode) - { - var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false); - if (content?.Contains("API Login Limit") == true) - { - throw new ApiException(429, $"Error when calling {methodName}: API login limit exceeded. Please try again later."); + contentType: HeaderContentType.None, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); + } + + #endregion + #endregion + + #region Auxiliary + private async static Task VerifyResponseAsync(ApiClient client, HttpResponseMessage response, string methodName) + { + if (!response.IsSuccessStatusCode) + { + var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false); + if (content?.Contains("API Login Limit") == true) + { + throw new ApiException(429, $"Error when calling {methodName}: API login limit exceeded. Please try again later."); } - else if (content?.Contains("Invalid credentials") == true) - { - throw new ApiException((int)response.StatusCode, $"Error when calling {methodName}: Invalid credentials."); + else if (content?.Contains("Invalid credentials") == true) + { + throw new ApiException((int)response.StatusCode, $"Error when calling {methodName}: Invalid credentials."); } - throw new ApiException((int)response.StatusCode, $"Error {(int)response.StatusCode}:{response.ReasonPhrase} when calling {methodName}: {content}"); - } - } - - [Flags] - public enum OAuthScope - { - None = 0, - API = 1, - OfflineAccess = 2, - ConcurrentAccess = 4 - } - - private static string PrepareScopeParameter(OAuthScope scope) - { - StringBuilder s = new StringBuilder(); - if (scope.HasFlag(OAuthScope.API)) - s.Append("api "); - if (scope.HasFlag(OAuthScope.OfflineAccess)) - s.Append("offline_access "); - if (scope.HasFlag(OAuthScope.ConcurrentAccess)) - s.Append("api:concurrent_access "); - - return s.ToString().TrimEnd(' '); - } - - #endregion - } -} + throw new ApiException((int)response.StatusCode, $"Error {(int)response.StatusCode}:{response.ReasonPhrase} when calling {methodName}: {content}"); + } + } + + [Flags] + public enum OAuthScope + { + None = 0, + API = 1, + OfflineAccess = 2, + ConcurrentAccess = 4 + } + + private static string PrepareScopeParameter(OAuthScope scope) + { + StringBuilder s = new StringBuilder(); + if (scope.HasFlag(OAuthScope.API)) + s.Append("api "); + if (scope.HasFlag(OAuthScope.OfflineAccess)) + s.Append("offline_access "); + if (scope.HasFlag(OAuthScope.ConcurrentAccess)) + s.Append("api:concurrent_access "); + + return s.ToString().TrimEnd(' '); + } + + #endregion + } +} diff --git a/Acumatica.RESTClient/AuthApi/Model/Token.cs b/Acumatica.RESTClient/AuthApi/Model/Token.cs index 0ef4e0f49..47611ee4d 100644 --- a/Acumatica.RESTClient/AuthApi/Model/Token.cs +++ b/Acumatica.RESTClient/AuthApi/Model/Token.cs @@ -1,6 +1,6 @@ -using System.Runtime.Serialization; - using Newtonsoft.Json; +using System; +using System.Runtime.Serialization; namespace Acumatica.RESTClient.AuthApi.Model { @@ -22,6 +22,7 @@ public Token( Refresh_token = refreshToken; Scope = scope; Token_type = token_type; + SetTokenObtainedDT(); } [DataMember(Name = "access_token", EmitDefaultValue = false)] @@ -39,6 +40,9 @@ public Token( [DataMember(Name = "token_type", EmitDefaultValue = false)] public string? Token_type { get; set; } + public DateTime ObtainedAtUTC{ get; private set; } + + public bool IsValid { get => isValid(); } /// /// Returns the JSON string presentation of the object /// @@ -47,6 +51,16 @@ public virtual string ToJson() { return JsonConvert.SerializeObject(this, Formatting.Indented); } + + public virtual void SetTokenObtainedDT(DateTime? dt = null) + { + ObtainedAtUTC = dt ?? DateTime.UtcNow; + } + + private bool isValid() + { + return !string.IsNullOrEmpty(Access_token) && (DateTime.UtcNow - ObtainedAtUTC).TotalSeconds < Convert.ToUInt32(Expires_in); + } } } diff --git a/Acumatica.RESTClient/Client/ApiClient.cs b/Acumatica.RESTClient/Client/ApiClient.cs index 751adb56e..8d2c1d237 100644 --- a/Acumatica.RESTClient/Client/ApiClient.cs +++ b/Acumatica.RESTClient/Client/ApiClient.cs @@ -249,7 +249,7 @@ public async Task CallApiAsync( public bool HasToken() { - return Token != null; + return Token?.IsValid == true; } public void Dispose() { From f2be6547f1f93d42a4219476d09697d1f619e209 Mon Sep 17 00:00:00 2001 From: Evgeny Afanasiev Date: Tue, 10 Feb 2026 16:15:56 +0300 Subject: [PATCH 2/5] Fix spaces --- Acumatica REST API Client.sln | 7 + .../OAuthAuthCodeExample.cs | 2 +- .../OAuthHybridExample.cs | 196 ++++++++++++ .../Program.cs | 98 +++--- Acumatica.RESTClient/AuthApi/AuthApi.cs | 49 +-- Acumatica.RESTClient/Client/ApiClient.cs | 28 +- .../Acumatica.ISVCB_23.200.001.csproj | 34 ++ .../Api/AccountApi.cs | 13 + .../Api/AccountDetailsForPeriodInquiryApi.cs | 13 + .../Api/AccountGroupApi.cs | 13 + .../Api/AccountSummaryInquiryApi.cs | 13 + .../Api/ActivityApi.cs | 13 + .../Api/AppointmentApi.cs | 13 + .../Api/AttributeDefinitionApi.cs | 13 + .../Api/BaseEndpointApi.cs | 24 ++ .../Api/BigCommerceStoresApi.cs | 13 + .../Acumatica.ISVCB_23.200.001/Api/BillApi.cs | 13 + .../Api/BudgetApi.cs | 13 + .../Api/BusinessAccountApi.cs | 13 + .../Api/CarrierApi.cs | 13 + .../Acumatica.ISVCB_23.200.001/Api/CaseApi.cs | 13 + .../Api/CashSaleApi.cs | 13 + .../Api/ChangeOrderApi.cs | 13 + .../Api/ChangeOrderClassApi.cs | 13 + .../Api/CheckApi.cs | 13 + .../Api/CompaniesStructureApi.cs | 13 + .../Api/CompanyFinancialPeriodApi.cs | 13 + .../Api/ContactApi.cs | 13 + .../Api/ContractUsageApi.cs | 13 + .../Api/CostCodeApi.cs | 13 + .../Api/CurrencyApi.cs | 13 + .../Api/CustomerApi.cs | 13 + .../Api/CustomerClassApi.cs | 13 + .../Api/CustomerLocationApi.cs | 13 + .../Api/CustomerPaymentMethodApi.cs | 13 + .../Api/CustomerPriceClassApi.cs | 13 + .../Api/DeductionBenefitCodeApi.cs | 13 + .../Api/DiscountApi.cs | 13 + .../Api/DiscountCodeApi.cs | 13 + .../Api/EarningTypeCodeApi.cs | 13 + .../Api/EducatedResourcesApi.cs | 13 + .../Api/EmailApi.cs | 13 + .../Api/EmailProcessingApi.cs | 13 + .../Api/EmployeeApi.cs | 13 + .../Api/EmployeePayrollClassApi.cs | 13 + .../Api/EmployeePayrollSettingsApi.cs | 13 + .../Api/EventApi.cs | 13 + .../Api/ExpenseClaimApi.cs | 13 + .../Api/ExpenseReceiptApi.cs | 13 + .../Api/ExternalCommitmentApi.cs | 13 + .../Api/FOBPointApi.cs | 13 + .../Api/FinancialPeriodApi.cs | 13 + .../Api/FinancialYearApi.cs | 13 + .../Api/ISVContactsApi.cs | 13 + .../Api/ISVSolutionApi.cs | 13 + .../Api/InventoryAdjustmentApi.cs | 13 + .../Api/InventoryAllocationInquiryApi.cs | 13 + .../Api/InventoryIssueApi.cs | 13 + .../Api/InventoryQuantityAvailableApi.cs | 13 + .../Api/InventoryReceiptApi.cs | 13 + .../Api/InventorySummaryInquiryApi.cs | 13 + .../Api/InvoiceApi.cs | 13 + .../Api/ItemClassApi.cs | 13 + .../Api/ItemSalesCategoryApi.cs | 13 + .../Api/ItemWarehouseApi.cs | 13 + .../Api/JournalTransactionApi.cs | 13 + .../Api/KitAssemblyApi.cs | 13 + .../Api/KitSpecificationApi.cs | 13 + .../Api/LaborCostRateApi.cs | 13 + .../Acumatica.ISVCB_23.200.001/Api/LeadApi.cs | 13 + .../Api/LedgerApi.cs | 13 + .../Api/LotSerialClassApi.cs | 13 + .../Api/NonStockItemApi.cs | 13 + .../Api/OpportunityApi.cs | 13 + .../Api/PTOBankApi.cs | 13 + .../Api/PayGroupApi.cs | 13 + .../Api/PayPeriodApi.cs | 13 + .../Api/PaymentApi.cs | 13 + .../Api/PaymentMethodApi.cs | 13 + .../Api/PayrollBatchApi.cs | 13 + .../Api/PayrollUnionLocalApi.cs | 13 + .../Api/PayrollWCCCodeApi.cs | 13 + .../Api/PhysicalInventoryCountApi.cs | 13 + .../Api/PhysicalInventoryReviewApi.cs | 13 + .../Api/ProFormaInvoiceApi.cs | 13 + .../Api/ProjectApi.cs | 13 + .../Api/ProjectBudgetApi.cs | 13 + .../Api/ProjectTaskApi.cs | 13 + .../Api/ProjectTemplateApi.cs | 13 + .../Api/ProjectTemplateTaskApi.cs | 13 + .../Api/ProjectTransactionApi.cs | 13 + .../Api/PurchaseOrderApi.cs | 13 + .../Api/PurchaseReceiptApi.cs | 13 + .../Api/SalesInvoiceApi.cs | 13 + .../Api/SalesOrderApi.cs | 13 + .../Api/SalesPriceWorksheetApi.cs | 13 + .../Api/SalesPricesInquiryApi.cs | 13 + .../Api/SalespersonApi.cs | 13 + .../Api/ServiceOrderApi.cs | 13 + .../Api/ShipViaApi.cs | 13 + .../Api/ShipmentApi.cs | 13 + .../Api/ShippingBoxApi.cs | 13 + .../Api/ShippingTermApi.cs | 13 + .../Api/ShippingZonesApi.cs | 13 + .../Api/ShopifyStoreApi.cs | 13 + .../Api/StockItemApi.cs | 13 + .../Api/StorageDetailsByLocationInquiryApi.cs | 13 + .../Api/StorageDetailsInquiryApi.cs | 13 + .../Api/SubaccountApi.cs | 13 + .../Api/SubcontractApi.cs | 13 + .../Acumatica.ISVCB_23.200.001/Api/TaskApi.cs | 13 + .../Acumatica.ISVCB_23.200.001/Api/TaxApi.cs | 13 + .../Api/TaxCategoryApi.cs | 13 + .../Api/TaxReportingSettingsApi.cs | 13 + .../Api/TaxZoneApi.cs | 13 + .../Api/TemplateItemsApi.cs | 13 + .../Api/TimeEntryApi.cs | 13 + .../Api/TransferOrderApi.cs | 13 + .../Api/UnionLocalApi.cs | 13 + .../Api/UnitsOfMeasureApi.cs | 13 + .../Api/VendorApi.cs | 13 + .../Api/VendorClassApi.cs | 13 + .../Api/VendorPriceWorksheetApi.cs | 13 + .../Api/VendorPricesInquiryApi.cs | 13 + .../Api/WarehouseApi.cs | 13 + .../Api/WorkCalendarApi.cs | 13 + .../Api/WorkClassCompensationCodeApi.cs | 13 + .../Api/WorkLocationApi.cs | 13 + .../Model/ACAInfoDetail.cs | 24 ++ .../Model/ACAInformation.cs | 24 ++ .../Model/Account.cs | 79 +++++ .../Model/AccountDetailsForPeriodInquiry.cs | 40 +++ .../AccountDetailsForPeriodInquiryDetail.cs | 84 +++++ .../Model/AccountGroup.cs | 49 +++ .../Model/AccountSummaryInquiry.cs | 40 +++ .../Model/AccountSummaryRow.cs | 78 +++++ .../CardOperationParameters.cs | 33 ++ .../ChangeBusinessAccountIDParameters.cs | 21 ++ .../ChangeCostCodeIDParameters.cs | 21 ++ .../ChangeEmployeeIDParameters.cs | 21 ++ .../ChangeProjectIDParameters.cs | 21 ++ .../Model/ActionParameters/CloseParameters.cs | 21 ++ .../ConvertLeadToBAccountParameters.cs | 43 +++ .../ConvertLeadToContactParameters.cs | 39 +++ .../ConvertLeadToOpportunityParameters.cs | 51 +++ .../CreateAccountFromContactParameters.cs | 25 ++ .../CreateAccountFromOpportunityParameters.cs | 47 +++ ...ateContactFromBusinessAccountParameters.cs | 37 +++ .../CreateContactFromCustomerParameters.cs | 37 +++ .../CreateContactFromOpportunityParameters.cs | 39 +++ .../CreateContactFromVendorParameters.cs | 37 +++ .../CreateOpportunitySalesOrderParameters.cs | 23 ++ .../ActionParameters/LinkCaseParameters.cs | 12 + .../ReleaseRetainageParameters.cs | 25 ++ .../SalesOrderCreateReceiptParameters.cs | 23 ++ .../SalesOrderCreateShipmentParameters.cs | 23 ++ .../ActionParameters/SetResultParameters.cs | 12 + .../UpdateDiscountsParameters.cs | 21 ++ .../VoidCardPaymentParameters.cs | 31 ++ .../Model/Actions/AcceptInvitationEvent.cs | 19 ++ .../Model/Actions/ActivateProject.cs | 19 ++ .../Model/Actions/ActivateProjectTask.cs | 19 ++ .../Model/Actions/ActivateProjectTemplate.cs | 19 ++ .../Model/Actions/AllowBilling.cs | 19 ++ .../Model/Actions/AppRecalcExternalTax.cs | 19 ++ .../Model/Actions/ApproveChangeOrder.cs | 19 ++ .../Model/Actions/ApproveExpenseClaim.cs | 19 ++ .../Model/Actions/ApproveExpenseReceipt.cs | 19 ++ .../Model/Actions/ApproveProFormaInvoice.cs | 19 ++ .../Model/Actions/ApproveProject.cs | 19 ++ .../Model/Actions/ArchiveEmail.cs | 19 ++ .../Model/Actions/AssignCase.cs | 19 ++ .../Model/Actions/AutoRecalculateDiscounts.cs | 19 ++ .../Model/Actions/CancelActivityEvent.cs | 19 ++ .../Model/Actions/CancelActivityTask.cs | 19 ++ .../Model/Actions/CancelAppointment.cs | 19 ++ .../Model/Actions/CancelOrder.cs | 19 ++ .../Model/Actions/CancelPhysicalInventory.cs | 19 ++ .../Model/Actions/CancelProject.cs | 19 ++ .../Model/Actions/CancelProjectTask.cs | 19 ++ .../Model/Actions/CancelSalesOrder.cs | 19 ++ .../Model/Actions/CancelSendingEmail.cs | 19 ++ .../Model/Actions/CaptureCreditCardPayment.cs | 19 ++ .../Model/Actions/CardOperation.cs | 55 ++++ .../Model/Actions/ChangeBusinessAccountID.cs | 25 ++ .../Model/Actions/ChangeCostCodeID.cs | 25 ++ .../Model/Actions/ChangeEmployeeID.cs | 25 ++ .../Model/Actions/ChangeProjectID.cs | 25 ++ .../CheckForBusinessAccountDuplicates.cs | 19 ++ .../Actions/CheckForContactDuplicates.cs | 19 ++ .../Model/Actions/CheckLeadForDuplicates.cs | 19 ++ .../Model/Actions/ClaimExpenseReceipt.cs | 19 ++ .../Model/Actions/Close.cs | 25 ++ .../Model/Actions/CloseAppointment.cs | 19 ++ .../Model/Actions/CloseOrder.cs | 19 ++ .../Model/Actions/CompleteActivity.cs | 19 ++ .../Model/Actions/CompleteAppointment.cs | 19 ++ .../Model/Actions/CompleteEvent.cs | 19 ++ .../Model/Actions/CompleteOrder.cs | 19 ++ .../Actions/CompletePhysicalInventory.cs | 19 ++ .../Model/Actions/CompleteProject.cs | 19 ++ .../Model/Actions/CompleteProjectTask.cs | 19 ++ .../Model/Actions/CompleteTask.cs | 19 ++ .../Model/Actions/CompleteTimeEntry.cs | 19 ++ .../Model/Actions/ConfirmShipment.cs | 19 ++ .../ConvertBusinessAccountToCustomer.cs | 19 ++ .../Model/Actions/ConvertLeadToBAccount.cs | 80 +++++ .../Model/Actions/ConvertLeadToContact.cs | 70 +++++ .../Model/Actions/ConvertLeadToOpportunity.cs | 100 ++++++ .../Model/Actions/CorrectShipment.cs | 19 ++ .../Model/Actions/CreateAPBill.cs | 19 ++ .../Model/Actions/CreateAccountFromContact.cs | 35 +++ .../Actions/CreateAccountFromOpportunity.cs | 90 ++++++ .../Model/Actions/CreateCaseFromEmail.cs | 19 ++ .../CreateContactFromBusinessAccount.cs | 65 ++++ .../Actions/CreateContactFromCustomer.cs | 65 ++++ .../Model/Actions/CreateContactFromEmail.cs | 19 ++ .../Actions/CreateContactFromOpportunity.cs | 70 +++++ .../Model/Actions/CreateContactFromVendor.cs | 65 ++++ .../Model/Actions/CreateEventFromEmail.cs | 19 ++ .../Actions/CreateExpenseReceiptFromEmail.cs | 19 ++ .../Model/Actions/CreateLeadFromEmail.cs | 19 ++ .../Actions/CreateOpportunityFromEmail.cs | 19 ++ .../Model/Actions/CreateOpportunityInvoice.cs | 19 ++ .../Actions/CreateOpportunitySalesOrder.cs | 30 ++ .../Model/Actions/CreateTaskFromEmail.cs | 19 ++ .../Model/Actions/EmailChangeOrder.cs | 19 ++ .../Model/Actions/EmailProFormaInvoice.cs | 19 ++ .../Model/Actions/ExportCardEvent.cs | 19 ++ .../FinishCountingPhysicalInventory.cs | 19 ++ .../Model/Actions/HoldChangeOrder.cs | 19 ++ .../Model/Actions/HoldProFormaInvoice.cs | 19 ++ .../Model/Actions/HoldProject.cs | 19 ++ .../Model/Actions/HoldProjectTask.cs | 19 ++ .../Model/Actions/HoldProjectTemplate.cs | 19 ++ .../Model/Actions/ImportEmployeeTaxes.cs | 19 ++ .../Model/Actions/InviteAllEvent.cs | 19 ++ .../Model/Actions/InviteEvent.cs | 19 ++ .../Model/Actions/InvoiceAppointment.cs | 19 ++ .../Model/Actions/InvoiceOrder.cs | 19 ++ .../Model/Actions/LinkCase.cs | 26 ++ .../Model/Actions/LockProjectBudget.cs | 19 ++ .../Model/Actions/LockProjectCommitments.cs | 19 ++ .../Model/Actions/LockSubmission.cs | 14 + .../Actions/MarkBusinessAccountAsValidated.cs | 19 ++ .../Model/Actions/MarkContactAsValidated.cs | 19 ++ .../Model/Actions/MarkLeadAsValidated.cs | 19 ++ .../Model/Actions/Open.cs | 19 ++ .../Model/Actions/OpenSalesOrder.cs | 19 ++ .../Model/Actions/OpenTimeEntry.cs | 19 ++ .../Model/Actions/PauseAppointment.cs | 19 ++ .../Model/Actions/PrepareInvoice.cs | 19 ++ .../Model/Actions/PrepareSalesInvoice.cs | 19 ++ .../Actions/ProcessAllEmailProcessing.cs | 19 ++ .../Model/Actions/ProcessEmail.cs | 19 ++ .../Model/Actions/ProcessEmailProcessing.cs | 19 ++ .../Model/Actions/PutOnHold.cs | 19 ++ .../Model/Actions/PutOnHoldExpenseClaim.cs | 19 ++ .../Model/Actions/PutOnHoldExpenseReceipt.cs | 19 ++ .../Model/Actions/RecalcExternalTax.cs | 19 ++ .../Model/Actions/RejectChangeOrder.cs | 19 ++ .../Model/Actions/RejectExpenseClaim.cs | 19 ++ .../Model/Actions/RejectExpenseReceipt.cs | 19 ++ .../Model/Actions/RejectInvitationEvent.cs | 19 ++ .../Model/Actions/RejectProFormaInvoice.cs | 19 ++ .../Model/Actions/RejectProject.cs | 19 ++ .../Model/Actions/ReleaseAdjustment.cs | 19 ++ .../Model/Actions/ReleaseBatch.cs | 19 ++ .../Model/Actions/ReleaseBill.cs | 19 ++ .../Model/Actions/ReleaseCase.cs | 19 ++ .../Model/Actions/ReleaseCashSale.cs | 19 ++ .../Model/Actions/ReleaseChangeOrder.cs | 19 ++ .../Model/Actions/ReleaseCheck.cs | 19 ++ .../Model/Actions/ReleaseExpenseClaim.cs | 19 ++ .../ReleaseFromCreditHoldSalesOrder.cs | 19 ++ .../Model/Actions/ReleaseFromHold.cs | 19 ++ .../Model/Actions/ReleaseInventoryIssue.cs | 19 ++ .../Model/Actions/ReleaseInventoryReceipt.cs | 19 ++ .../Model/Actions/ReleaseInvoice.cs | 19 ++ .../Actions/ReleaseJournalTransaction.cs | 19 ++ .../Model/Actions/ReleaseKitAssembly.cs | 19 ++ .../Model/Actions/ReleasePayment.cs | 19 ++ .../Model/Actions/ReleaseProFormaInvoice.cs | 19 ++ .../Model/Actions/ReleasePurchaseReceipt.cs | 19 ++ .../Model/Actions/ReleaseRetainage.cs | 35 +++ .../Model/Actions/ReleaseSalesInvoice.cs | 19 ++ .../Actions/ReleaseSalesPriceWorksheet.cs | 19 ++ .../Model/Actions/ReleaseTransactions.cs | 19 ++ .../Model/Actions/ReleaseTransferOrder.cs | 19 ++ .../Actions/ReleaseVendorPriceWorksheet.cs | 19 ++ .../Actions/RemoveChangeOrderFromHold.cs | 19 ++ .../Actions/RemoveProFormaInvoiceFromHold.cs | 19 ++ .../Model/Actions/ReopenAppointment.cs | 19 ++ .../Model/Actions/ReopenOrder.cs | 19 ++ .../Model/Actions/ReopenSalesOrder.cs | 19 ++ .../Model/Actions/RestoreArchivedEmail.cs | 19 ++ .../Model/Actions/RestoreDeletedEmail.cs | 19 ++ .../Actions/ResumeAppointmentMenuActions.cs | 19 ++ .../Model/Actions/ReverseBill.cs | 19 ++ .../Model/Actions/ReverseChangeOrder.cs | 19 ++ .../Model/Actions/RunProjectAllocation.cs | 19 ++ .../Model/Actions/RunProjectBilling.cs | 19 ++ .../Model/Actions/SalesOrderCreateReceipt.cs | 30 ++ .../Model/Actions/SalesOrderCreateShipment.cs | 30 ++ .../Model/Actions/SendEmail.cs | 19 ++ .../Model/Actions/SetResult.cs | 26 ++ .../Model/Actions/StartAppointment.cs | 19 ++ .../Model/Actions/SubmitExpenseClaim.cs | 19 ++ .../Model/Actions/SubmitExpenseReceipt.cs | 19 ++ .../Model/Actions/SuspendProject.cs | 19 ++ .../Actions/UncloseAppointmentMenuActions.cs | 19 ++ .../Model/Actions/UncloseOrder.cs | 19 ++ .../Model/Actions/UnlockProjectBudget.cs | 19 ++ .../Model/Actions/UnlockProjectCommitments.cs | 19 ++ .../Model/Actions/UpdateDiscounts.cs | 25 ++ .../Model/Actions/UpdateIN.cs | 19 ++ .../Actions/UpdateStandardCostNonStockItem.cs | 19 ++ .../Actions/UpdateStandardCostStockItem.cs | 19 ++ .../ValidateBusinessAccountAddresses.cs | 19 ++ .../Model/Actions/ValidateContactAddress.cs | 19 ++ .../Model/Actions/ValidateLeadAddress.cs | 19 ++ .../Model/Actions/ValidateProjectBalance.cs | 19 ++ .../Model/Actions/VoidCardPayment.cs | 50 +++ .../Model/Actions/VoidCheck.cs | 19 ++ .../Model/Actions/VoidPayment.cs | 19 ++ .../Model/Activity.cs | 73 +++++ .../Model/ActivityDetail.cs | 81 +++++ .../Model/Address.cs | 39 +++ .../Model/AppAttributes.cs | 30 ++ .../Model/AppDetails.cs | 192 ++++++++++++ .../Model/AppFinancialSettings.cs | 45 +++ .../Model/AppLogs.cs | 99 ++++++ .../Model/AppOtherInformation.cs | 51 +++ .../Model/AppPrepayments.cs | 54 ++++ .../Model/AppProfitability.cs | 69 ++++ .../Model/AppResourceEquipment.cs | 33 ++ .../Model/AppStaff.cs | 69 ++++ .../Model/AppTaxDetails.cs | 54 ++++ .../Model/AppTotals.cs | 66 ++++ .../Model/ApplicableWage.cs | 33 ++ .../Model/Appointment.cs | 169 ++++++++++ .../Model/Approval.cs | 39 +++ .../Model/Attribute.cs | 24 ++ .../Model/AttributeDefinition.cs | 49 +++ .../Model/AttributeDefinitionValue.cs | 30 ++ .../Model/AttributeValue.cs | 36 +++ .../Model/BCRoleAssignment.cs | 39 +++ .../Model/BatchDeductionOrBenefitDetail.cs | 57 ++++ .../Model/BatchEarningDetail.cs | 99 ++++++ .../Model/BatchOvertimeRules.cs | 24 ++ .../Model/BatchOvertimeRulesDetail.cs | 54 ++++ .../Model/BenefitIncreasingApplWage.cs | 24 ++ .../Model/BenefitIncreasingApplWageDetail.cs | 27 ++ .../Model/BigCommerceStores.cs | 55 ++++ .../Acumatica.ISVCB_23.200.001/Model/Bill.cs | 97 ++++++ .../Model/BillApplicationDetail.cs | 33 ++ .../Model/BillDetail.cs | 87 ++++++ .../Model/BillTaxDetail.cs | 30 ++ .../Model/BillToSettings.cs | 33 ++ .../Model/BoxStockItem.cs | 39 +++ .../Model/Budget.cs | 49 +++ .../Model/BudgetDetail.cs | 96 ++++++ .../Model/BusinessAccount.cs | 142 +++++++++ .../Model/BusinessAccountCaseDetail.cs | 57 ++++ .../BusinessAccountClassAttributeDetail.cs | 36 +++ .../Model/BusinessAccountContact.cs | 48 +++ .../Model/BusinessAccountContract.cs | 39 +++ .../BusinessAccountDefaultLocationSetting.cs | 66 ++++ .../Model/BusinessAccountLocation.cs | 51 +++ .../Model/BusinessAccountMainContact.cs | 45 +++ .../Model/BusinessAccountOpportunityDetail.cs | 54 ++++ .../Model/BusinessAccountOrder.cs | 60 ++++ ...BusinessAccountPaymentInstructionDetail.cs | 33 ++ .../Model/BusinessAccountShippingContact.cs | 39 +++ .../Model/CalendarSettings.cs | 102 ++++++ .../Model/CampaignDetail.cs | 30 ++ .../Model/Carrier.cs | 61 ++++ .../Model/CarrierCustomerAccount.cs | 39 +++ .../Model/CarrierPluginParameter.cs | 27 ++ .../Acumatica.ISVCB_23.200.001/Model/Case.cs | 142 +++++++++ .../Model/CaseDetail.cs | 54 ++++ .../Model/CaseRelatedCase.cs | 39 +++ .../Model/CashSale.cs | 73 +++++ .../Model/CashSaleDetail.cs | 54 ++++ .../Model/CategoryStockItem.cs | 21 ++ .../Model/ChangeOrder.cs | 100 ++++++ .../Model/ChangeOrderClass.cs | 46 +++ .../Model/ChangeOrderCommitment.cs | 87 ++++++ .../Model/ChangeOrderCostBudget.cs | 108 +++++++ .../Model/ChangeOrderRevenueBudget.cs | 63 ++++ .../Acumatica.ISVCB_23.200.001/Model/Check.cs | 70 +++++ .../Model/CheckDetail.cs | 36 +++ .../Model/CheckHistoryDetail.cs | 39 +++ .../Model/Commissions.cs | 24 ++ .../Model/CompaniesStructure.cs | 25 ++ .../Model/CompaniesStructureDetail.cs | 45 +++ .../Model/CompanyFinancialPeriod.cs | 37 +++ .../Model/CompensationDetail.cs | 42 +++ .../Model/Contact.cs | 229 ++++++++++++++ .../Model/ContactDuplicateDetail.cs | 42 +++ .../Model/ContactNotification.cs | 48 +++ .../Model/ContactRoles.cs | 30 ++ .../Model/ContactUserInfo.cs | 36 +++ .../Model/ContractUsage.cs | 34 ++ .../Model/ContractUsageTransactionDetail.cs | 57 ++++ .../Model/CostCode.cs | 31 ++ .../Model/CreditCardProcessingDetail.cs | 24 ++ .../Model/CreditCardTransactionDetail.cs | 45 +++ .../Model/CreditVerificationRules.cs | 39 +++ .../Model/Currency.cs | 46 +++ .../Model/Customer.cs | 214 +++++++++++++ .../Model/CustomerClass.cs | 205 ++++++++++++ .../Model/CustomerContact.cs | 27 ++ .../Model/CustomerLocation.cs | 121 +++++++ .../Model/CustomerPaymentMethod.cs | 58 ++++ .../Model/CustomerPaymentMethodDetail.cs | 24 ++ .../Model/CustomerPriceClass.cs | 37 +++ .../Model/CustomerSalesPerson.cs | 36 +++ .../Model/DeductionBenefitCode.cs | 88 ++++++ .../Model/DeductionBenefitWCCCode.cs | 24 ++ .../Model/DeductionDecreasingApplWage.cs | 24 ++ .../DeductionDecreasingApplWageDetail.cs | 27 ++ .../Model/DeductionOrBenefitCodeGLAccounts.cs | 36 +++ .../Model/DeductionOrBenefitTaxDetailCA.cs | 30 ++ .../Model/DeductionOrBenefitTaxDetailUS.cs | 27 ++ .../Model/DeductionsAndBenefits.cs | 30 ++ .../Model/DefaultTaskForGLAccount.cs | 24 ++ .../Model/DirectDepositDetail.cs | 45 +++ .../Model/Discount.cs | 79 +++++ .../Model/DiscountBreakpointDetail.cs | 72 +++++ .../Model/DiscountCode.cs | 40 +++ .../Model/DiscountCustomerDetail.cs | 24 ++ .../DiscountCustomerPriceClassesDetail.cs | 21 ++ .../Model/DiscountItemDetail.cs | 24 ++ .../Model/DiscountItemPriceClassesDetail.cs | 21 ++ .../Model/DiscountWarehouseDetail.cs | 21 ++ .../Model/DocContact.cs | 30 ++ .../Model/DuplicateDetail.cs | 51 +++ .../Model/EarningCodeGLAccounts.cs | 42 +++ .../Model/EarningCodeProjectSettings.cs | 27 ++ .../Model/EarningCodeTaxDetailCA.cs | 27 ++ .../Model/EarningCodeTaxDetailUS.cs | 24 ++ .../Model/EarningIncreasingApplWage.cs | 24 ++ .../Model/EarningIncreasingApplWageDetail.cs | 30 ++ .../Model/EarningTypeCode.cs | 64 ++++ .../Model/EducatedResources.cs | 76 +++++ .../Model/EducatedResourcesDetail.cs | 150 +++++++++ .../Acumatica.ISVCB_23.200.001/Model/Email.cs | 97 ++++++ .../Model/EmailProcessing.cs | 43 +++ .../Model/EmailProcessingRow.cs | 42 +++ .../Model/Employee.cs | 52 +++ .../Model/EmployeeClassPTOBankDefault.cs | 60 ++++ .../Model/EmployeeClassWorkLocation.cs | 30 ++ .../Model/EmployeeDeduction.cs | 42 +++ .../Model/EmployeeDeductionOrBenefitDetail.cs | 75 +++++ .../Model/EmployeeDelegate.cs | 36 +++ .../Model/EmployeeFinancialSettings.cs | 57 ++++ .../Model/EmployeeGLAccounts.cs | 72 +++++ .../Model/EmployeeGeneralInfo.cs | 84 +++++ .../Model/EmployeePaidTimeOff.cs | 24 ++ .../Model/EmployeePaidTimeOffDetail.cs | 81 +++++ .../Model/EmployeePaycheckEarningDetail.cs | 84 +++++ .../Model/EmployeePaycheckEarnings.cs | 36 +++ .../Model/EmployeePaycheckSummary.cs | 45 +++ .../Model/EmployeePayrollClass.cs | 37 +++ .../Model/EmployeePayrollClassDefaults.cs | 69 ++++ .../Model/EmployeePayrollSettings.cs | 85 +++++ .../Model/EmployeeSettings.cs | 66 ++++ .../Model/EmployeeTaxDetail.cs | 33 ++ .../Model/EmployeeWorkLocationDetail.cs | 30 ++ .../Model/EmployeeWorkLocations.cs | 30 ++ .../Model/EmployerContribution.cs | 51 +++ .../Model/EmployerTaxesIncreasingApplWage.cs | 24 ++ .../EmployerTaxesIncreasingApplWageDetail.cs | 30 ++ .../Model/EmploymentDates.cs | 24 ++ .../Model/EmploymentHistoryRecord.cs | 45 +++ .../Model/EmploymentRecord.cs | 45 +++ .../Acumatica.ISVCB_23.200.001/Model/Event.cs | 91 ++++++ .../Model/EventAttendee.cs | 42 +++ .../Model/EventTimeActivity.cs | 30 ++ .../Model/ExpenseClaim.cs | 88 ++++++ .../Model/ExpenseClaimAPDocument.cs | 33 ++ .../Model/ExpenseClaimDetails.cs | 111 +++++++ .../Model/ExpenseClaimFinancialDetail.cs | 30 ++ .../Model/ExpenseClaimTaxDetail.cs | 51 +++ .../Model/ExpenseReceipt.cs | 55 ++++ .../Model/ExpenseReceiptDetails.cs | 96 ++++++ .../Model/ExpenseReceiptTaxDetails.cs | 51 +++ .../Model/ExternalCommitment.cs | 85 +++++ .../Model/FOBPoint.cs | 28 ++ .../Model/FinancialPeriod.cs | 43 +++ .../Model/FinancialPeriodDetail.cs | 57 ++++ .../Model/FinancialSettings.cs | 60 ++++ .../Model/FinancialYear.cs | 70 +++++ .../Model/FinancialYearPeriodDetail.cs | 30 ++ .../Model/GarnishmentDetails.cs | 39 +++ .../Model/ISVContacts.cs | 55 ++++ .../Model/ISVContactsDetail.cs | 45 +++ .../Model/ISVSolution.cs | 61 ++++ .../Model/InventoryAdjustment.cs | 52 +++ .../Model/InventoryAdjustmentDetail.cs | 72 +++++ .../Model/InventoryAllocationInquiry.cs | 112 +++++++ .../Model/InventoryAllocationRow.cs | 42 +++ .../Model/InventoryFileUrls.cs | 27 ++ .../Model/InventoryIssue.cs | 61 ++++ .../Model/InventoryIssueDetail.cs | 87 ++++++ .../Model/InventoryIssueDetailAllocation.cs | 42 +++ .../Model/InventoryItemCrossReference.cs | 36 +++ .../Model/InventoryItemUOMConversion.cs | 30 ++ .../Model/InventoryQuantityAvailable.cs | 31 ++ .../Model/InventoryQuantityAvailableDetail.cs | 27 ++ .../Model/InventoryReceipt.cs | 61 ++++ .../Model/InventoryReceiptDetail.cs | 75 +++++ .../Model/InventoryReceiptDetailAllocation.cs | 42 +++ .../Model/InventorySummaryInquiry.cs | 40 +++ .../Model/InventorySummaryRow.cs | 54 ++++ .../Model/Invoice.cs | 115 +++++++ .../Model/InvoiceApplicationsCreditMemo.cs | 45 +++ .../Model/InvoiceApplicationsDefault.cs | 39 +++ .../Model/InvoiceDetail.cs | 72 +++++ .../Model/InvoiceDiscountDetail.cs | 60 ++++ .../Model/InvoiceTaxDetail.cs | 30 ++ .../Model/ItemClass.cs | 76 +++++ .../Model/ItemClassAtrribute.cs | 27 ++ .../Model/ItemPriceClassesDetails.cs | 21 ++ .../Model/ItemSalesCategory.cs | 46 +++ .../Model/ItemSalesCategoryMember.cs | 30 ++ .../Model/ItemWarehouse.cs | 124 ++++++++ .../Model/ItemsDetails.cs | 24 ++ .../Model/JournalTransaction.cs | 61 ++++ .../Model/JournalTransactionDetail.cs | 72 +++++ .../Model/KitAssembly.cs | 79 +++++ .../Model/KitAssemblyAllocation.cs | 42 +++ .../Model/KitAssemblyNonStockComponent.cs | 39 +++ .../Model/KitAssemblyStockComponent.cs | 48 +++ .../KitAssemblyStockComponentAllocation.cs | 51 +++ .../Model/KitNonStockComponent.cs | 36 +++ .../Model/KitSpecification.cs | 46 +++ .../Model/KitStockComponent.cs | 39 +++ .../Model/LaborCostRate.cs | 46 +++ .../Model/LaborRate.cs | 66 ++++ .../Acumatica.ISVCB_23.200.001/Model/Lead.cs | 184 +++++++++++ .../Model/Ledger.cs | 46 +++ .../Model/LedgerBranches.cs | 30 ++ .../Model/LedgerCompanies.cs | 30 ++ .../Model/LotSerialClass.cs | 43 +++ .../Model/LotSerialClassSegment.cs | 27 ++ .../Model/MarketingListDetail.cs | 36 +++ .../Model/MatrixItems.cs | 36 +++ .../Model/NonStockItem.cs | 202 ++++++++++++ .../Model/NonStockItemSalesCategory.cs | 21 ++ .../Model/NonStockItemVendorDetail.cs | 27 ++ .../Model/Opportunity.cs | 148 +++++++++ .../Model/OpportunityContact.cs | 66 ++++ .../Model/OpportunityDetail.cs | 48 +++ .../Model/OpportunityDiscount.cs | 54 ++++ .../Model/OpportunityProduct.cs | 75 +++++ .../Model/OpportunityTaxDetail.cs | 48 +++ .../Model/OrderRisks.cs | 27 ++ .../Model/PTOBank.cs | 82 +++++ .../Model/PTOBankGLAccounts.cs | 36 +++ .../Model/PayGroup.cs | 91 ++++++ .../Model/PayPeriod.cs | 43 +++ .../Model/Payment.cs | 121 +++++++ .../Model/PaymentApplicationHistoryDetail.cs | 90 ++++++ .../Model/PaymentCharge.cs | 42 +++ .../Model/PaymentDetail.cs | 45 +++ .../Model/PaymentMethod.cs | 67 ++++ .../PaymentMethodAllowedCashAccountDetail.cs | 66 ++++ .../PaymentMethodProcessingCenterDetail.cs | 30 ++ .../Model/PaymentOrderDetail.cs | 27 ++ .../Model/PaymentPeriod.cs | 42 +++ .../Model/PayrollBatch.cs | 76 +++++ .../Model/PayrollUnionLocal.cs | 46 +++ .../Model/PayrollWCCCode.cs | 28 ++ .../Model/PhysicalInventoryCount.cs | 40 +++ .../Model/PhysicalInventoryCountDetail.cs | 45 +++ .../Model/PhysicalInventoryReview.cs | 55 ++++ .../Model/PhysicalInventoryReviewDetail.cs | 63 ++++ .../Model/ProFormaFinancialDetails.cs | 42 +++ .../Model/ProFormaInvoice.cs | 97 ++++++ .../Model/ProFormaTaxDetail.cs | 36 +++ .../Model/ProgressBilling.cs | 78 +++++ .../Model/Project.cs | 103 ++++++ .../Model/ProjectActivity.cs | 54 ++++ .../Model/ProjectAddress.cs | 39 +++ .../Model/ProjectBalance.cs | 60 ++++ .../ProjectBillingAndAllocationSettings.cs | 57 ++++ .../Model/ProjectBudget.cs | 157 ++++++++++ .../Model/ProjectEmployee.cs | 27 ++ .../Model/ProjectEquipment.cs | 45 +++ .../Model/ProjectGLAccount.cs | 39 +++ .../Model/ProjectProFormaDetails.cs | 78 +++++ .../Model/ProjectProperties.cs | 69 ++++ .../Model/ProjectRetainage.cs | 45 +++ .../Model/ProjectTask.cs | 64 ++++ ...ProjectTaskBillingAndAllocationSettings.cs | 45 +++ .../Model/ProjectTaskDefaultValues.cs | 39 +++ .../Model/ProjectTaskProperties.cs | 39 +++ .../Model/ProjectTaskToCRMLink.cs | 21 ++ .../Model/ProjectTemplate.cs | 55 ++++ .../Model/ProjectTemplateTask.cs | 49 +++ .../Model/ProjectTemplateTaskProperties.cs | 30 ++ .../Model/ProjectTransaction.cs | 58 ++++ .../Model/ProjectTransactionDetail.cs | 120 +++++++ .../Model/ProjectUnionLocal.cs | 24 ++ .../Model/PurchaseOrder.cs | 112 +++++++ .../Model/PurchaseOrderDetail.cs | 123 ++++++++ .../Model/PurchaseOrderTaxDetail.cs | 36 +++ .../Model/PurchaseReceipt.cs | 103 ++++++ .../Model/PurchaseReceiptDetail.cs | 120 +++++++ .../Model/PurchaseReceiptDetailAllocation.cs | 39 +++ .../Model/PurchaseSettings.cs | 27 ++ .../Model/PurchasingDetail.cs | 30 ++ .../Model/RelationDetail.cs | 57 ++++ .../Model/ReminderDetail.cs | 27 ++ .../Model/ReplenishmentParameterStockItem.cs | 66 ++++ .../Model/ReportingGroup.cs | 27 ++ .../Model/RepositoryLines.cs | 63 ++++ .../Model/SalesInvoice.cs | 121 +++++++ .../SalesInvoiceApplicationCreditMemo.cs | 51 +++ .../Model/SalesInvoiceApplicationInvoice.cs | 63 ++++ .../Model/SalesInvoiceCommissions.cs | 27 ++ .../Model/SalesInvoiceDetail.cs | 108 +++++++ .../Model/SalesInvoiceDiscountDetails.cs | 63 ++++ .../Model/SalesInvoiceFinancialDetails.cs | 27 ++ .../Model/SalesInvoiceFreightDetail.cs | 48 +++ .../Model/SalesInvoiceSalesPersonDetail.cs | 30 ++ .../Model/SalesInvoiceTaxDetail.cs | 27 ++ .../Model/SalesOrder.cs | 229 ++++++++++++++ .../SalesOrderCreditCardTransactionDetail.cs | 39 +++ .../Model/SalesOrderDetail.cs | 201 ++++++++++++ .../Model/SalesOrderDetailAllocation.cs | 78 +++++ .../Model/SalesOrderPayment.cs | 96 ++++++ .../Model/SalesOrderShipment.cs | 63 ++++ .../Model/SalesOrdersDiscountDetails.cs | 57 ++++ .../Model/SalesPersonDetail.cs | 30 ++ .../Model/SalesPriceDetail.cs | 72 +++++ .../Model/SalesPriceWorksheet.cs | 52 +++ .../Model/SalesPricesInquiry.cs | 58 ++++ .../Model/SalesPricesWorksheetDetail.cs | 54 ++++ .../Model/Salesperson.cs | 43 +++ .../Model/ServiceOrder.cs | 148 +++++++++ .../Model/SettingsForPR.cs | 27 ++ .../Model/ShipToSettings.cs | 33 ++ .../Model/ShipVia.cs | 58 ++++ .../Model/ShipViaFreightRate.cs | 33 ++ .../Model/Shipment.cs | 163 ++++++++++ .../Model/ShipmentDetail.cs | 75 +++++ .../Model/ShipmentDetailAllocation.cs | 51 +++ .../Model/ShipmentOrderDetail.cs | 54 ++++ .../Model/ShipmentPackage.cs | 69 ++++ .../Model/ShipmentPackageDetail.cs | 42 +++ .../Model/ShippingBox.cs | 61 ++++ .../Model/ShippingInstructions.cs | 45 +++ .../Model/ShippingSettings.cs | 96 ++++++ .../Model/ShippingTerm.cs | 31 ++ .../Model/ShippingTermDetail.cs | 36 +++ .../Model/ShippingZones.cs | 28 ++ .../Model/ShopForRates.cs | 27 ++ .../Model/ShopifyStore.cs | 49 +++ .../Model/SolutionFile.cs | 27 ++ .../Model/SolutionSubmission.cs | 61 ++++ .../Model/SrvOrdAddress.cs | 36 +++ .../Model/SrvOrdAppointments.cs | 42 +++ .../Model/SrvOrdAttributes.cs | 30 ++ .../Model/SrvOrdContact.cs | 33 ++ .../Model/SrvOrdContractInfo.cs | 24 ++ .../Model/SrvOrdDefaultStaff.cs | 45 +++ .../Model/SrvOrdDetails.cs | 192 ++++++++++++ .../Model/SrvOrdFinancialDetails.cs | 45 +++ .../Model/SrvOrdOtherInformation.cs | 36 +++ .../Model/SrvOrdPrepayments.cs | 54 ++++ .../Model/SrvOrdTaxDetails.cs | 54 ++++ .../Model/SrvOrdTotals.cs | 57 ++++ .../Model/StockItem.cs | 295 ++++++++++++++++++ .../Model/StockItemVendorDetail.cs | 75 +++++ .../Model/StockItemWarehouseDetail.cs | 87 ++++++ .../Model/StorageDetail.cs | 39 +++ .../Model/StorageDetailByLocation.cs | 57 ++++ .../Model/StorageDetailsByLocationInquiry.cs | 31 ++ .../Model/StorageDetailsInquiry.cs | 28 ++ .../Model/Subaccount.cs | 37 +++ .../Model/Subcontract.cs | 127 ++++++++ .../Model/SubcontractDetail.cs | 120 +++++++ .../Model/SubcontractTaxDetail.cs | 39 +++ .../Model/SubcontractVendorAddressInfo.cs | 39 +++ .../Model/SubcontractVendorContactInfo.cs | 33 ++ .../Acumatica.ISVCB_23.200.001/Model/Task.cs | 97 ++++++ .../Model/TaskRelatedTask.cs | 36 +++ .../Model/TaskTimeActivity.cs | 39 +++ .../Acumatica.ISVCB_23.200.001/Model/Tax.cs | 97 ++++++ .../Model/TaxAndReportingCA.cs | 30 ++ .../Model/TaxAndReportingUS.cs | 30 ++ .../Model/TaxCategory.cs | 43 +++ .../Model/TaxCategoryTaxDetail.cs | 36 +++ .../Model/TaxCodeSetting.cs | 39 +++ .../Model/TaxDetail.cs | 60 ++++ .../Model/TaxReportingSettings.cs | 28 ++ .../Model/TaxScheduleDetail.cs | 42 +++ .../Model/TaxSettingDetail.cs | 54 ++++ .../Model/TaxSettingsCA.cs | 24 ++ .../Model/TaxSettingsUS.cs | 30 ++ .../Model/TaxZone.cs | 37 +++ .../Model/TaxZoneApplicableTaxDetail.cs | 21 ++ .../Model/TaxZoneDetail.cs | 30 ++ .../Model/TaxesDecreasingApplWage.cs | 24 ++ .../Model/TaxesDecreasingApplWageDetail.cs | 30 ++ .../Model/TechnicalValidationSetup.cs | 37 +++ .../Model/TemplateItemVendorDetail.cs | 27 ++ .../Model/TemplateItems.cs | 121 +++++++ .../Model/TimeActivity.cs | 60 ++++ .../Model/TimeAndMaterial.cs | 90 ++++++ .../Model/TimeEntry.cs | 91 ++++++ .../Model/Totals.cs | 66 ++++ .../Model/TransferOrder.cs | 61 ++++ .../Model/TransferOrderDetail.cs | 81 +++++ .../Model/TransferOrderDetailAllocation.cs | 33 ++ .../Model/UnionDeductionOrBenefitDetail.cs | 54 ++++ .../Model/UnionEarningRateDetail.cs | 33 ++ .../Model/UnionLocal.cs | 31 ++ .../Model/UnitsOfMeasure.cs | 40 +++ .../Model/Vendor.cs | 187 +++++++++++ .../Model/VendorClass.cs | 37 +++ .../Model/VendorPriceDetail.cs | 60 ++++ .../Model/VendorPriceWorksheet.cs | 55 ++++ .../Model/VendorPriceWorksheetDetail.cs | 51 +++ .../Model/VendorPricesInquiry.cs | 40 +++ .../Model/VisibilitySettings.cs | 48 +++ .../Model/WCCCode.cs | 45 +++ .../Model/WCCCodeCostCodeSource.cs | 33 ++ .../Model/WCCCodeLaborItemSource.cs | 27 ++ .../Model/WCCCodeMaxInsurableWage.cs | 36 +++ .../Model/WCCCodeMaxInsurableWageDetail.cs | 27 ++ .../Model/WCCCodeProjectSource.cs | 33 ++ .../Model/WCCCodeRate.cs | 54 ++++ .../Model/WCCCodeRateDetail.cs | 45 +++ .../Model/Warehouse.cs | 127 ++++++++ .../Model/WarehouseLocation.cs | 42 +++ .../Model/WorkCalendar.cs | 37 +++ .../Model/WorkCalendarExceptionDetail.cs | 39 +++ .../Model/WorkClassCompensationCode.cs | 37 +++ .../Model/WorkLocation.cs | 40 +++ Loggers/ConsoleRequestLogger.cs | 1 + 744 files changed, 30535 insertions(+), 72 deletions(-) create mode 100644 Acumatica REST API Console Application/OAuthHybridExample.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs create mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs diff --git a/Acumatica REST API Client.sln b/Acumatica REST API Client.sln index d3b46670e..bfeb2e07e 100644 --- a/Acumatica REST API Client.sln +++ b/Acumatica REST API Client.sln @@ -61,6 +61,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acumatica.Default_25.200.00 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acumatica.MANUFACTURING_25.100.001", "Endpoints\Acumatica.MANUFACTURING_25.100.001\Acumatica.MANUFACTURING_25.100.001.csproj", "{000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acumatica.ISVCB_23.200.001", "Endpoints\Acumatica.ISVCB_23.200.001\Acumatica.ISVCB_23.200.001.csproj", "{DD2F0B30-91FD-F055-6417-FFD155C33955}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -175,6 +177,10 @@ Global {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}.Debug|Any CPU.Build.0 = Debug|Any CPU {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}.Release|Any CPU.ActiveCfg = Release|Any CPU {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}.Release|Any CPU.Build.0 = Release|Any CPU + {DD2F0B30-91FD-F055-6417-FFD155C33955}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DD2F0B30-91FD-F055-6417-FFD155C33955}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DD2F0B30-91FD-F055-6417-FFD155C33955}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DD2F0B30-91FD-F055-6417-FFD155C33955}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -201,6 +207,7 @@ Global {DF48A00D-EBFF-4FB6-8062-9172120A36C3} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} {68FFDFEA-F706-FB59-C767-F8A2ADBC7FCA} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} + {DD2F0B30-91FD-F055-6417-FFD155C33955} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {A3A45447-0EDA-45D2-94CE-C3BFFBFE2717} diff --git a/Acumatica REST API Console Application/OAuthAuthCodeExample.cs b/Acumatica REST API Console Application/OAuthAuthCodeExample.cs index 65e88badd..d8c73b01b 100644 --- a/Acumatica REST API Console Application/OAuthAuthCodeExample.cs +++ b/Acumatica REST API Console Application/OAuthAuthCodeExample.cs @@ -29,7 +29,7 @@ public static void Example(string siteURL, string clientSecret, string clientID, clientID, clientSecret, redirectUrl, - OAuthScope.API //| OAuthScope.OfflineAccess + OAuthScope.API | OAuthScope.OfflineAccess ); OpenUrl(url); var code = ReadCodeFromRedirectURL(redirectUrl); diff --git a/Acumatica REST API Console Application/OAuthHybridExample.cs b/Acumatica REST API Console Application/OAuthHybridExample.cs new file mode 100644 index 000000000..baac54249 --- /dev/null +++ b/Acumatica REST API Console Application/OAuthHybridExample.cs @@ -0,0 +1,196 @@ +using Acumatica.Default_24_200_001.Model; +using Acumatica.RESTClient.AuthApi.Model; +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.Loggers; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Net; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using System.Web; +using static Acumatica.RESTClient.AuthApi.AuthApiExtensions; +using static Acumatica.RESTClient.ContractBasedApi.ApiClientExtensions; +using Task = System.Threading.Tasks.Task; + +namespace AcumaticaRestApiExample +{ + internal class OAuthHybridExample + { + public static void Example(string siteURL, string clientSecret, string clientID, string redirectUrl) + { + var client = new ApiClient(siteURL, + requestInterceptor: FileRequestLogger.LogRequest + // ,responseInterceptor: RequestLogger.LogResponse + , ignoreSslErrors: true // this is here to allow testing with self-signed certificates + ); + bool usePost = true; + var url = client.Authorize( + clientID, + clientSecret, + redirectUrl, + OAuthScope.API | OAuthScope.OfflineAccess | OAuthScope.OpenID, + ResponseType.IdToken,// | ResponseType.Token, + usePost, + Guid.NewGuid().ToString() + ); + OpenUrl(url); + //Listen(redirectUrl, 10, new CancellationToken()).ConfigureAwait(false).GetAwaiter().GetResult(); + + var code = ReadCodeFromRedirectURL(redirectUrl, usePost); + + client.ReceiveAccessTokenAuthCode( + clientID, + clientSecret, + redirectUrl, + code); + + foreach (var account in client.GetList(top: 5)) + { + Console.WriteLine(account.Description.Value); + } + client.TryLogout(); + + foreach (var soorder in client.GetList(top: 5)) + { + Console.WriteLine(soorder.Description.Value); + } + client.TryLogout(); + + } + + private static string ReadCodeFromRedirectURL(string url, bool usePost) + { + HttpListener listener = new HttpListener(); + listener.Prefixes.Add(url); + try + { + listener.Start(); + string purecode = string.Empty; + + HttpListenerContext context = listener.GetContext(); + HttpListenerRequest request = context.Request; + if(usePost){ + using (System.IO.Stream body = context.Request.InputStream) // here we have data + { + using (var reader = new System.IO.StreamReader(body, context.Request.ContentEncoding)) + { + var values = HttpUtility.ParseQueryString(reader.ReadToEnd()); + Console.WriteLine(); + Token token = new Token(); + + token.Access_token = values.Get("access_token"); + token.Expires_in = values.Get("expires_in"); + token.Token_type = values.Get("token_type"); + token.Scope = values.Get("scope"); + purecode = values.Get("code") ?? string.Empty; + } + } + } + else + { + var rawUrl = request.RawUrl; + const string codeParametrIdentifier = "?code="; + var codewithgarbage = rawUrl.Substring(rawUrl.IndexOf(codeParametrIdentifier) + codeParametrIdentifier.Length); + purecode = codewithgarbage.Substring(0, codewithgarbage.IndexOf("&")); + } + return purecode; + } + finally + { + listener.Stop(); + } + } + + //public static async Task Listen(string prefix, int maxConcurrentRequests, CancellationToken token) + //{ + // HttpListener listener = new HttpListener(); + // prefix = prefix.Substring(0, prefix.LastIndexOf("/") + 1); + // listener.Prefixes.Add(prefix); + // listener.Start(); + + // var requests = new HashSet(); + // for (int i = 0; i < maxConcurrentRequests; i++) + // requests.Add(listener.GetContextAsync()); + + // while (!token.IsCancellationRequested) + // { + // Task t = await Task.WhenAny(requests); + // requests.Remove(t); + + // if (t is Task) + // { + // var context = (t as Task).Result; + // requests.Add(ProcessRequestAsync(context)); + // //Console.WriteLine(context.Request.RawUrl); + // //context.Response.KeepAlive = false; + // requests.Add(listener.GetContextAsync()); + // context.Response.Close(); + // } + // } + //} + + //public static async Task ProcessRequestAsync(HttpListenerContext context) + //{ + // // context.Response.KeepAlive = false; + // context.Response.KeepAlive = false; + // Console.WriteLine(context.Request.RawUrl); + // Console.WriteLine(context.Request.QueryString); + // if (context.Request.HasEntityBody) + // { + + // using (System.IO.Stream body = context.Request.InputStream) // here we have data + // { + // using (var reader = new System.IO.StreamReader(body, context.Request.ContentEncoding)) + // { + // Console.WriteLine(reader.ReadToEnd()); + // } + // } + // } + // //Send response to the browser. + // HttpListenerResponse response = context.Response; + // string responseString = string.Format($"Authrization Success: {DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")}"); + // byte[] buffer = Encoding.UTF8.GetBytes(responseString); + // response.ContentLength64 = buffer.Length; + + // using (Stream responseOutput = response.OutputStream) + // { + // await responseOutput.WriteAsync(buffer, 0, buffer.Length); + // responseOutput.Close(); + // } + // context.Response.Close(); + //} + + private static void OpenUrl(string url) + { + try + { + Process.Start(url); + } + catch + { + // hack because of this: https://github.com/dotnet/corefx/issues/10361 + if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) + { + Process.Start(new ProcessStartInfo(url) { UseShellExecute = true }); + } + else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) + { + Process.Start("xdg-open", url); + } + else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) + { + Process.Start("open", url); + } + else + { + throw; + } + } + } + } +} diff --git a/Acumatica REST API Console Application/Program.cs b/Acumatica REST API Console Application/Program.cs index 419ac3ef2..5feda618d 100644 --- a/Acumatica REST API Console Application/Program.cs +++ b/Acumatica REST API Console Application/Program.cs @@ -6,10 +6,10 @@ namespace AcumaticaRestApiExample { class Program { - const string SiteURL = "https://localhost/25r200/"; + const string SiteURL = "https://localhost/26R1/"; const string Username = "admin"; const string Password = "123"; - const string Tenant = null;//"Company"; + const string Tenant = "Company"; const string Branch = null; const string Locale = null; # region Resource Owner Password Credentials flow @@ -17,62 +17,68 @@ class Program private const string ClientIDROPC = "7475716F-D402-EAB6-F8F8-893C9B1EEDF4@Company"; #endregion # region AuthorizationCode flow - private const string ClientSecretAC = "ZJ7sGGDZWOJyJzSpbRjrpg"; - private const string ClientIDAC = "9737F884-8405-42FB-7303-7F1DA7BE8CA7@Company"; + private const string ClientSecretAC = "KzK82VVdqggy4PHaOHMTNw"; + private const string ClientIDAC = "2DC9435C-A596-959E-3E38-8EB84725F089@Company"; #endregion const string RedirectUrl = "https://localhost/test/"; static async Task Main(string[] args) { - Console.WriteLine("Report example"); - Console.WriteLine("----------------------------------------"); - RESTExample.TestReportDownload(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("Report example"); + //Console.WriteLine("----------------------------------------"); + //RESTExample.TestReportDownload(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("REST API example"); - Console.WriteLine("----------------------------------------"); - RESTExample.TestFullSOProcess(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("----------------------------------------"); - RESTExample.TestFileUpload(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("----------------------------------------"); - RESTExample.TestShipmentRetrieval(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("----------------------------------------"); - RESTExample.CreateAndReleaseAPBill(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("----------------------------------------"); - RESTExample.ReadStockItemsWithTranslations(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("----------------------------------------"); - RESTExample.TryToCreateARInvoiceAndFail(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("\r\nReady to continue..."); - Console.ReadLine(); + //Console.WriteLine("REST API example"); + //Console.WriteLine("----------------------------------------"); + //RESTExample.TestFullSOProcess(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("----------------------------------------"); + //RESTExample.TestFileUpload(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("----------------------------------------"); + //RESTExample.TestShipmentRetrieval(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("----------------------------------------"); + //RESTExample.CreateAndReleaseAPBill(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("----------------------------------------"); + //RESTExample.ReadStockItemsWithTranslations(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("----------------------------------------"); + //RESTExample.TryToCreateARInvoiceAndFail(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("\r\nReady to continue..."); + //Console.ReadLine(); - Console.WriteLine("REST API (Extended Endpoint) example"); - Console.WriteLine("----------------------------------------"); - ExtendedEndpointExample.ExampleMethod(SiteURL, Username, Password, Tenant, Branch, Locale); - Console.WriteLine("\r\nReady to continue..."); - Console.ReadLine(); + //Console.WriteLine("REST API (Extended Endpoint) example"); + //Console.WriteLine("----------------------------------------"); + //ExtendedEndpointExample.ExampleMethod(SiteURL, Username, Password, Tenant, Branch, Locale); + //Console.WriteLine("\r\nReady to continue..."); + //Console.ReadLine(); - Console.WriteLine("OData GI example"); - Console.WriteLine("----------------------------------------"); - ODataExample.ODataGetGI(SiteURL, Username, Password, Tenant); - ODataExample.ODataGetGINewUrl(SiteURL, Username, Password, Tenant); - Console.WriteLine("Ready to continue..."); - Console.ReadLine(); + //Console.WriteLine("OData GI example"); + //Console.WriteLine("----------------------------------------"); + //ODataExample.ODataGetGI(SiteURL, Username, Password, Tenant); + //ODataExample.ODataGetGINewUrl(SiteURL, Username, Password, Tenant); + //Console.WriteLine("Ready to continue..."); + //Console.ReadLine(); - Console.WriteLine("OData DAC example"); - Console.WriteLine("----------------------------------------"); - ODataExample.ODataGetDAC(SiteURL, Username, Password, Tenant); - ODataExample.ODataGetDACNewUrl(SiteURL, Username, Password, Tenant); - Console.WriteLine("Ready to continue..."); - Console.ReadLine(); + //Console.WriteLine("OData DAC example"); + //Console.WriteLine("----------------------------------------"); + //ODataExample.ODataGetDAC(SiteURL, Username, Password, Tenant); + //ODataExample.ODataGetDACNewUrl(SiteURL, Username, Password, Tenant); + //Console.WriteLine("Ready to continue..."); + //Console.ReadLine(); - Console.WriteLine("OData OAuth 2.0 (Resource Owner Password Credentials flow) example"); - Console.WriteLine("----------------------------------------"); - ODataExample.OauthExample(SiteURL, Username, Password, ClientSecretROPC, ClientIDROPC, Tenant); - Console.WriteLine("Ready to continue..."); - Console.ReadLine(); + //Console.WriteLine("OData OAuth 2.0 (Resource Owner Password Credentials flow) example"); + //Console.WriteLine("----------------------------------------"); + //ODataExample.OauthExample(SiteURL, Username, Password, ClientSecretROPC, ClientIDROPC, Tenant); + //Console.WriteLine("Ready to continue..."); + //Console.ReadLine(); + + //Console.WriteLine("OAuth 2.0 (Authorization Code flow)"); + //Console.WriteLine("----------------------------------------"); + //OAuthAuthCodeExample.Example(SiteURL, ClientSecretAC, ClientIDAC, RedirectUrl); + //Console.WriteLine("Ready to continue..."); + //Console.ReadLine(); - Console.WriteLine("OAuth 2.0 (Authorization Code flow)"); + Console.WriteLine("OAuth 2.0 (Hybrid flow)"); Console.WriteLine("----------------------------------------"); - OAuthAuthCodeExample.Example(SiteURL, ClientSecretAC, ClientIDAC, RedirectUrl); + OAuthHybridExample.Example(SiteURL, ClientSecretAC, ClientIDAC, RedirectUrl); Console.WriteLine("Ready to continue..."); Console.ReadLine(); //await TestPerformanceAsync(); diff --git a/Acumatica.RESTClient/AuthApi/AuthApi.cs b/Acumatica.RESTClient/AuthApi/AuthApi.cs index 31a49565e..053f1d4b4 100644 --- a/Acumatica.RESTClient/AuthApi/AuthApi.cs +++ b/Acumatica.RESTClient/AuthApi/AuthApi.cs @@ -20,9 +20,9 @@ namespace Acumatica.RESTClient.AuthApi /// public static class AuthApiExtensions { - #region Public Methods - #region OAuth - public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) + #region Public Methods + #region OAuth + public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) { RefreshAccessTokenAsync(client, clientID, clientSecret).GetAwaiter().GetResult(); } @@ -78,12 +78,12 @@ public static void ReceiveAccessToken(this ApiClient client, string clientID, st /// /// public async static Task ReceiveAccessTokenAsync( - this ApiClient client, - string clientID, - string clientSecret, - string username, - string password, - OAuthScope scope, + this ApiClient client, + string clientID, + string clientSecret, + string username, + string password, + OAuthScope scope, CancellationToken cancellationToken = default) { var time = DateTime.UtcNow; @@ -190,13 +190,14 @@ public static void ReceiveAccessTokenAuthCode(this ApiClient client, string clie /// /// public static async Task ReceiveAccessTokenAuthCodeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - string code, + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + string code, CancellationToken cancellationToken = default) { + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "/identity/connect/token", @@ -251,7 +252,7 @@ public static void Login(this ApiClient client, string username, string password /// Defines the locale to use for localizable data. /// [Obsolete("Use OAuth 2.0 methods instead.")] - public async static Task LoginAsync(this ApiClient client, + public async static Task LoginAsync(this ApiClient client, string username, string password, string? tenant = null, string? branch = null, string? locale = null, CancellationToken cancellationToken = default) { @@ -273,8 +274,8 @@ await LoginAsync( [Obsolete("Use OAuth 2.0 methods instead.")] public static void Login(this ApiClient client, Credentials credentials) { - LoginAsync(client, credentials).GetAwaiter().GetResult(); - } + LoginAsync(client, credentials).GetAwaiter().GetResult(); + } /// /// Logs in to the system. @@ -287,8 +288,8 @@ public static void Login(this ApiClient client, Credentials credentials) /// [Obsolete("Use OAuth 2.0 methods instead.")] public async static Task LoginAsync( - this ApiClient client, - Credentials credentials, + this ApiClient client, + Credentials credentials, CancellationToken cancellationToken = default) { if (credentials == null) @@ -327,8 +328,8 @@ public static bool TryLogout(this ApiClient client) { try { - Logout(client); - return true; + Logout(client); + return true; } catch { @@ -336,7 +337,7 @@ public static bool TryLogout(this ApiClient client) } } - + /// /// Logs out from the system. /// @@ -356,7 +357,7 @@ public static async Task LogoutAsync(this ApiClient client, CancellationToken ca cancellationToken: cancellationToken ).ConfigureAwait(false); - await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); + await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); } #endregion @@ -404,4 +405,4 @@ private static string PrepareScopeParameter(OAuthScope scope) #endregion } -} +} \ No newline at end of file diff --git a/Acumatica.RESTClient/Client/ApiClient.cs b/Acumatica.RESTClient/Client/ApiClient.cs index 8d2c1d237..9aefc318f 100644 --- a/Acumatica.RESTClient/Client/ApiClient.cs +++ b/Acumatica.RESTClient/Client/ApiClient.cs @@ -246,7 +246,33 @@ public async Task CallApiAsync( stopwatch.Stop(); } } - + + public async Task CallApiAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + RequestInterceptor?.Invoke(request); + + Stopwatch stopwatch = Stopwatch.StartNew(); + try + { + HttpResponseMessage response = await HttpClient.SendAsync(request, cancellationToken).ConfigureAwait(false); + ResponseInterceptor?.Invoke(response); + + return response; + } + catch (TaskCanceledException e) when (!cancellationToken.IsCancellationRequested) + { + if (e.InnerException == null && stopwatch.ElapsedMilliseconds > HttpClient.Timeout.TotalMilliseconds) // in .Net framework the InnerException is null in case of timeout, while in .Net Core it presents + { + throw new TaskCanceledException($"Task cancelled due to configured Timeout: {HttpClient.Timeout}", e); + } + else throw; + } + finally + { + stopwatch.Stop(); + } + } + public bool HasToken() { return Token?.IsValid == true; diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj b/Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj new file mode 100644 index 000000000..5c09a68fd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + netstandard2.0 + 8.0 + Enable + + + + + + + + + + + diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs new file mode 100644 index 000000000..17a55211c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class AccountApi : BaseEndpointApi + { + public AccountApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs new file mode 100644 index 000000000..7f9186e51 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class AccountDetailsForPeriodInquiryApi : BaseEndpointApi + { + public AccountDetailsForPeriodInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs new file mode 100644 index 000000000..cbfbba05b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class AccountGroupApi : BaseEndpointApi + { + public AccountGroupApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs new file mode 100644 index 000000000..04aa90776 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class AccountSummaryInquiryApi : BaseEndpointApi + { + public AccountSummaryInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs new file mode 100644 index 000000000..68786a37d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ActivityApi : BaseEndpointApi + { + public ActivityApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs new file mode 100644 index 000000000..b1953b77c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class AppointmentApi : BaseEndpointApi + { + public AppointmentApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs new file mode 100644 index 000000000..e38b4209a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class AttributeDefinitionApi : BaseEndpointApi + { + public AttributeDefinitionApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs new file mode 100644 index 000000000..69455b4ea --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public abstract class BaseEndpointApi : EntityAPI + where EntityType : Entity, ITopLevelEntity, new() + { + public BaseEndpointApi(ApiClient client) : base(client) + { } + public override string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs new file mode 100644 index 000000000..4d731c796 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class BigCommerceStoresApi : BaseEndpointApi + { + public BigCommerceStoresApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs new file mode 100644 index 000000000..39c9f880e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class BillApi : BaseEndpointApi + { + public BillApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs new file mode 100644 index 000000000..a54d60ced --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class BudgetApi : BaseEndpointApi + { + public BudgetApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs new file mode 100644 index 000000000..a7c4bb310 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class BusinessAccountApi : BaseEndpointApi + { + public BusinessAccountApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs new file mode 100644 index 000000000..6b8f6dfc7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CarrierApi : BaseEndpointApi + { + public CarrierApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs new file mode 100644 index 000000000..546d11212 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CaseApi : BaseEndpointApi + { + public CaseApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs new file mode 100644 index 000000000..95e97823c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CashSaleApi : BaseEndpointApi + { + public CashSaleApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs new file mode 100644 index 000000000..f5cf052a2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ChangeOrderApi : BaseEndpointApi + { + public ChangeOrderApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs new file mode 100644 index 000000000..2feebaccc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ChangeOrderClassApi : BaseEndpointApi + { + public ChangeOrderClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs new file mode 100644 index 000000000..9e838cc96 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CheckApi : BaseEndpointApi + { + public CheckApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs new file mode 100644 index 000000000..a52a6802e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CompaniesStructureApi : BaseEndpointApi + { + public CompaniesStructureApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs new file mode 100644 index 000000000..8b60d8e67 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CompanyFinancialPeriodApi : BaseEndpointApi + { + public CompanyFinancialPeriodApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs new file mode 100644 index 000000000..60f6dab77 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ContactApi : BaseEndpointApi + { + public ContactApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs new file mode 100644 index 000000000..6770ede06 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ContractUsageApi : BaseEndpointApi + { + public ContractUsageApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs new file mode 100644 index 000000000..93dbce703 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CostCodeApi : BaseEndpointApi + { + public CostCodeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs new file mode 100644 index 000000000..a48640425 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CurrencyApi : BaseEndpointApi + { + public CurrencyApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs new file mode 100644 index 000000000..8cece977d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CustomerApi : BaseEndpointApi + { + public CustomerApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs new file mode 100644 index 000000000..ca5cef85f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CustomerClassApi : BaseEndpointApi + { + public CustomerClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs new file mode 100644 index 000000000..be345c252 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CustomerLocationApi : BaseEndpointApi + { + public CustomerLocationApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs new file mode 100644 index 000000000..6664b0625 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CustomerPaymentMethodApi : BaseEndpointApi + { + public CustomerPaymentMethodApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs new file mode 100644 index 000000000..8deb8dbd1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class CustomerPriceClassApi : BaseEndpointApi + { + public CustomerPriceClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs new file mode 100644 index 000000000..73b26780f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class DeductionBenefitCodeApi : BaseEndpointApi + { + public DeductionBenefitCodeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs new file mode 100644 index 000000000..5f76872d9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class DiscountApi : BaseEndpointApi + { + public DiscountApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs new file mode 100644 index 000000000..670e7d6a3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class DiscountCodeApi : BaseEndpointApi + { + public DiscountCodeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs new file mode 100644 index 000000000..afabe7946 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EarningTypeCodeApi : BaseEndpointApi + { + public EarningTypeCodeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs new file mode 100644 index 000000000..614445902 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EducatedResourcesApi : BaseEndpointApi + { + public EducatedResourcesApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs new file mode 100644 index 000000000..df350abb3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EmailApi : BaseEndpointApi + { + public EmailApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs new file mode 100644 index 000000000..f7d3e802f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EmailProcessingApi : BaseEndpointApi + { + public EmailProcessingApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs new file mode 100644 index 000000000..30c596b20 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EmployeeApi : BaseEndpointApi + { + public EmployeeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs new file mode 100644 index 000000000..7836b555a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EmployeePayrollClassApi : BaseEndpointApi + { + public EmployeePayrollClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs new file mode 100644 index 000000000..61cd0c277 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EmployeePayrollSettingsApi : BaseEndpointApi + { + public EmployeePayrollSettingsApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs new file mode 100644 index 000000000..88eac7583 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class EventApi : BaseEndpointApi + { + public EventApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs new file mode 100644 index 000000000..6f6ba7514 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ExpenseClaimApi : BaseEndpointApi + { + public ExpenseClaimApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs new file mode 100644 index 000000000..7293cc98b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ExpenseReceiptApi : BaseEndpointApi + { + public ExpenseReceiptApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs new file mode 100644 index 000000000..18ba888c9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ExternalCommitmentApi : BaseEndpointApi + { + public ExternalCommitmentApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs new file mode 100644 index 000000000..8e5e4cecc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class FOBPointApi : BaseEndpointApi + { + public FOBPointApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs new file mode 100644 index 000000000..4e4438b86 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class FinancialPeriodApi : BaseEndpointApi + { + public FinancialPeriodApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs new file mode 100644 index 000000000..bd2739b80 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class FinancialYearApi : BaseEndpointApi + { + public FinancialYearApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs new file mode 100644 index 000000000..90d12d9ed --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ISVContactsApi : BaseEndpointApi + { + public ISVContactsApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs new file mode 100644 index 000000000..bffe8039b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ISVSolutionApi : BaseEndpointApi + { + public ISVSolutionApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs new file mode 100644 index 000000000..e8e2f45ec --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InventoryAdjustmentApi : BaseEndpointApi + { + public InventoryAdjustmentApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs new file mode 100644 index 000000000..0f2baff93 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InventoryAllocationInquiryApi : BaseEndpointApi + { + public InventoryAllocationInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs new file mode 100644 index 000000000..d299fd273 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InventoryIssueApi : BaseEndpointApi + { + public InventoryIssueApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs new file mode 100644 index 000000000..9d2c1b376 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InventoryQuantityAvailableApi : BaseEndpointApi + { + public InventoryQuantityAvailableApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs new file mode 100644 index 000000000..72d1d2654 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InventoryReceiptApi : BaseEndpointApi + { + public InventoryReceiptApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs new file mode 100644 index 000000000..be1173b29 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InventorySummaryInquiryApi : BaseEndpointApi + { + public InventorySummaryInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs new file mode 100644 index 000000000..1ab4d9b04 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class InvoiceApi : BaseEndpointApi + { + public InvoiceApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs new file mode 100644 index 000000000..80c377879 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ItemClassApi : BaseEndpointApi + { + public ItemClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs new file mode 100644 index 000000000..9f2d54d24 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ItemSalesCategoryApi : BaseEndpointApi + { + public ItemSalesCategoryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs new file mode 100644 index 000000000..cbad13fdc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ItemWarehouseApi : BaseEndpointApi + { + public ItemWarehouseApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs new file mode 100644 index 000000000..b9d632d29 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class JournalTransactionApi : BaseEndpointApi + { + public JournalTransactionApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs new file mode 100644 index 000000000..5e9fcdfc6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class KitAssemblyApi : BaseEndpointApi + { + public KitAssemblyApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs new file mode 100644 index 000000000..846b410b3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class KitSpecificationApi : BaseEndpointApi + { + public KitSpecificationApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs new file mode 100644 index 000000000..44eb0ecb0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class LaborCostRateApi : BaseEndpointApi + { + public LaborCostRateApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs new file mode 100644 index 000000000..17f13c97b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class LeadApi : BaseEndpointApi + { + public LeadApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs new file mode 100644 index 000000000..fbd44e617 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class LedgerApi : BaseEndpointApi + { + public LedgerApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs new file mode 100644 index 000000000..f9f44f224 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class LotSerialClassApi : BaseEndpointApi + { + public LotSerialClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs new file mode 100644 index 000000000..e0a27aa81 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class NonStockItemApi : BaseEndpointApi + { + public NonStockItemApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs new file mode 100644 index 000000000..c28dc4464 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class OpportunityApi : BaseEndpointApi + { + public OpportunityApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs new file mode 100644 index 000000000..4b5e34ddd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PTOBankApi : BaseEndpointApi + { + public PTOBankApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs new file mode 100644 index 000000000..b1642e6a6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PayGroupApi : BaseEndpointApi + { + public PayGroupApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs new file mode 100644 index 000000000..2dfdb58f5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PayPeriodApi : BaseEndpointApi + { + public PayPeriodApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs new file mode 100644 index 000000000..f4d6527dd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PaymentApi : BaseEndpointApi + { + public PaymentApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs new file mode 100644 index 000000000..a40abd2ce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PaymentMethodApi : BaseEndpointApi + { + public PaymentMethodApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs new file mode 100644 index 000000000..0f2a2f298 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PayrollBatchApi : BaseEndpointApi + { + public PayrollBatchApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs new file mode 100644 index 000000000..5d9c625f4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PayrollUnionLocalApi : BaseEndpointApi + { + public PayrollUnionLocalApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs new file mode 100644 index 000000000..117873538 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PayrollWCCCodeApi : BaseEndpointApi + { + public PayrollWCCCodeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs new file mode 100644 index 000000000..9c1f2686d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PhysicalInventoryCountApi : BaseEndpointApi + { + public PhysicalInventoryCountApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs new file mode 100644 index 000000000..dd5b80f49 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PhysicalInventoryReviewApi : BaseEndpointApi + { + public PhysicalInventoryReviewApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs new file mode 100644 index 000000000..924644939 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProFormaInvoiceApi : BaseEndpointApi + { + public ProFormaInvoiceApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs new file mode 100644 index 000000000..c35ce49e2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProjectApi : BaseEndpointApi + { + public ProjectApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs new file mode 100644 index 000000000..9ececb43d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProjectBudgetApi : BaseEndpointApi + { + public ProjectBudgetApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs new file mode 100644 index 000000000..84978cefd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProjectTaskApi : BaseEndpointApi + { + public ProjectTaskApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs new file mode 100644 index 000000000..6118aba36 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProjectTemplateApi : BaseEndpointApi + { + public ProjectTemplateApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs new file mode 100644 index 000000000..85bc31911 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProjectTemplateTaskApi : BaseEndpointApi + { + public ProjectTemplateTaskApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs new file mode 100644 index 000000000..8eaff9eeb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ProjectTransactionApi : BaseEndpointApi + { + public ProjectTransactionApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs new file mode 100644 index 000000000..ebdf1a48d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PurchaseOrderApi : BaseEndpointApi + { + public PurchaseOrderApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs new file mode 100644 index 000000000..ed3361807 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class PurchaseReceiptApi : BaseEndpointApi + { + public PurchaseReceiptApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs new file mode 100644 index 000000000..667ac8006 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SalesInvoiceApi : BaseEndpointApi + { + public SalesInvoiceApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs new file mode 100644 index 000000000..bf1dc1be6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SalesOrderApi : BaseEndpointApi + { + public SalesOrderApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs new file mode 100644 index 000000000..ebf2becbb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SalesPriceWorksheetApi : BaseEndpointApi + { + public SalesPriceWorksheetApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs new file mode 100644 index 000000000..ee0e3b8cb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SalesPricesInquiryApi : BaseEndpointApi + { + public SalesPricesInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs new file mode 100644 index 000000000..fc12a5d9f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SalespersonApi : BaseEndpointApi + { + public SalespersonApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs new file mode 100644 index 000000000..9ee66a635 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ServiceOrderApi : BaseEndpointApi + { + public ServiceOrderApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs new file mode 100644 index 000000000..40aac789a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ShipViaApi : BaseEndpointApi + { + public ShipViaApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs new file mode 100644 index 000000000..94591a951 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ShipmentApi : BaseEndpointApi + { + public ShipmentApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs new file mode 100644 index 000000000..97b894fe0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ShippingBoxApi : BaseEndpointApi + { + public ShippingBoxApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs new file mode 100644 index 000000000..a5f86fb99 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ShippingTermApi : BaseEndpointApi + { + public ShippingTermApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs new file mode 100644 index 000000000..e39d09dc7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ShippingZonesApi : BaseEndpointApi + { + public ShippingZonesApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs new file mode 100644 index 000000000..b106c383c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class ShopifyStoreApi : BaseEndpointApi + { + public ShopifyStoreApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs new file mode 100644 index 000000000..8baeecc04 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class StockItemApi : BaseEndpointApi + { + public StockItemApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs new file mode 100644 index 000000000..2f1ce55c8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class StorageDetailsByLocationInquiryApi : BaseEndpointApi + { + public StorageDetailsByLocationInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs new file mode 100644 index 000000000..bf1df75b6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class StorageDetailsInquiryApi : BaseEndpointApi + { + public StorageDetailsInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs new file mode 100644 index 000000000..6e916594d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SubaccountApi : BaseEndpointApi + { + public SubaccountApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs new file mode 100644 index 000000000..a61c7d586 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class SubcontractApi : BaseEndpointApi + { + public SubcontractApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs new file mode 100644 index 000000000..862a8e526 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TaskApi : BaseEndpointApi + { + public TaskApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs new file mode 100644 index 000000000..f47b8a429 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TaxApi : BaseEndpointApi + { + public TaxApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs new file mode 100644 index 000000000..f1bf5d33f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TaxCategoryApi : BaseEndpointApi + { + public TaxCategoryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs new file mode 100644 index 000000000..c86155021 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TaxReportingSettingsApi : BaseEndpointApi + { + public TaxReportingSettingsApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs new file mode 100644 index 000000000..2f9f46a85 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TaxZoneApi : BaseEndpointApi + { + public TaxZoneApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs new file mode 100644 index 000000000..cf9b1419e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TemplateItemsApi : BaseEndpointApi + { + public TemplateItemsApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs new file mode 100644 index 000000000..43d8f48e7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TimeEntryApi : BaseEndpointApi + { + public TimeEntryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs new file mode 100644 index 000000000..961cff41c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class TransferOrderApi : BaseEndpointApi + { + public TransferOrderApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs new file mode 100644 index 000000000..feddddd35 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class UnionLocalApi : BaseEndpointApi + { + public UnionLocalApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs new file mode 100644 index 000000000..0492c7ab6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class UnitsOfMeasureApi : BaseEndpointApi + { + public UnitsOfMeasureApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs new file mode 100644 index 000000000..16356f250 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class VendorApi : BaseEndpointApi + { + public VendorApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs new file mode 100644 index 000000000..e36c56214 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class VendorClassApi : BaseEndpointApi + { + public VendorClassApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs new file mode 100644 index 000000000..fe338a728 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class VendorPriceWorksheetApi : BaseEndpointApi + { + public VendorPriceWorksheetApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs new file mode 100644 index 000000000..de970173c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class VendorPricesInquiryApi : BaseEndpointApi + { + public VendorPricesInquiryApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs new file mode 100644 index 000000000..66b95ad25 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class WarehouseApi : BaseEndpointApi + { + public WarehouseApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs new file mode 100644 index 000000000..96084361c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class WorkCalendarApi : BaseEndpointApi + { + public WorkCalendarApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs new file mode 100644 index 000000000..4f4b33fdd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class WorkClassCompensationCodeApi : BaseEndpointApi + { + public WorkClassCompensationCodeApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs new file mode 100644 index 000000000..8927a7a0d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs @@ -0,0 +1,13 @@ +using System; +using Acumatica.RESTClient.Client; +using Acumatica.ISVCB_23_200_001.Model; + +namespace Acumatica.ISVCB_23_200_001.Api +{ + [Obsolete("For backward compatibility")] + public class WorkLocationApi : BaseEndpointApi + { + public WorkLocationApi(ApiClient client) : base(client) + { } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs new file mode 100644 index 000000000..24be2913b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ACAInfoDetail : Entity + { + + [DataMember(Name="CoverageType", EmitDefaultValue=false)] + public StringValue? CoverageType { get; set; } + + [DataMember(Name="HealthPlanType", EmitDefaultValue=false)] + public StringValue? HealthPlanType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs new file mode 100644 index 000000000..408ef9eff --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ACAInformation : Entity + { + + [DataMember(Name="ACAInfoDetails", EmitDefaultValue=false)] + public List? ACAInfoDetails { get; set; } + + [DataMember(Name="MinIndividualContribution", EmitDefaultValue=false)] + public DecimalValue? MinIndividualContribution { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs new file mode 100644 index 000000000..62ba97dd6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs @@ -0,0 +1,79 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Account : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountCD", EmitDefaultValue=false)] + public StringValue? AccountCD { get; set; } + + [DataMember(Name="AccountClass", EmitDefaultValue=false)] + public StringValue? AccountClass { get; set; } + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="AccountID", EmitDefaultValue=false)] + public IntValue? AccountID { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public BooleanValue? CashAccount { get; set; } + + [DataMember(Name="ChartOfAccountsOrder", EmitDefaultValue=false)] + public IntValue? ChartOfAccountsOrder { get; set; } + + [DataMember(Name="ConsolidationAccount", EmitDefaultValue=false)] + public StringValue? ConsolidationAccount { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PostOption", EmitDefaultValue=false)] + public StringValue? PostOption { get; set; } + + [DataMember(Name="RequireUnits", EmitDefaultValue=false)] + public BooleanValue? RequireUnits { get; set; } + + [DataMember(Name="RevaluationRateType", EmitDefaultValue=false)] + public StringValue? RevaluationRateType { get; set; } + + [DataMember(Name="Secured", EmitDefaultValue=false)] + public BooleanValue? Secured { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UseDefaultSubaccount", EmitDefaultValue=false)] + public BooleanValue? UseDefaultSubaccount { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs new file mode 100644 index 000000000..9f4b3ecde --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AccountDetailsForPeriodInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="FromPeriod", EmitDefaultValue=false)] + public StringValue? FromPeriod { get; set; } + + [DataMember(Name="Ledger", EmitDefaultValue=false)] + public StringValue? Ledger { get; set; } + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + [DataMember(Name="ToPeriod", EmitDefaultValue=false)] + public StringValue? ToPeriod { get; set; } + + [DataMember(Name="IncludeUnposted", EmitDefaultValue=false)] + public BooleanValue? IncludeUnposted { get; set; } + + [DataMember(Name="IncludeUnreleased", EmitDefaultValue=false)] + public BooleanValue? IncludeUnreleased { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs new file mode 100644 index 000000000..9e7b5774c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs @@ -0,0 +1,84 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AccountDetailsForPeriodInquiryDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="BatchNumber", EmitDefaultValue=false)] + public StringValue? BatchNumber { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CreditAmount", EmitDefaultValue=false)] + public DecimalValue? CreditAmount { get; set; } + + [DataMember(Name="CreditAmountInBaseCurrency", EmitDefaultValue=false)] + public DecimalValue? CreditAmountInBaseCurrency { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="CustomerVendor", EmitDefaultValue=false)] + public StringValue? CustomerVendor { get; set; } + + [DataMember(Name="DebitAmount", EmitDefaultValue=false)] + public DecimalValue? DebitAmount { get; set; } + + [DataMember(Name="DebitAmountInBaseCurrency", EmitDefaultValue=false)] + public DecimalValue? DebitAmountInBaseCurrency { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Ledger", EmitDefaultValue=false)] + public StringValue? Ledger { get; set; } + + [DataMember(Name="Module", EmitDefaultValue=false)] + public StringValue? Module { get; set; } + + [DataMember(Name="PeriodID", EmitDefaultValue=false)] + public StringValue? PeriodID { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="RefNumber", EmitDefaultValue=false)] + public StringValue? RefNumber { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="TransactionDate", EmitDefaultValue=false)] + public DateTimeValue? TransactionDate { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="TransactionType", EmitDefaultValue=false)] + public StringValue? TransactionType { get; set; } + + [DataMember(Name="Posted", EmitDefaultValue=false)] + public BooleanValue? Posted { get; set; } + + [DataMember(Name="Released", EmitDefaultValue=false)] + public BooleanValue? Released { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs new file mode 100644 index 000000000..2195617aa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AccountGroup : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountGroupID", EmitDefaultValue=false)] + public StringValue? AccountGroupID { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="DefaultAccountID", EmitDefaultValue=false)] + public StringValue? DefaultAccountID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Expense", EmitDefaultValue=false)] + public BooleanValue? Expense { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public ShortValue? SortOrder { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs new file mode 100644 index 000000000..446b9798c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AccountSummaryInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountClass", EmitDefaultValue=false)] + public StringValue? AccountClass { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="Ledger", EmitDefaultValue=false)] + public StringValue? Ledger { get; set; } + + [DataMember(Name="Period", EmitDefaultValue=false)] + public StringValue? Period { get; set; } + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs new file mode 100644 index 000000000..24933953f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs @@ -0,0 +1,78 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AccountSummaryRow : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="AccountClass", EmitDefaultValue=false)] + public StringValue? AccountClass { get; set; } + + [DataMember(Name="BeginningBalance", EmitDefaultValue=false)] + public DecimalValue? BeginningBalance { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ConsolidationAccount", EmitDefaultValue=false)] + public StringValue? ConsolidationAccount { get; set; } + + [DataMember(Name="CreditTotal", EmitDefaultValue=false)] + public DecimalValue? CreditTotal { get; set; } + + [DataMember(Name="CurrencyBeginningBalance", EmitDefaultValue=false)] + public DecimalValue? CurrencyBeginningBalance { get; set; } + + [DataMember(Name="CurrencyCreditTotal", EmitDefaultValue=false)] + public DecimalValue? CurrencyCreditTotal { get; set; } + + [DataMember(Name="CurrencyDebitTotal", EmitDefaultValue=false)] + public DecimalValue? CurrencyDebitTotal { get; set; } + + [DataMember(Name="CurrencyEndingBalance", EmitDefaultValue=false)] + public DecimalValue? CurrencyEndingBalance { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyPtdTotal", EmitDefaultValue=false)] + public DecimalValue? CurrencyPtdTotal { get; set; } + + [DataMember(Name="DebitTotal", EmitDefaultValue=false)] + public DecimalValue? DebitTotal { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndingBalance", EmitDefaultValue=false)] + public DecimalValue? EndingBalance { get; set; } + + [DataMember(Name="LastActivity", EmitDefaultValue=false)] + public StringValue? LastActivity { get; set; } + + [DataMember(Name="LedgerID", EmitDefaultValue=false)] + public IntValue? LedgerID { get; set; } + + [DataMember(Name="PtdTotal", EmitDefaultValue=false)] + public DecimalValue? PtdTotal { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs new file mode 100644 index 000000000..8d8dc9838 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CardOperationParameters + { + public CardOperationParameters() { } + + [DataMember(Name="TranType", EmitDefaultValue=false)] + public StringValue? TranType { get; set; } + [DataMember(Name="TranNbr", EmitDefaultValue=false)] + public StringValue? TranNbr { get; set; } + [DataMember(Name="AuthNumber", EmitDefaultValue=false)] + public StringValue? AuthNumber { get; set; } + [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] + public StringValue? ExtProfileId { get; set; } + [DataMember(Name="TranDate", EmitDefaultValue=false)] + public DateTimeValue? TranDate { get; set; } + [DataMember(Name="OrigTranNbr", EmitDefaultValue=false)] + public StringValue? OrigTranNbr { get; set; } + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs new file mode 100644 index 000000000..e277a753b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeBusinessAccountIDParameters + { + public ChangeBusinessAccountIDParameters() { } + + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs new file mode 100644 index 000000000..51a8c8ec6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeCostCodeIDParameters + { + public ChangeCostCodeIDParameters() { } + + [DataMember(Name="CostCodeID", EmitDefaultValue=false)] + public StringValue? CostCodeID { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs new file mode 100644 index 000000000..2b757c25b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeEmployeeIDParameters + { + public ChangeEmployeeIDParameters() { } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs new file mode 100644 index 000000000..b23e1abf5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeProjectIDParameters + { + public ChangeProjectIDParameters() { } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs new file mode 100644 index 000000000..a652cef6e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CloseParameters + { + public CloseParameters() { } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs new file mode 100644 index 000000000..edba3fd1d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertLeadToBAccountParameters + { + public ConvertLeadToBAccountParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] + public StringValue? BusinessAccountClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs new file mode 100644 index 000000000..d2a829da7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertLeadToContactParameters + { + public ConvertLeadToContactParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs new file mode 100644 index 000000000..2a3908e27 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertLeadToOpportunityParameters + { + public ConvertLeadToOpportunityParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] + public StringValue? BusinessAccountClass { get; set; } + [DataMember(Name="OpportunitySubject", EmitDefaultValue=false)] + public StringValue? OpportunitySubject { get; set; } + [DataMember(Name="OpportunityCloseDate", EmitDefaultValue=false)] + public StringValue? OpportunityCloseDate { get; set; } + [DataMember(Name="OpportunityClass", EmitDefaultValue=false)] + public StringValue? OpportunityClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs new file mode 100644 index 000000000..15ec1367c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateAccountFromContactParameters + { + public CreateAccountFromContactParameters() { } + + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] + public StringValue? BusinessAccountClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs new file mode 100644 index 000000000..0bff0071e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateAccountFromOpportunityParameters + { + public CreateAccountFromOpportunityParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + [DataMember(Name="LinkContactToAccount", EmitDefaultValue=false)] + public BooleanValue? LinkContactToAccount { get; set; } + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] + public StringValue? BusinessAccountClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs new file mode 100644 index 000000000..ba64a7c72 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromBusinessAccountParameters + { + public CreateContactFromBusinessAccountParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs new file mode 100644 index 000000000..8aa818419 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromCustomerParameters + { + public CreateContactFromCustomerParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs new file mode 100644 index 000000000..e3a14cfee --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromOpportunityParameters + { + public CreateContactFromOpportunityParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs new file mode 100644 index 000000000..057ca34bc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromVendorParameters + { + public CreateContactFromVendorParameters() { } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs new file mode 100644 index 000000000..99a39ba1e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateOpportunitySalesOrderParameters + { + public CreateOpportunitySalesOrderParameters() { } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + [DataMember(Name="RecalculatePricesandDiscounts", EmitDefaultValue=false)] + public BooleanValue? RecalculatePricesandDiscounts { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs new file mode 100644 index 000000000..8490fbac6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs @@ -0,0 +1,12 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LinkCaseParameters + { + [DataMember(Name = "RelatedCase", EmitDefaultValue = false)] + public StringValue? RelatedCase { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs new file mode 100644 index 000000000..86d09aebe --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseRetainageParameters + { + public ReleaseRetainageParameters() { } + + [DataMember(Name="AmtToRelease", EmitDefaultValue=false)] + public DecimalValue? AmtToRelease { get; set; } + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs new file mode 100644 index 000000000..3cff8af1b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderCreateReceiptParameters + { + public SalesOrderCreateReceiptParameters() { } + + [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] + public DateTimeValue? ShipmentDate { get; set; } + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs new file mode 100644 index 000000000..f76194c33 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderCreateShipmentParameters + { + public SalesOrderCreateShipmentParameters() { } + + [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] + public DateTimeValue? ShipmentDate { get; set; } + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs new file mode 100644 index 000000000..2ef6fc65c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs @@ -0,0 +1,12 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SetResultParameters + { + [DataMember(Name = "Result", EmitDefaultValue = false)] + public StringValue? Result { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs new file mode 100644 index 000000000..610e0427a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UpdateDiscountsParameters + { + public UpdateDiscountsParameters() { } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs new file mode 100644 index 000000000..304d96daa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VoidCardPaymentParameters + { + public VoidCardPaymentParameters() { } + + [DataMember(Name="TranType", EmitDefaultValue=false)] + public StringValue? TranType { get; set; } + [DataMember(Name="TranNbr", EmitDefaultValue=false)] + public StringValue? TranNbr { get; set; } + [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] + public StringValue? ExtProfileId { get; set; } + [DataMember(Name="TranDate", EmitDefaultValue=false)] + public DateTimeValue? TranDate { get; set; } + [DataMember(Name="NeedValidation", EmitDefaultValue=false)] + public BooleanValue? NeedValidation { get; set; } + [DataMember(Name="OrigTranNbr", EmitDefaultValue=false)] + public StringValue? OrigTranNbr { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs new file mode 100644 index 000000000..745f326fc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AcceptInvitationEvent : EntityAction + { + public AcceptInvitationEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs new file mode 100644 index 000000000..e07d39d95 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ActivateProject : EntityAction + { + public ActivateProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs new file mode 100644 index 000000000..eeb893373 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ActivateProjectTask : EntityAction + { + public ActivateProjectTask(ProjectTask entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs new file mode 100644 index 000000000..d57284d2f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ActivateProjectTemplate : EntityAction + { + public ActivateProjectTemplate(ProjectTemplate entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs new file mode 100644 index 000000000..612c278ae --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AllowBilling : EntityAction + { + public AllowBilling(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs new file mode 100644 index 000000000..0dc14b9ee --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppRecalcExternalTax : EntityAction + { + public AppRecalcExternalTax(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs new file mode 100644 index 000000000..1307b6cd9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ApproveChangeOrder : EntityAction + { + public ApproveChangeOrder(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs new file mode 100644 index 000000000..67abb750e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ApproveExpenseClaim : EntityAction + { + public ApproveExpenseClaim(ExpenseClaim entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs new file mode 100644 index 000000000..3cf89410b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ApproveExpenseReceipt : EntityAction + { + public ApproveExpenseReceipt(ExpenseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs new file mode 100644 index 000000000..55653965b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ApproveProFormaInvoice : EntityAction + { + public ApproveProFormaInvoice(ProFormaInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs new file mode 100644 index 000000000..801ff2c41 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ApproveProject : EntityAction + { + public ApproveProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs new file mode 100644 index 000000000..4861c228d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ArchiveEmail : EntityAction + { + public ArchiveEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs new file mode 100644 index 000000000..0f379ba76 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AssignCase : EntityAction + { + public AssignCase(Case entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs new file mode 100644 index 000000000..42a98a6a2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AutoRecalculateDiscounts : EntityAction + { + public AutoRecalculateDiscounts(SalesOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs new file mode 100644 index 000000000..0c67ed51b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelActivityEvent : EntityAction + { + public CancelActivityEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs new file mode 100644 index 000000000..92f99284b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelActivityTask : EntityAction + { + public CancelActivityTask(Task entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs new file mode 100644 index 000000000..2abe10056 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelAppointment : EntityAction + { + public CancelAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs new file mode 100644 index 000000000..daa23dae2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelOrder : EntityAction + { + public CancelOrder(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs new file mode 100644 index 000000000..d7658be9e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelPhysicalInventory : EntityAction + { + public CancelPhysicalInventory(PhysicalInventoryReview entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs new file mode 100644 index 000000000..7bc3c95ce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelProject : EntityAction + { + public CancelProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs new file mode 100644 index 000000000..c60b5e220 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelProjectTask : EntityAction + { + public CancelProjectTask(ProjectTask entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs new file mode 100644 index 000000000..7098faf64 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelSalesOrder : EntityAction + { + public CancelSalesOrder(SalesOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs new file mode 100644 index 000000000..ef82e8764 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CancelSendingEmail : EntityAction + { + public CancelSendingEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs new file mode 100644 index 000000000..eb4ca7472 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CaptureCreditCardPayment : EntityAction + { + public CaptureCreditCardPayment(Payment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs new file mode 100644 index 000000000..b6b429c4b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CardOperation : EntityActionWithParameters + { + public CardOperation(Payment entity, CardOperationParameters parameters) : base(entity, parameters) + { } + + public StringValue? TranType + { + get { return Parameters.TranType; } + set { Parameters.TranType = value; } + } + public StringValue? TranNbr + { + get { return Parameters.TranNbr; } + set { Parameters.TranNbr = value; } + } + public StringValue? AuthNumber + { + get { return Parameters.AuthNumber; } + set { Parameters.AuthNumber = value; } + } + public StringValue? ExtProfileId + { + get { return Parameters.ExtProfileId; } + set { Parameters.ExtProfileId = value; } + } + public DateTimeValue? TranDate + { + get { return Parameters.TranDate; } + set { Parameters.TranDate = value; } + } + public StringValue? OrigTranNbr + { + get { return Parameters.OrigTranNbr; } + set { Parameters.OrigTranNbr = value; } + } + public DecimalValue? Amount + { + get { return Parameters.Amount; } + set { Parameters.Amount = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs new file mode 100644 index 000000000..6b478b3a7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeBusinessAccountID : EntityActionWithParameters + { + public ChangeBusinessAccountID(BusinessAccount entity, ChangeBusinessAccountIDParameters parameters) : base(entity, parameters) + { } + + public StringValue? BusinessAccountID + { + get { return Parameters.BusinessAccountID; } + set { Parameters.BusinessAccountID = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs new file mode 100644 index 000000000..c82c61fcf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeCostCodeID : EntityActionWithParameters + { + public ChangeCostCodeID(CostCode entity, ChangeCostCodeIDParameters parameters) : base(entity, parameters) + { } + + public StringValue? CostCodeID + { + get { return Parameters.CostCodeID; } + set { Parameters.CostCodeID = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs new file mode 100644 index 000000000..841944c4a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeEmployeeID : EntityActionWithParameters + { + public ChangeEmployeeID(Employee entity, ChangeEmployeeIDParameters parameters) : base(entity, parameters) + { } + + public StringValue? EmployeeID + { + get { return Parameters.EmployeeID; } + set { Parameters.EmployeeID = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs new file mode 100644 index 000000000..0d0e91c58 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeProjectID : EntityActionWithParameters + { + public ChangeProjectID(Project entity, ChangeProjectIDParameters parameters) : base(entity, parameters) + { } + + public StringValue? ProjectID + { + get { return Parameters.ProjectID; } + set { Parameters.ProjectID = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs new file mode 100644 index 000000000..1745245ca --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CheckForBusinessAccountDuplicates : EntityAction + { + public CheckForBusinessAccountDuplicates(BusinessAccount entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs new file mode 100644 index 000000000..9c52b549c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CheckForContactDuplicates : EntityAction + { + public CheckForContactDuplicates(Contact entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs new file mode 100644 index 000000000..1e04cf4b1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CheckLeadForDuplicates : EntityAction + { + public CheckLeadForDuplicates(Lead entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs new file mode 100644 index 000000000..9fd3ef5ea --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ClaimExpenseReceipt : EntityAction + { + public ClaimExpenseReceipt(ExpenseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs new file mode 100644 index 000000000..1153370d6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Close : EntityActionWithParameters + { + public Close(Case entity, CloseParameters parameters) : base(entity, parameters) + { } + + public StringValue? Reason + { + get { return Parameters.Reason; } + set { Parameters.Reason = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs new file mode 100644 index 000000000..4f2bd26d3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CloseAppointment : EntityAction + { + public CloseAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs new file mode 100644 index 000000000..dc8f14280 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CloseOrder : EntityAction + { + public CloseOrder(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs new file mode 100644 index 000000000..35992e10e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteActivity : EntityAction + { + public CompleteActivity(Activity entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs new file mode 100644 index 000000000..14c5e437a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteAppointment : EntityAction + { + public CompleteAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs new file mode 100644 index 000000000..50020f500 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteEvent : EntityAction + { + public CompleteEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs new file mode 100644 index 000000000..768bc8fce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteOrder : EntityAction + { + public CompleteOrder(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs new file mode 100644 index 000000000..82b9284dd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompletePhysicalInventory : EntityAction + { + public CompletePhysicalInventory(PhysicalInventoryReview entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs new file mode 100644 index 000000000..c1c735faa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteProject : EntityAction + { + public CompleteProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs new file mode 100644 index 000000000..129c48e0b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteProjectTask : EntityAction + { + public CompleteProjectTask(ProjectTask entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs new file mode 100644 index 000000000..8ab9b4504 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteTask : EntityAction + { + public CompleteTask(Task entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs new file mode 100644 index 000000000..27d306044 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompleteTimeEntry : EntityAction + { + public CompleteTimeEntry(TimeEntry entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs new file mode 100644 index 000000000..ec7c36a39 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConfirmShipment : EntityAction + { + public ConfirmShipment(Shipment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs new file mode 100644 index 000000000..35098795a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertBusinessAccountToCustomer : EntityAction + { + public ConvertBusinessAccountToCustomer(BusinessAccount entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs new file mode 100644 index 000000000..481796f85 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs @@ -0,0 +1,80 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertLeadToBAccount : EntityActionWithParameters + { + public ConvertLeadToBAccount(Lead entity, ConvertLeadToBAccountParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + public StringValue? BusinessAccountID + { + get { return Parameters.BusinessAccountID; } + set { Parameters.BusinessAccountID = value; } + } + public StringValue? BusinessAccountName + { + get { return Parameters.BusinessAccountName; } + set { Parameters.BusinessAccountName = value; } + } + public StringValue? BusinessAccountClass + { + get { return Parameters.BusinessAccountClass; } + set { Parameters.BusinessAccountClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs new file mode 100644 index 000000000..43f94b73e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertLeadToContact : EntityActionWithParameters + { + public ConvertLeadToContact(Lead entity, ConvertLeadToContactParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? AccountName + { + get { return Parameters.AccountName; } + set { Parameters.AccountName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs new file mode 100644 index 000000000..f0b91a4f9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs @@ -0,0 +1,100 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ConvertLeadToOpportunity : EntityActionWithParameters + { + public ConvertLeadToOpportunity(Lead entity, ConvertLeadToOpportunityParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? AccountName + { + get { return Parameters.AccountName; } + set { Parameters.AccountName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + public StringValue? BusinessAccountID + { + get { return Parameters.BusinessAccountID; } + set { Parameters.BusinessAccountID = value; } + } + public StringValue? BusinessAccountName + { + get { return Parameters.BusinessAccountName; } + set { Parameters.BusinessAccountName = value; } + } + public StringValue? BusinessAccountClass + { + get { return Parameters.BusinessAccountClass; } + set { Parameters.BusinessAccountClass = value; } + } + public StringValue? OpportunitySubject + { + get { return Parameters.OpportunitySubject; } + set { Parameters.OpportunitySubject = value; } + } + public StringValue? OpportunityCloseDate + { + get { return Parameters.OpportunityCloseDate; } + set { Parameters.OpportunityCloseDate = value; } + } + public StringValue? OpportunityClass + { + get { return Parameters.OpportunityClass; } + set { Parameters.OpportunityClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs new file mode 100644 index 000000000..eed920369 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CorrectShipment : EntityAction + { + public CorrectShipment(Shipment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs new file mode 100644 index 000000000..1d14f930b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateAPBill : EntityAction + { + public CreateAPBill(PurchaseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs new file mode 100644 index 000000000..4fcc3eaee --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateAccountFromContact : EntityActionWithParameters + { + public CreateAccountFromContact(Contact entity, CreateAccountFromContactParameters parameters) : base(entity, parameters) + { } + + public StringValue? BusinessAccountID + { + get { return Parameters.BusinessAccountID; } + set { Parameters.BusinessAccountID = value; } + } + public StringValue? BusinessAccountName + { + get { return Parameters.BusinessAccountName; } + set { Parameters.BusinessAccountName = value; } + } + public StringValue? BusinessAccountClass + { + get { return Parameters.BusinessAccountClass; } + set { Parameters.BusinessAccountClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs new file mode 100644 index 000000000..48fd1a313 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs @@ -0,0 +1,90 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateAccountFromOpportunity : EntityActionWithParameters + { + public CreateAccountFromOpportunity(Opportunity entity, CreateAccountFromOpportunityParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? AccountName + { + get { return Parameters.AccountName; } + set { Parameters.AccountName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + public BooleanValue? LinkContactToAccount + { + get { return Parameters.LinkContactToAccount; } + set { Parameters.LinkContactToAccount = value; } + } + public StringValue? BusinessAccountID + { + get { return Parameters.BusinessAccountID; } + set { Parameters.BusinessAccountID = value; } + } + public StringValue? BusinessAccountName + { + get { return Parameters.BusinessAccountName; } + set { Parameters.BusinessAccountName = value; } + } + public StringValue? BusinessAccountClass + { + get { return Parameters.BusinessAccountClass; } + set { Parameters.BusinessAccountClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs new file mode 100644 index 000000000..cc8536f49 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateCaseFromEmail : EntityAction + { + public CreateCaseFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs new file mode 100644 index 000000000..b36c62e56 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs @@ -0,0 +1,65 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromBusinessAccount : EntityActionWithParameters + { + public CreateContactFromBusinessAccount(BusinessAccount entity, CreateContactFromBusinessAccountParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs new file mode 100644 index 000000000..57ea52c46 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs @@ -0,0 +1,65 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromCustomer : EntityActionWithParameters + { + public CreateContactFromCustomer(Customer entity, CreateContactFromCustomerParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs new file mode 100644 index 000000000..ee2e925f7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromEmail : EntityAction + { + public CreateContactFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs new file mode 100644 index 000000000..f1994b108 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromOpportunity : EntityActionWithParameters + { + public CreateContactFromOpportunity(Opportunity entity, CreateContactFromOpportunityParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? AccountName + { + get { return Parameters.AccountName; } + set { Parameters.AccountName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs new file mode 100644 index 000000000..a5d9d9211 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs @@ -0,0 +1,65 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateContactFromVendor : EntityActionWithParameters + { + public CreateContactFromVendor(Vendor entity, CreateContactFromVendorParameters parameters) : base(entity, parameters) + { } + + public StringValue? FirstName + { + get { return Parameters.FirstName; } + set { Parameters.FirstName = value; } + } + public StringValue? LastName + { + get { return Parameters.LastName; } + set { Parameters.LastName = value; } + } + public StringValue? JobTitle + { + get { return Parameters.JobTitle; } + set { Parameters.JobTitle = value; } + } + public StringValue? Phone1Type + { + get { return Parameters.Phone1Type; } + set { Parameters.Phone1Type = value; } + } + public StringValue? Phone1 + { + get { return Parameters.Phone1; } + set { Parameters.Phone1 = value; } + } + public StringValue? Phone2Type + { + get { return Parameters.Phone2Type; } + set { Parameters.Phone2Type = value; } + } + public StringValue? Phone2 + { + get { return Parameters.Phone2; } + set { Parameters.Phone2 = value; } + } + public StringValue? Email + { + get { return Parameters.Email; } + set { Parameters.Email = value; } + } + public StringValue? ContactClass + { + get { return Parameters.ContactClass; } + set { Parameters.ContactClass = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs new file mode 100644 index 000000000..c2eed717d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateEventFromEmail : EntityAction + { + public CreateEventFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs new file mode 100644 index 000000000..a9502781b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateExpenseReceiptFromEmail : EntityAction + { + public CreateExpenseReceiptFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs new file mode 100644 index 000000000..7ae0fca4b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateLeadFromEmail : EntityAction + { + public CreateLeadFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs new file mode 100644 index 000000000..51ab1df51 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateOpportunityFromEmail : EntityAction + { + public CreateOpportunityFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs new file mode 100644 index 000000000..712bcad43 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateOpportunityInvoice : EntityAction + { + public CreateOpportunityInvoice(Opportunity entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs new file mode 100644 index 000000000..ff0422de2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateOpportunitySalesOrder : EntityActionWithParameters + { + public CreateOpportunitySalesOrder(Opportunity entity, CreateOpportunitySalesOrderParameters parameters) : base(entity, parameters) + { } + + public StringValue? OrderType + { + get { return Parameters.OrderType; } + set { Parameters.OrderType = value; } + } + public BooleanValue? RecalculatePricesandDiscounts + { + get { return Parameters.RecalculatePricesandDiscounts; } + set { Parameters.RecalculatePricesandDiscounts = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs new file mode 100644 index 000000000..1a9569acc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreateTaskFromEmail : EntityAction + { + public CreateTaskFromEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs new file mode 100644 index 000000000..f7ce28799 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmailChangeOrder : EntityAction + { + public EmailChangeOrder(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs new file mode 100644 index 000000000..f00f2f888 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmailProFormaInvoice : EntityAction + { + public EmailProFormaInvoice(ProFormaInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs new file mode 100644 index 000000000..e7037e6fa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExportCardEvent : EntityAction + { + public ExportCardEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs new file mode 100644 index 000000000..4eb7e16c6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FinishCountingPhysicalInventory : EntityAction + { + public FinishCountingPhysicalInventory(PhysicalInventoryReview entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs new file mode 100644 index 000000000..dff2efe97 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class HoldChangeOrder : EntityAction + { + public HoldChangeOrder(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs new file mode 100644 index 000000000..9761b59d0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class HoldProFormaInvoice : EntityAction + { + public HoldProFormaInvoice(ProFormaInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs new file mode 100644 index 000000000..e29ff2295 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class HoldProject : EntityAction + { + public HoldProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs new file mode 100644 index 000000000..fac1d2cd4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class HoldProjectTask : EntityAction + { + public HoldProjectTask(ProjectTask entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs new file mode 100644 index 000000000..458bfa17e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class HoldProjectTemplate : EntityAction + { + public HoldProjectTemplate(ProjectTemplate entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs new file mode 100644 index 000000000..aee331e3e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ImportEmployeeTaxes : EntityAction + { + public ImportEmployeeTaxes(EmployeePayrollSettings entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs new file mode 100644 index 000000000..092c53c93 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InviteAllEvent : EntityAction + { + public InviteAllEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs new file mode 100644 index 000000000..e281207c7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InviteEvent : EntityAction + { + public InviteEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs new file mode 100644 index 000000000..f09eb4309 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceAppointment : EntityAction + { + public InvoiceAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs new file mode 100644 index 000000000..e4c3a4d90 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceOrder : EntityAction + { + public InvoiceOrder(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs new file mode 100644 index 000000000..6b72a3046 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs @@ -0,0 +1,26 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LinkCase : EntityActionWithParameters + { + public StringValue? RelatedCase + { + get + { + return base.Parameters.RelatedCase; + } + set + { + base.Parameters.RelatedCase = value; + } + } + + public LinkCase(SolutionSubmission entity, LinkCaseParameters parameters) + : base(entity, parameters) + { + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs new file mode 100644 index 000000000..8ccbcc5d6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LockProjectBudget : EntityAction + { + public LockProjectBudget(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs new file mode 100644 index 000000000..9a5fa7a6a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LockProjectCommitments : EntityAction + { + public LockProjectCommitments(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs new file mode 100644 index 000000000..d08e4f02f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs @@ -0,0 +1,14 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LockSubmission : EntityAction + { + public LockSubmission(SolutionSubmission entity) + : base(entity) + { + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs new file mode 100644 index 000000000..8af072c4e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class MarkBusinessAccountAsValidated : EntityAction + { + public MarkBusinessAccountAsValidated(BusinessAccount entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs new file mode 100644 index 000000000..71b8c84f1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class MarkContactAsValidated : EntityAction + { + public MarkContactAsValidated(Contact entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs new file mode 100644 index 000000000..5a0642c6b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class MarkLeadAsValidated : EntityAction + { + public MarkLeadAsValidated(Lead entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs new file mode 100644 index 000000000..43a9901bc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Open : EntityAction + { + public Open(Case entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs new file mode 100644 index 000000000..a345624c3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpenSalesOrder : EntityAction + { + public OpenSalesOrder(SalesOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs new file mode 100644 index 000000000..d4fcddaf3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpenTimeEntry : EntityAction + { + public OpenTimeEntry(TimeEntry entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs new file mode 100644 index 000000000..ec9569be5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PauseAppointment : EntityAction + { + public PauseAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs new file mode 100644 index 000000000..8a546a597 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PrepareInvoice : EntityAction + { + public PrepareInvoice(Shipment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs new file mode 100644 index 000000000..2ee7fcd91 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PrepareSalesInvoice : EntityAction + { + public PrepareSalesInvoice(SalesOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs new file mode 100644 index 000000000..65b1cd2ce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProcessAllEmailProcessing : EntityAction + { + public ProcessAllEmailProcessing(EmailProcessing entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs new file mode 100644 index 000000000..ce8bc3782 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProcessEmail : EntityAction + { + public ProcessEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs new file mode 100644 index 000000000..e7b8c8b4e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProcessEmailProcessing : EntityAction + { + public ProcessEmailProcessing(EmailProcessing entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs new file mode 100644 index 000000000..92c6f6fab --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PutOnHold : EntityAction + { + public PutOnHold(Subcontract entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs new file mode 100644 index 000000000..6e9a3e4f6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PutOnHoldExpenseClaim : EntityAction + { + public PutOnHoldExpenseClaim(ExpenseClaim entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs new file mode 100644 index 000000000..707512e29 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PutOnHoldExpenseReceipt : EntityAction + { + public PutOnHoldExpenseReceipt(ExpenseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs new file mode 100644 index 000000000..c32f22660 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RecalcExternalTax : EntityAction + { + public RecalcExternalTax(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs new file mode 100644 index 000000000..42583625a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RejectChangeOrder : EntityAction + { + public RejectChangeOrder(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs new file mode 100644 index 000000000..619926961 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RejectExpenseClaim : EntityAction + { + public RejectExpenseClaim(ExpenseClaim entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs new file mode 100644 index 000000000..fd9a58fc6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RejectExpenseReceipt : EntityAction + { + public RejectExpenseReceipt(ExpenseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs new file mode 100644 index 000000000..d14d2e5fa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RejectInvitationEvent : EntityAction + { + public RejectInvitationEvent(Event entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs new file mode 100644 index 000000000..ac11f3272 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RejectProFormaInvoice : EntityAction + { + public RejectProFormaInvoice(ProFormaInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs new file mode 100644 index 000000000..b0058350c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RejectProject : EntityAction + { + public RejectProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs new file mode 100644 index 000000000..68ff21ea2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseAdjustment : EntityAction + { + public ReleaseAdjustment(InventoryAdjustment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs new file mode 100644 index 000000000..8717f1045 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseBatch : EntityAction + { + public ReleaseBatch(PayrollBatch entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs new file mode 100644 index 000000000..4122344db --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseBill : EntityAction + { + public ReleaseBill(Bill entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs new file mode 100644 index 000000000..422266dc6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseCase : EntityAction + { + public ReleaseCase(Case entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs new file mode 100644 index 000000000..abffdb689 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseCashSale : EntityAction + { + public ReleaseCashSale(CashSale entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs new file mode 100644 index 000000000..f5bf3e71e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseChangeOrder : EntityAction + { + public ReleaseChangeOrder(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs new file mode 100644 index 000000000..2edc1c41d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseCheck : EntityAction + { + public ReleaseCheck(Check entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs new file mode 100644 index 000000000..e38bce6bd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseExpenseClaim : EntityAction + { + public ReleaseExpenseClaim(ExpenseClaim entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs new file mode 100644 index 000000000..c5e4be4e7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseFromCreditHoldSalesOrder : EntityAction + { + public ReleaseFromCreditHoldSalesOrder(SalesOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs new file mode 100644 index 000000000..839f13fd3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseFromHold : EntityAction + { + public ReleaseFromHold(Subcontract entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs new file mode 100644 index 000000000..809109827 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseInventoryIssue : EntityAction + { + public ReleaseInventoryIssue(InventoryIssue entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs new file mode 100644 index 000000000..b5804fb12 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseInventoryReceipt : EntityAction + { + public ReleaseInventoryReceipt(InventoryReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs new file mode 100644 index 000000000..ba0dba468 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseInvoice : EntityAction + { + public ReleaseInvoice(Invoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs new file mode 100644 index 000000000..65cf9955e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseJournalTransaction : EntityAction + { + public ReleaseJournalTransaction(JournalTransaction entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs new file mode 100644 index 000000000..ae25e8ef8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseKitAssembly : EntityAction + { + public ReleaseKitAssembly(KitAssembly entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs new file mode 100644 index 000000000..402c93669 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleasePayment : EntityAction + { + public ReleasePayment(Payment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs new file mode 100644 index 000000000..30c7897b8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseProFormaInvoice : EntityAction + { + public ReleaseProFormaInvoice(ProFormaInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs new file mode 100644 index 000000000..bc95b6491 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleasePurchaseReceipt : EntityAction + { + public ReleasePurchaseReceipt(PurchaseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs new file mode 100644 index 000000000..0809ef4f2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseRetainage : EntityActionWithParameters + { + public ReleaseRetainage(Bill entity, ReleaseRetainageParameters parameters) : base(entity, parameters) + { } + + public DecimalValue? AmtToRelease + { + get { return Parameters.AmtToRelease; } + set { Parameters.AmtToRelease = value; } + } + public DateTimeValue? Date + { + get { return Parameters.Date; } + set { Parameters.Date = value; } + } + public StringValue? PostPeriod + { + get { return Parameters.PostPeriod; } + set { Parameters.PostPeriod = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs new file mode 100644 index 000000000..e6bbe74cd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseSalesInvoice : EntityAction + { + public ReleaseSalesInvoice(SalesInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs new file mode 100644 index 000000000..179f7090f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseSalesPriceWorksheet : EntityAction + { + public ReleaseSalesPriceWorksheet(SalesPriceWorksheet entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs new file mode 100644 index 000000000..faef7ba03 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseTransactions : EntityAction + { + public ReleaseTransactions(ProjectTransaction entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs new file mode 100644 index 000000000..1b3deb293 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseTransferOrder : EntityAction + { + public ReleaseTransferOrder(TransferOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs new file mode 100644 index 000000000..bcff72b6e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReleaseVendorPriceWorksheet : EntityAction + { + public ReleaseVendorPriceWorksheet(VendorPriceWorksheet entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs new file mode 100644 index 000000000..0ccc6e258 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RemoveChangeOrderFromHold : EntityAction + { + public RemoveChangeOrderFromHold(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs new file mode 100644 index 000000000..3957b3e46 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RemoveProFormaInvoiceFromHold : EntityAction + { + public RemoveProFormaInvoiceFromHold(ProFormaInvoice entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs new file mode 100644 index 000000000..945b7299a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReopenAppointment : EntityAction + { + public ReopenAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs new file mode 100644 index 000000000..06da78013 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReopenOrder : EntityAction + { + public ReopenOrder(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs new file mode 100644 index 000000000..a8815bb95 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReopenSalesOrder : EntityAction + { + public ReopenSalesOrder(SalesOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs new file mode 100644 index 000000000..944122f4f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RestoreArchivedEmail : EntityAction + { + public RestoreArchivedEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs new file mode 100644 index 000000000..43abc5262 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RestoreDeletedEmail : EntityAction + { + public RestoreDeletedEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs new file mode 100644 index 000000000..910ec34f8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ResumeAppointmentMenuActions : EntityAction + { + public ResumeAppointmentMenuActions(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs new file mode 100644 index 000000000..f34cba4df --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReverseBill : EntityAction + { + public ReverseBill(Bill entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs new file mode 100644 index 000000000..dcd49c68c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReverseChangeOrder : EntityAction + { + public ReverseChangeOrder(ChangeOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs new file mode 100644 index 000000000..bdd913675 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RunProjectAllocation : EntityAction + { + public RunProjectAllocation(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs new file mode 100644 index 000000000..7b3dd8b0c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RunProjectBilling : EntityAction + { + public RunProjectBilling(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs new file mode 100644 index 000000000..ab827c130 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderCreateReceipt : EntityActionWithParameters + { + public SalesOrderCreateReceipt(SalesOrder entity, SalesOrderCreateReceiptParameters parameters) : base(entity, parameters) + { } + + public DateTimeValue? ShipmentDate + { + get { return Parameters.ShipmentDate; } + set { Parameters.ShipmentDate = value; } + } + public StringValue? WarehouseID + { + get { return Parameters.WarehouseID; } + set { Parameters.WarehouseID = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs new file mode 100644 index 000000000..541dcd7fd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderCreateShipment : EntityActionWithParameters + { + public SalesOrderCreateShipment(SalesOrder entity, SalesOrderCreateShipmentParameters parameters) : base(entity, parameters) + { } + + public DateTimeValue? ShipmentDate + { + get { return Parameters.ShipmentDate; } + set { Parameters.ShipmentDate = value; } + } + public StringValue? WarehouseID + { + get { return Parameters.WarehouseID; } + set { Parameters.WarehouseID = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs new file mode 100644 index 000000000..ca8e022a1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SendEmail : EntityAction + { + public SendEmail(Email entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs new file mode 100644 index 000000000..0d2262e90 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs @@ -0,0 +1,26 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SetResult : EntityActionWithParameters + { + public StringValue? Result + { + get + { + return base.Parameters.Result; + } + set + { + base.Parameters.Result = value; + } + } + + public SetResult(SolutionSubmission entity, SetResultParameters parameters) + : base(entity, parameters) + { + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs new file mode 100644 index 000000000..1ea508dd7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StartAppointment : EntityAction + { + public StartAppointment(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs new file mode 100644 index 000000000..4f3eaf289 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SubmitExpenseClaim : EntityAction + { + public SubmitExpenseClaim(ExpenseClaim entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs new file mode 100644 index 000000000..41bce659b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SubmitExpenseReceipt : EntityAction + { + public SubmitExpenseReceipt(ExpenseReceipt entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs new file mode 100644 index 000000000..b8142f4ad --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SuspendProject : EntityAction + { + public SuspendProject(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs new file mode 100644 index 000000000..3fd1adb22 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UncloseAppointmentMenuActions : EntityAction + { + public UncloseAppointmentMenuActions(Appointment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs new file mode 100644 index 000000000..0dbd1b786 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UncloseOrder : EntityAction + { + public UncloseOrder(ServiceOrder entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs new file mode 100644 index 000000000..f7508aa05 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UnlockProjectBudget : EntityAction + { + public UnlockProjectBudget(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs new file mode 100644 index 000000000..4b6d4dbf4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UnlockProjectCommitments : EntityAction + { + public UnlockProjectCommitments(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs new file mode 100644 index 000000000..4bbc3d6cc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UpdateDiscounts : EntityActionWithParameters + { + public UpdateDiscounts(Discount entity, UpdateDiscountsParameters parameters) : base(entity, parameters) + { } + + public DateTimeValue? Date + { + get { return Parameters.Date; } + set { Parameters.Date = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs new file mode 100644 index 000000000..91ceb22af --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UpdateIN : EntityAction + { + public UpdateIN(Shipment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs new file mode 100644 index 000000000..8311fb0ce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UpdateStandardCostNonStockItem : EntityAction + { + public UpdateStandardCostNonStockItem(NonStockItem entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs new file mode 100644 index 000000000..8de072952 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UpdateStandardCostStockItem : EntityAction + { + public UpdateStandardCostStockItem(StockItem entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs new file mode 100644 index 000000000..9529dc68f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ValidateBusinessAccountAddresses : EntityAction + { + public ValidateBusinessAccountAddresses(BusinessAccount entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs new file mode 100644 index 000000000..10658209c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ValidateContactAddress : EntityAction + { + public ValidateContactAddress(Contact entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs new file mode 100644 index 000000000..6504cd7d1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ValidateLeadAddress : EntityAction + { + public ValidateLeadAddress(Lead entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs new file mode 100644 index 000000000..a7aa25b83 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ValidateProjectBalance : EntityAction + { + public ValidateProjectBalance(Project entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs new file mode 100644 index 000000000..69ffe16cf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VoidCardPayment : EntityActionWithParameters + { + public VoidCardPayment(Payment entity, VoidCardPaymentParameters parameters) : base(entity, parameters) + { } + + public StringValue? TranType + { + get { return Parameters.TranType; } + set { Parameters.TranType = value; } + } + public StringValue? TranNbr + { + get { return Parameters.TranNbr; } + set { Parameters.TranNbr = value; } + } + public StringValue? ExtProfileId + { + get { return Parameters.ExtProfileId; } + set { Parameters.ExtProfileId = value; } + } + public DateTimeValue? TranDate + { + get { return Parameters.TranDate; } + set { Parameters.TranDate = value; } + } + public BooleanValue? NeedValidation + { + get { return Parameters.NeedValidation; } + set { Parameters.NeedValidation = value; } + } + public StringValue? OrigTranNbr + { + get { return Parameters.OrigTranNbr; } + set { Parameters.OrigTranNbr = value; } + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs new file mode 100644 index 000000000..815c5a9e0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VoidCheck : EntityAction + { + public VoidCheck(Check entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs new file mode 100644 index 000000000..d8a2cbebf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VoidPayment : EntityAction + { + public VoidPayment(Payment entity) : base(entity) + { } + } +} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs new file mode 100644 index 000000000..67c38f33a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs @@ -0,0 +1,73 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Activity : Entity, ITopLevelEntity + { + + [DataMember(Name="Body", EmitDefaultValue=false)] + public StringValue? Body { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Internal", EmitDefaultValue=false)] + public BooleanValue? Internal { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Summary", EmitDefaultValue=false)] + public StringValue? Summary { get; set; } + + [DataMember(Name="Task", EmitDefaultValue=false)] + public StringValue? Task { get; set; } + + [DataMember(Name="TimeActivity", EmitDefaultValue=false)] + public TimeActivity? TimeActivity { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + [DataMember(Name="CreatedByID", EmitDefaultValue=false)] + public StringValue? CreatedByID { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] + public StringValue? RelatedEntityType { get; set; } + + [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] + public GuidValue? RelatedEntityNoteID { get; set; } + + [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] + public StringValue? RelatedEntityDescription { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs new file mode 100644 index 000000000..194fb4d81 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ActivityDetail : Entity + { + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="Overtime", EmitDefaultValue=false)] + public StringValue? Overtime { get; set; } + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public StringValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="Category", EmitDefaultValue=false)] + public StringValue? Category { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="CreatedByID", EmitDefaultValue=false)] + public StringValue? CreatedByID { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="RefNoteID", EmitDefaultValue=false)] + public GuidValue? RefNoteID { get; set; } + + [DataMember(Name="Released", EmitDefaultValue=false)] + public BooleanValue? Released { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Summary", EmitDefaultValue=false)] + public StringValue? Summary { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] + public StringValue? WorkgroupID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs new file mode 100644 index 000000000..c0de29435 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Address : Entity + { + + [DataMember(Name="AddressLine1", EmitDefaultValue=false)] + public StringValue? AddressLine1 { get; set; } + + [DataMember(Name="AddressLine2", EmitDefaultValue=false)] + public StringValue? AddressLine2 { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="PostalCode", EmitDefaultValue=false)] + public StringValue? PostalCode { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="Validated", EmitDefaultValue=false)] + public BooleanValue? Validated { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs new file mode 100644 index 000000000..8fdc3ba65 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppAttributes : Entity + { + + [DataMember(Name="Attribute", EmitDefaultValue=false)] + public StringValue? Attribute { get; set; } + + [DataMember(Name="RefNoteID", EmitDefaultValue=false)] + public GuidValue? RefNoteID { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs new file mode 100644 index 000000000..428f73b08 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs @@ -0,0 +1,192 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppDetails : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="ActualAmount", EmitDefaultValue=false)] + public DecimalValue? ActualAmount { get; set; } + + [DataMember(Name="ActualDuration", EmitDefaultValue=false)] + public StringValue? ActualDuration { get; set; } + + [DataMember(Name="ActualQty", EmitDefaultValue=false)] + public DecimalValue? ActualQty { get; set; } + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillableAmount", EmitDefaultValue=false)] + public DecimalValue? BillableAmount { get; set; } + + [DataMember(Name="BillableQty", EmitDefaultValue=false)] + public DecimalValue? BillableQty { get; set; } + + [DataMember(Name="BillingRule", EmitDefaultValue=false)] + public StringValue? BillingRule { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ComponentID", EmitDefaultValue=false)] + public StringValue? ComponentID { get; set; } + + [DataMember(Name="ComponentLineRef", EmitDefaultValue=false)] + public StringValue? ComponentLineRef { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CoveredQty", EmitDefaultValue=false)] + public DecimalValue? CoveredQty { get; set; } + + [DataMember(Name="CuryUnitCost", EmitDefaultValue=false)] + public DecimalValue? CuryUnitCost { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="EquipmentAction", EmitDefaultValue=false)] + public StringValue? EquipmentAction { get; set; } + + [DataMember(Name="EquipmentActionComment", EmitDefaultValue=false)] + public StringValue? EquipmentActionComment { get; set; } + + [DataMember(Name="EstimatedAmount", EmitDefaultValue=false)] + public DecimalValue? EstimatedAmount { get; set; } + + [DataMember(Name="EstimatedDuration", EmitDefaultValue=false)] + public StringValue? EstimatedDuration { get; set; } + + [DataMember(Name="EstimatedQty", EmitDefaultValue=false)] + public DecimalValue? EstimatedQty { get; set; } + + [DataMember(Name="ExtPrice", EmitDefaultValue=false)] + public DecimalValue? ExtPrice { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LineRef", EmitDefaultValue=false)] + public StringValue? LineRef { get; set; } + + [DataMember(Name="LineStatus", EmitDefaultValue=false)] + public StringValue? LineStatus { get; set; } + + [DataMember(Name="LineType", EmitDefaultValue=false)] + public StringValue? LineType { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="ManualPrice", EmitDefaultValue=false)] + public BooleanValue? ManualPrice { get; set; } + + [DataMember(Name="MarkforPO", EmitDefaultValue=false)] + public BooleanValue? MarkforPO { get; set; } + + [DataMember(Name="ModelEquipmentLineRef", EmitDefaultValue=false)] + public StringValue? ModelEquipmentLineRef { get; set; } + + [DataMember(Name="OverageQty", EmitDefaultValue=false)] + public DecimalValue? OverageQty { get; set; } + + [DataMember(Name="OverageUnitPrice", EmitDefaultValue=false)] + public DecimalValue? OverageUnitPrice { get; set; } + + [DataMember(Name="PickupDeliveryAction", EmitDefaultValue=false)] + public StringValue? PickupDeliveryAction { get; set; } + + [DataMember(Name="PickupDeliveryLineRef", EmitDefaultValue=false)] + public StringValue? PickupDeliveryLineRef { get; set; } + + [DataMember(Name="PickupDeliveryServiceID", EmitDefaultValue=false)] + public StringValue? PickupDeliveryServiceID { get; set; } + + [DataMember(Name="POCompleted", EmitDefaultValue=false)] + public BooleanValue? POCompleted { get; set; } + + [DataMember(Name="PONbr", EmitDefaultValue=false)] + public StringValue? PONbr { get; set; } + + [DataMember(Name="POStatus", EmitDefaultValue=false)] + public StringValue? POStatus { get; set; } + + [DataMember(Name="PrepaidItem", EmitDefaultValue=false)] + public BooleanValue? PrepaidItem { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="RelatedDocNbr", EmitDefaultValue=false)] + public StringValue? RelatedDocNbr { get; set; } + + [DataMember(Name="ServiceContractItem", EmitDefaultValue=false)] + public BooleanValue? ServiceContractItem { get; set; } + + [DataMember(Name="ServiceOrderLineRef", EmitDefaultValue=false)] + public StringValue? ServiceOrderLineRef { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public IntValue? SortOrder { get; set; } + + [DataMember(Name="StaffMemberID", EmitDefaultValue=false)] + public StringValue? StaffMemberID { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TargetEquipmentID", EmitDefaultValue=false)] + public StringValue? TargetEquipmentID { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + [DataMember(Name="Warranty", EmitDefaultValue=false)] + public BooleanValue? Warranty { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs new file mode 100644 index 000000000..b73e87719 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppFinancialSettings : Entity + { + + [DataMember(Name="BillingCustomer", EmitDefaultValue=false)] + public StringValue? BillingCustomer { get; set; } + + [DataMember(Name="BillingCycle", EmitDefaultValue=false)] + public StringValue? BillingCycle { get; set; } + + [DataMember(Name="BillingLocation", EmitDefaultValue=false)] + public StringValue? BillingLocation { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="Commissionable", EmitDefaultValue=false)] + public BooleanValue? Commissionable { get; set; } + + [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] + public StringValue? CustomerTaxZone { get; set; } + + [DataMember(Name="RunBillingFor", EmitDefaultValue=false)] + public StringValue? RunBillingFor { get; set; } + + [DataMember(Name="Salesperson", EmitDefaultValue=false)] + public StringValue? Salesperson { get; set; } + + [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] + public StringValue? TaxCalculationMode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs new file mode 100644 index 000000000..a4a71a66d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs @@ -0,0 +1,99 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppLogs : Entity + { + + [DataMember(Name="AddtoActualDuration", EmitDefaultValue=false)] + public BooleanValue? AddtoActualDuration { get; set; } + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="Approved", EmitDefaultValue=false)] + public BooleanValue? Approved { get; set; } + + [DataMember(Name="BillableAmount", EmitDefaultValue=false)] + public DecimalValue? BillableAmount { get; set; } + + [DataMember(Name="BillableLabor", EmitDefaultValue=false)] + public BooleanValue? BillableLabor { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DetailLineRef", EmitDefaultValue=false)] + public StringValue? DetailLineRef { get; set; } + + [DataMember(Name="Duration", EmitDefaultValue=false)] + public StringValue? Duration { get; set; } + + [DataMember(Name="EarningType", EmitDefaultValue=false)] + public StringValue? EarningType { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="EndTime", EmitDefaultValue=false)] + public DateTimeValue? EndTime { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LaborItemID", EmitDefaultValue=false)] + public StringValue? LaborItemID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LogLineRef", EmitDefaultValue=false)] + public StringValue? LogLineRef { get; set; } + + [DataMember(Name="LogLineStatus", EmitDefaultValue=false)] + public StringValue? LogLineStatus { get; set; } + + [DataMember(Name="ManageTimeManually", EmitDefaultValue=false)] + public BooleanValue? ManageTimeManually { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="StaffMember", EmitDefaultValue=false)] + public StringValue? StaffMember { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="StartTime", EmitDefaultValue=false)] + public DateTimeValue? StartTime { get; set; } + + [DataMember(Name="TimeCardRefNbr", EmitDefaultValue=false)] + public StringValue? TimeCardRefNbr { get; set; } + + [DataMember(Name="TrackTime", EmitDefaultValue=false)] + public BooleanValue? TrackTime { get; set; } + + [DataMember(Name="Travel", EmitDefaultValue=false)] + public BooleanValue? Travel { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs new file mode 100644 index 000000000..b34e2b87b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppOtherInformation : Entity + { + + [DataMember(Name="BatchNbr", EmitDefaultValue=false)] + public StringValue? BatchNbr { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocumentType", EmitDefaultValue=false)] + public StringValue? DocumentType { get; set; } + + [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] + public StringValue? InvoiceNbr { get; set; } + + [DataMember(Name="IssueReferenceNbr", EmitDefaultValue=false)] + public StringValue? IssueReferenceNbr { get; set; } + + [DataMember(Name="RecurrenceDescription", EmitDefaultValue=false)] + public StringValue? RecurrenceDescription { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="RouteID", EmitDefaultValue=false)] + public StringValue? RouteID { get; set; } + + [DataMember(Name="RouteNbr", EmitDefaultValue=false)] + public StringValue? RouteNbr { get; set; } + + [DataMember(Name="SourceScheduleID", EmitDefaultValue=false)] + public StringValue? SourceScheduleID { get; set; } + + [DataMember(Name="SourceServiceContractID", EmitDefaultValue=false)] + public StringValue? SourceServiceContractID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs new file mode 100644 index 000000000..33e6475fc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppPrepayments : Entity + { + + [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] + public DateTimeValue? ApplicationDate { get; set; } + + [DataMember(Name="AppliedtoOrders", EmitDefaultValue=false)] + public DecimalValue? AppliedtoOrders { get; set; } + + [DataMember(Name="AvailableBalance", EmitDefaultValue=false)] + public DecimalValue? AvailableBalance { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public IntValue? CashAccount { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] + public DecimalValue? PaymentAmount { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="SourceAppointmentNbr", EmitDefaultValue=false)] + public StringValue? SourceAppointmentNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs new file mode 100644 index 000000000..31019e042 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppProfitability : Entity + { + + [DataMember(Name="ActualAmount", EmitDefaultValue=false)] + public DecimalValue? ActualAmount { get; set; } + + [DataMember(Name="ActualDuration", EmitDefaultValue=false)] + public StringValue? ActualDuration { get; set; } + + [DataMember(Name="ActualQuantity", EmitDefaultValue=false)] + public DecimalValue? ActualQuantity { get; set; } + + [DataMember(Name="BillableAmount", EmitDefaultValue=false)] + public DecimalValue? BillableAmount { get; set; } + + [DataMember(Name="BillableQuantity", EmitDefaultValue=false)] + public DecimalValue? BillableQuantity { get; set; } + + [DataMember(Name="ExtCost", EmitDefaultValue=false)] + public DecimalValue? ExtCost { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EstimatedAmount", EmitDefaultValue=false)] + public DecimalValue? EstimatedAmount { get; set; } + + [DataMember(Name="EstimatedQty", EmitDefaultValue=false)] + public DecimalValue? EstimatedQty { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineRef", EmitDefaultValue=false)] + public StringValue? LineRef { get; set; } + + [DataMember(Name="LineType", EmitDefaultValue=false)] + public StringValue? LineType { get; set; } + + [DataMember(Name="Profit", EmitDefaultValue=false)] + public DecimalValue? Profit { get; set; } + + [DataMember(Name="ProfitPercent", EmitDefaultValue=false)] + public DecimalValue? ProfitPercent { get; set; } + + [DataMember(Name="StaffMember", EmitDefaultValue=false)] + public StringValue? StaffMember { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs new file mode 100644 index 000000000..36cec2d41 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppResourceEquipment : Entity + { + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="Comment", EmitDefaultValue=false)] + public StringValue? Comment { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EquipmentID", EmitDefaultValue=false)] + public StringValue? EquipmentID { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs new file mode 100644 index 000000000..0ab20bf0c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppStaff : Entity + { + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DetailLineRef", EmitDefaultValue=false)] + public StringValue? DetailLineRef { get; set; } + + [DataMember(Name="EarningType", EmitDefaultValue=false)] + public StringValue? EarningType { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LineRef", EmitDefaultValue=false)] + public StringValue? LineRef { get; set; } + + [DataMember(Name="PrimaryDriver", EmitDefaultValue=false)] + public BooleanValue? PrimaryDriver { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="RouteDriver", EmitDefaultValue=false)] + public BooleanValue? RouteDriver { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="StaffMember", EmitDefaultValue=false)] + public StringValue? StaffMember { get; set; } + + [DataMember(Name="StaffType", EmitDefaultValue=false)] + public StringValue? StaffType { get; set; } + + [DataMember(Name="TrackTime", EmitDefaultValue=false)] + public BooleanValue? TrackTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs new file mode 100644 index 000000000..07b6957d4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppTaxDetails : Entity + { + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="IncludeinVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeinVATExemptTotal { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs new file mode 100644 index 000000000..b701c4115 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AppTotals : Entity + { + + [DataMember(Name="ActualTotal", EmitDefaultValue=false)] + public DecimalValue? ActualTotal { get; set; } + + [DataMember(Name="AppointmentBillableTotal", EmitDefaultValue=false)] + public DecimalValue? AppointmentBillableTotal { get; set; } + + [DataMember(Name="AppointmentTotal", EmitDefaultValue=false)] + public DecimalValue? AppointmentTotal { get; set; } + + [DataMember(Name="BillableLaborTotal", EmitDefaultValue=false)] + public DecimalValue? BillableLaborTotal { get; set; } + + [DataMember(Name="BillableTotal", EmitDefaultValue=false)] + public DecimalValue? BillableTotal { get; set; } + + [DataMember(Name="EstimatedTotal", EmitDefaultValue=false)] + public DecimalValue? EstimatedTotal { get; set; } + + [DataMember(Name="LineTotal", EmitDefaultValue=false)] + public DecimalValue? LineTotal { get; set; } + + [DataMember(Name="PrepaymentApplied", EmitDefaultValue=false)] + public DecimalValue? PrepaymentApplied { get; set; } + + [DataMember(Name="PrepaymentReceived", EmitDefaultValue=false)] + public DecimalValue? PrepaymentReceived { get; set; } + + [DataMember(Name="PrepaymentRemaining", EmitDefaultValue=false)] + public DecimalValue? PrepaymentRemaining { get; set; } + + [DataMember(Name="ServiceOrderBillableUnpaidBalance", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderBillableUnpaidBalance { get; set; } + + [DataMember(Name="ServiceOrderTotal", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderTotal { get; set; } + + [DataMember(Name="ServiceOrderUnpaidBalance", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderUnpaidBalance { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] + public DecimalValue? VATExemptTotal { get; set; } + + [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] + public DecimalValue? VATTaxableTotal { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs new file mode 100644 index 000000000..c80c9fa00 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ApplicableWage : Entity + { + + [DataMember(Name="BenefitIncreasingApplWage", EmitDefaultValue=false)] + public BenefitIncreasingApplWage? BenefitIncreasingApplWage { get; set; } + + [DataMember(Name="DeductionsDecreasingApplWage", EmitDefaultValue=false)] + public DeductionDecreasingApplWage? DeductionsDecreasingApplWage { get; set; } + + [DataMember(Name="EarningIncreasingApplWage", EmitDefaultValue=false)] + public EarningIncreasingApplWage? EarningIncreasingApplWage { get; set; } + + [DataMember(Name="EmployeeTaxesDecreasingApplWage", EmitDefaultValue=false)] + public TaxesDecreasingApplWage? EmployeeTaxesDecreasingApplWage { get; set; } + + [DataMember(Name="EmployerTaxesIncreasingApplWage", EmitDefaultValue=false)] + public EmployerTaxesIncreasingApplWage? EmployerTaxesIncreasingApplWage { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs new file mode 100644 index 000000000..2bef83f0a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs @@ -0,0 +1,169 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Appointment : Entity, ITopLevelEntity + { + + [DataMember(Name="ActualDuration", EmitDefaultValue=false)] + public StringValue? ActualDuration { get; set; } + + [DataMember(Name="ActualEndDate", EmitDefaultValue=false)] + public DateTimeValue? ActualEndDate { get; set; } + + [DataMember(Name="ActualEndTime", EmitDefaultValue=false)] + public DateTimeValue? ActualEndTime { get; set; } + + [DataMember(Name="ActualHandleManually", EmitDefaultValue=false)] + public BooleanValue? ActualHandleManually { get; set; } + + [DataMember(Name="ActualServiceDuration", EmitDefaultValue=false)] + public StringValue? ActualServiceDuration { get; set; } + + [DataMember(Name="ActualStartDate", EmitDefaultValue=false)] + public DateTimeValue? ActualStartDate { get; set; } + + [DataMember(Name="ActualStartTime", EmitDefaultValue=false)] + public DateTimeValue? ActualStartTime { get; set; } + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="AppointmentTotal", EmitDefaultValue=false)] + public DecimalValue? AppointmentTotal { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BranchLocation", EmitDefaultValue=false)] + public StringValue? BranchLocation { get; set; } + + [DataMember(Name="Confirmed", EmitDefaultValue=false)] + public BooleanValue? Confirmed { get; set; } + + [DataMember(Name="CostTotal", EmitDefaultValue=false)] + public DecimalValue? CostTotal { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="DefaultProjectTask", EmitDefaultValue=false)] + public StringValue? DefaultProjectTask { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="EstimatedServiceDuration", EmitDefaultValue=false)] + public StringValue? EstimatedServiceDuration { get; set; } + + [DataMember(Name="FinancialSettings", EmitDefaultValue=false)] + public AppFinancialSettings? FinancialSettings { get; set; } + + [DataMember(Name="Finished", EmitDefaultValue=false)] + public BooleanValue? Finished { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="Logs", EmitDefaultValue=false)] + public List? Logs { get; set; } + + [DataMember(Name="OptimizationResult", EmitDefaultValue=false)] + public StringValue? OptimizationResult { get; set; } + + [DataMember(Name="OtherInformation", EmitDefaultValue=false)] + public AppOtherInformation? OtherInformation { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + [DataMember(Name="Prepayments", EmitDefaultValue=false)] + public List? Prepayments { get; set; } + + [DataMember(Name="Profit", EmitDefaultValue=false)] + public DecimalValue? Profit { get; set; } + + [DataMember(Name="Profitability", EmitDefaultValue=false)] + public List? Profitability { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ResourceEquipment", EmitDefaultValue=false)] + public List? ResourceEquipment { get; set; } + + [DataMember(Name="ScheduledDuration", EmitDefaultValue=false)] + public StringValue? ScheduledDuration { get; set; } + + [DataMember(Name="ScheduledEndDate", EmitDefaultValue=false)] + public DateTimeValue? ScheduledEndDate { get; set; } + + [DataMember(Name="ScheduledEndTime", EmitDefaultValue=false)] + public DateTimeValue? ScheduledEndTime { get; set; } + + [DataMember(Name="ScheduledHandleManually", EmitDefaultValue=false)] + public BooleanValue? ScheduledHandleManually { get; set; } + + [DataMember(Name="ScheduledStartDate", EmitDefaultValue=false)] + public DateTimeValue? ScheduledStartDate { get; set; } + + [DataMember(Name="ScheduledStartTime", EmitDefaultValue=false)] + public DateTimeValue? ScheduledStartTime { get; set; } + + [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] + public StringValue? ServiceOrderNbr { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="Staff", EmitDefaultValue=false)] + public List? Staff { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Totals", EmitDefaultValue=false)] + public AppTotals? Totals { get; set; } + + [DataMember(Name="UnreachedCustomer", EmitDefaultValue=false)] + public BooleanValue? UnreachedCustomer { get; set; } + + [DataMember(Name="ValidatedbyDispatcher", EmitDefaultValue=false)] + public BooleanValue? ValidatedbyDispatcher { get; set; } + + [DataMember(Name="WaitingforPurchasedItems", EmitDefaultValue=false)] + public BooleanValue? WaitingforPurchasedItems { get; set; } + + [DataMember(Name="WorkflowStage", EmitDefaultValue=false)] + public StringValue? WorkflowStage { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs new file mode 100644 index 000000000..abe5c5867 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Approval : Entity + { + + [DataMember(Name="ApprovedBy", EmitDefaultValue=false)] + public StringValue? ApprovedBy { get; set; } + + [DataMember(Name="ApprovedByName", EmitDefaultValue=false)] + public StringValue? ApprovedByName { get; set; } + + [DataMember(Name="Approver", EmitDefaultValue=false)] + public StringValue? Approver { get; set; } + + [DataMember(Name="ApproverName", EmitDefaultValue=false)] + public StringValue? ApproverName { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs new file mode 100644 index 000000000..9880afda3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Attribute : Entity + { + + [DataMember(Name="AttributeName", EmitDefaultValue=false)] + public StringValue? AttributeName { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs new file mode 100644 index 000000000..cdec08a35 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AttributeDefinition : Entity, ITopLevelEntity + { + + [DataMember(Name="AttributeID", EmitDefaultValue=false)] + public StringValue? AttributeID { get; set; } + + [DataMember(Name="ControlType", EmitDefaultValue=false)] + public StringValue? ControlType { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EntryMask", EmitDefaultValue=false)] + public StringValue? EntryMask { get; set; } + + [DataMember(Name="Internal", EmitDefaultValue=false)] + public BooleanValue? Internal { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="RegExp", EmitDefaultValue=false)] + public StringValue? RegExp { get; set; } + + [DataMember(Name="Values", EmitDefaultValue=false)] + public List? Values { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs new file mode 100644 index 000000000..e990a66fa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AttributeDefinitionValue : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Disabled", EmitDefaultValue=false)] + public BooleanValue? Disabled { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public ShortValue? SortOrder { get; set; } + + [DataMember(Name="ValueID", EmitDefaultValue=false)] + public StringValue? ValueID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs new file mode 100644 index 000000000..dcb432690 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class AttributeValue : Entity + { + + [DataMember(Name="AttributeID", EmitDefaultValue=false)] + public StringValue? AttributeID { get; set; } + + [DataMember(Name="AttributeDescription", EmitDefaultValue=false)] + public StringValue? AttributeDescription { get; set; } + + [DataMember(Name="RefNoteID", EmitDefaultValue=false)] + public GuidValue? RefNoteID { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + [DataMember(Name="ValueDescription", EmitDefaultValue=false)] + public StringValue? ValueDescription { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs new file mode 100644 index 000000000..f3645034e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BCRoleAssignment : Entity + { + + [DataMember(Name="RoleAssignmentID", EmitDefaultValue=false)] + public IntValue? RoleAssignmentID { get; set; } + + [DataMember(Name="BAccountID", EmitDefaultValue=false)] + public IntValue? BAccountID { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="LocationCD", EmitDefaultValue=false)] + public StringValue? LocationCD { get; set; } + + [DataMember(Name="Role", EmitDefaultValue=false)] + public StringValue? Role { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs new file mode 100644 index 000000000..f5ea5127e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BatchDeductionOrBenefitDetail : Entity + { + + [DataMember(Name="BatchNumber", EmitDefaultValue=false)] + public StringValue? BatchNumber { get; set; } + + [DataMember(Name="BenefitAmount", EmitDefaultValue=false)] + public DecimalValue? BenefitAmount { get; set; } + + [DataMember(Name="BenefitCalculationMethod", EmitDefaultValue=false)] + public StringValue? BenefitCalculationMethod { get; set; } + + [DataMember(Name="BenefitPercent", EmitDefaultValue=false)] + public DecimalValue? BenefitPercent { get; set; } + + [DataMember(Name="ContributionType", EmitDefaultValue=false)] + public StringValue? ContributionType { get; set; } + + [DataMember(Name="DeductionAmount", EmitDefaultValue=false)] + public DecimalValue? DeductionAmount { get; set; } + + [DataMember(Name="DeductionCalculationMethod", EmitDefaultValue=false)] + public StringValue? DeductionCalculationMethod { get; set; } + + [DataMember(Name="DeductionCode", EmitDefaultValue=false)] + public StringValue? DeductionCode { get; set; } + + [DataMember(Name="DeductionPercent", EmitDefaultValue=false)] + public DecimalValue? DeductionPercent { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Enabled", EmitDefaultValue=false)] + public BooleanValue? Enabled { get; set; } + + [DataMember(Name="IsGarnishment", EmitDefaultValue=false)] + public BooleanValue? IsGarnishment { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs new file mode 100644 index 000000000..95a5c06d7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs @@ -0,0 +1,99 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BatchEarningDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="AllowCopy", EmitDefaultValue=false)] + public BooleanValue? AllowCopy { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] + public BooleanValue? CertifiedJob { get; set; } + + [DataMember(Name="Code", EmitDefaultValue=false)] + public StringValue? Code { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Employee", EmitDefaultValue=false)] + public StringValue? Employee { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="Hours", EmitDefaultValue=false)] + public DecimalValue? Hours { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="ManualRate", EmitDefaultValue=false)] + public BooleanValue? ManualRate { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="Rate", EmitDefaultValue=false)] + public DecimalValue? Rate { get; set; } + + [DataMember(Name="ExcelRecordID", EmitDefaultValue=false)] + public StringValue? ExcelRecordID { get; set; } + + [DataMember(Name="ShiftCode", EmitDefaultValue=false)] + public StringValue? ShiftCode { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Task", EmitDefaultValue=false)] + public StringValue? Task { get; set; } + + [DataMember(Name="TimeActivity", EmitDefaultValue=false)] + public StringValue? TimeActivity { get; set; } + + [DataMember(Name="UnionLocal", EmitDefaultValue=false)] + public StringValue? UnionLocal { get; set; } + + [DataMember(Name="Units", EmitDefaultValue=false)] + public DecimalValue? Units { get; set; } + + [DataMember(Name="UnitType", EmitDefaultValue=false)] + public StringValue? UnitType { get; set; } + + [DataMember(Name="WCCCode", EmitDefaultValue=false)] + public StringValue? WCCCode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs new file mode 100644 index 000000000..39342dc4e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BatchOvertimeRules : Entity + { + + [DataMember(Name="ApplyOvertimeRulesfortheDocument", EmitDefaultValue=false)] + public BooleanValue? ApplyOvertimeRulesfortheDocument { get; set; } + + [DataMember(Name="OvertimeRulesDetails", EmitDefaultValue=false)] + public List? OvertimeRulesDetails { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs new file mode 100644 index 000000000..d89bf2cf9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BatchOvertimeRulesDetail : Entity + { + + [DataMember(Name="DayofWeek", EmitDefaultValue=false)] + public StringValue? DayofWeek { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DisbursingEarningType", EmitDefaultValue=false)] + public StringValue? DisbursingEarningType { get; set; } + + [DataMember(Name="Enabled", EmitDefaultValue=false)] + public BooleanValue? Enabled { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Multiplier", EmitDefaultValue=false)] + public DecimalValue? Multiplier { get; set; } + + [DataMember(Name="OvertimeRule", EmitDefaultValue=false)] + public StringValue? OvertimeRule { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="ThresholdforOvertimehours", EmitDefaultValue=false)] + public DecimalValue? ThresholdforOvertimehours { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UnionLocal", EmitDefaultValue=false)] + public StringValue? UnionLocal { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs new file mode 100644 index 000000000..df83bf458 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BenefitIncreasingApplWage : Entity + { + + [DataMember(Name="BenefitIncreasingApplWageDetails", EmitDefaultValue=false)] + public List? BenefitIncreasingApplWageDetails { get; set; } + + [DataMember(Name="InclusionType", EmitDefaultValue=false)] + public StringValue? InclusionType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs new file mode 100644 index 000000000..53744f19b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BenefitIncreasingApplWageDetail : Entity + { + + [DataMember(Name="BenefitCode", EmitDefaultValue=false)] + public StringValue? BenefitCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs new file mode 100644 index 000000000..6f22a1d67 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BigCommerceStores : Entity, ITopLevelEntity + { + + [DataMember(Name="AccessToken", EmitDefaultValue=false)] + public StringValue? AccessToken { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="APIPath", EmitDefaultValue=false)] + public StringValue? APIPath { get; set; } + + [DataMember(Name="ClientID", EmitDefaultValue=false)] + public StringValue? ClientID { get; set; } + + [DataMember(Name="Connector", EmitDefaultValue=false)] + public StringValue? Connector { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="StoreAdminPath", EmitDefaultValue=false)] + public StringValue? StoreAdminPath { get; set; } + + [DataMember(Name="StoreName", EmitDefaultValue=false)] + public StringValue? StoreName { get; set; } + + [DataMember(Name="WebDAVPassword", EmitDefaultValue=false)] + public StringValue? WebDAVPassword { get; set; } + + [DataMember(Name="WebDAVPath", EmitDefaultValue=false)] + public StringValue? WebDAVPath { get; set; } + + [DataMember(Name="WebDAVUsername", EmitDefaultValue=false)] + public StringValue? WebDAVUsername { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs new file mode 100644 index 000000000..f38e822e8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Bill : Entity, ITopLevelEntity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Applications", EmitDefaultValue=false)] + public List? Applications { get; set; } + + [DataMember(Name="ApprovedForPayment", EmitDefaultValue=false)] + public BooleanValue? ApprovedForPayment { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + [DataMember(Name="VendorRef", EmitDefaultValue=false)] + public StringValue? VendorRef { get; set; } + + [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] + public BooleanValue? IsTaxValid { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs new file mode 100644 index 000000000..c53425f3b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BillApplicationDetail : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs new file mode 100644 index 000000000..4d7bf0351 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs @@ -0,0 +1,87 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BillDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] + public BooleanValue? CalculateDiscountsOnImport { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] + public DecimalValue? ExtendedCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="NonBillable", EmitDefaultValue=false)] + public BooleanValue? NonBillable { get; set; } + + [DataMember(Name="POLine", EmitDefaultValue=false)] + public IntValue? POLine { get; set; } + + [DataMember(Name="POOrderNbr", EmitDefaultValue=false)] + public StringValue? POOrderNbr { get; set; } + + [DataMember(Name="POOrderType", EmitDefaultValue=false)] + public StringValue? POOrderType { get; set; } + + [DataMember(Name="POReceiptLine", EmitDefaultValue=false)] + public IntValue? POReceiptLine { get; set; } + + [DataMember(Name="POReceiptType", EmitDefaultValue=false)] + public StringValue? POReceiptType { get; set; } + + [DataMember(Name="POReceiptNbr", EmitDefaultValue=false)] + public StringValue? POReceiptNbr { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs new file mode 100644 index 000000000..dbdfc83b0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BillTaxDetail : Entity + { + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs new file mode 100644 index 000000000..e3c3148db --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BillToSettings : Entity + { + + [DataMember(Name="BillToAddress", EmitDefaultValue=false)] + public Address? BillToAddress { get; set; } + + [DataMember(Name="BillToAddressOverride", EmitDefaultValue=false)] + public BooleanValue? BillToAddressOverride { get; set; } + + [DataMember(Name="BillToContact", EmitDefaultValue=false)] + public DocContact? BillToContact { get; set; } + + [DataMember(Name="BillToContactOverride", EmitDefaultValue=false)] + public BooleanValue? BillToContactOverride { get; set; } + + [DataMember(Name="CustomerLocation", EmitDefaultValue=false)] + public StringValue? CustomerLocation { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs new file mode 100644 index 000000000..ba948bb28 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BoxStockItem : Entity + { + + [DataMember(Name="BoxID", EmitDefaultValue=false)] + public StringValue? BoxID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="MaxQty", EmitDefaultValue=false)] + public DecimalValue? MaxQty { get; set; } + + [DataMember(Name="MaxVolume", EmitDefaultValue=false)] + public DecimalValue? MaxVolume { get; set; } + + [DataMember(Name="MaxWeight", EmitDefaultValue=false)] + public DecimalValue? MaxWeight { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs new file mode 100644 index 000000000..399cb1be4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Budget : Entity, ITopLevelEntity + { + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ComparetoBranch", EmitDefaultValue=false)] + public StringValue? ComparetoBranch { get; set; } + + [DataMember(Name="ComparetoLedger", EmitDefaultValue=false)] + public StringValue? ComparetoLedger { get; set; } + + [DataMember(Name="ComparetoYear", EmitDefaultValue=false)] + public StringValue? ComparetoYear { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="FinancialYear", EmitDefaultValue=false)] + public StringValue? FinancialYear { get; set; } + + [DataMember(Name="Ledger", EmitDefaultValue=false)] + public StringValue? Ledger { get; set; } + + [DataMember(Name="SubaccountFilter", EmitDefaultValue=false)] + public StringValue? SubaccountFilter { get; set; } + + [DataMember(Name="TreeNodeFilter", EmitDefaultValue=false)] + public StringValue? TreeNodeFilter { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs new file mode 100644 index 000000000..2f963022d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BudgetDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CreatedBy", EmitDefaultValue=false)] + public StringValue? CreatedBy { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DistributedAmount", EmitDefaultValue=false)] + public DecimalValue? DistributedAmount { get; set; } + + [DataMember(Name="FinancialYear", EmitDefaultValue=false)] + public StringValue? FinancialYear { get; set; } + + [DataMember(Name="GroupID", EmitDefaultValue=false)] + public GuidValue? GroupID { get; set; } + + [DataMember(Name="LastModifiedBy", EmitDefaultValue=false)] + public StringValue? LastModifiedBy { get; set; } + + [DataMember(Name="LedgerID", EmitDefaultValue=false)] + public StringValue? LedgerID { get; set; } + + [DataMember(Name="Node", EmitDefaultValue=false)] + public BooleanValue? Node { get; set; } + + [DataMember(Name="Period01", EmitDefaultValue=false)] + public DecimalValue? Period01 { get; set; } + + [DataMember(Name="Period02", EmitDefaultValue=false)] + public DecimalValue? Period02 { get; set; } + + [DataMember(Name="Period03", EmitDefaultValue=false)] + public DecimalValue? Period03 { get; set; } + + [DataMember(Name="Period04", EmitDefaultValue=false)] + public DecimalValue? Period04 { get; set; } + + [DataMember(Name="Period05", EmitDefaultValue=false)] + public DecimalValue? Period05 { get; set; } + + [DataMember(Name="Period06", EmitDefaultValue=false)] + public DecimalValue? Period06 { get; set; } + + [DataMember(Name="Period07", EmitDefaultValue=false)] + public DecimalValue? Period07 { get; set; } + + [DataMember(Name="Period08", EmitDefaultValue=false)] + public DecimalValue? Period08 { get; set; } + + [DataMember(Name="Period09", EmitDefaultValue=false)] + public DecimalValue? Period09 { get; set; } + + [DataMember(Name="Period10", EmitDefaultValue=false)] + public DecimalValue? Period10 { get; set; } + + [DataMember(Name="Period11", EmitDefaultValue=false)] + public DecimalValue? Period11 { get; set; } + + [DataMember(Name="Period12", EmitDefaultValue=false)] + public DecimalValue? Period12 { get; set; } + + [DataMember(Name="Period13", EmitDefaultValue=false)] + public DecimalValue? Period13 { get; set; } + + [DataMember(Name="Released", EmitDefaultValue=false)] + public BooleanValue? Released { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs new file mode 100644 index 000000000..c3291c755 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs @@ -0,0 +1,142 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccount : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountRef", EmitDefaultValue=false)] + public StringValue? AccountRef { get; set; } + + [DataMember(Name="Activities", EmitDefaultValue=false)] + public List? Activities { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + + [DataMember(Name="Campaigns", EmitDefaultValue=false)] + public List? Campaigns { get; set; } + + [DataMember(Name="Cases", EmitDefaultValue=false)] + public List? Cases { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="Contacts", EmitDefaultValue=false)] + public List? Contacts { get; set; } + + [DataMember(Name="Contracts", EmitDefaultValue=false)] + public List? Contracts { get; set; } + + [DataMember(Name="DefaultLocationSettings", EmitDefaultValue=false)] + public BusinessAccountDefaultLocationSetting? DefaultLocationSettings { get; set; } + + [DataMember(Name="Duplicate", EmitDefaultValue=false)] + public StringValue? Duplicate { get; set; } + + [DataMember(Name="Duplicates", EmitDefaultValue=false)] + public List? Duplicates { get; set; } + + [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastIncomingActivity { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastOutgoingActivity { get; set; } + + [DataMember(Name="Locations", EmitDefaultValue=false)] + public List? Locations { get; set; } + + [DataMember(Name="MainAddress", EmitDefaultValue=false)] + public Address? MainAddress { get; set; } + + [DataMember(Name="MainAddressValidated", EmitDefaultValue=false)] + public BooleanValue? MainAddressValidated { get; set; } + + [DataMember(Name="MainContact", EmitDefaultValue=false)] + public BusinessAccountMainContact? MainContact { get; set; } + + [DataMember(Name="MarketingLists", EmitDefaultValue=false)] + public List? MarketingLists { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="Opportunities", EmitDefaultValue=false)] + public List? Opportunities { get; set; } + + [DataMember(Name="Orders", EmitDefaultValue=false)] + public List? Orders { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] + public StringValue? OwnerEmployeeName { get; set; } + + [DataMember(Name="ParentAccount", EmitDefaultValue=false)] + public StringValue? ParentAccount { get; set; } + + [DataMember(Name="PrimaryContact", EmitDefaultValue=false)] + public Contact? PrimaryContact { get; set; } + + [DataMember(Name="Relations", EmitDefaultValue=false)] + public List? Relations { get; set; } + + [DataMember(Name="ShippingAddress", EmitDefaultValue=false)] + public Address? ShippingAddress { get; set; } + + [DataMember(Name="ShippingAddressOverride", EmitDefaultValue=false)] + public BooleanValue? ShippingAddressOverride { get; set; } + + [DataMember(Name="ShippingAddressValidated", EmitDefaultValue=false)] + public BooleanValue? ShippingAddressValidated { get; set; } + + [DataMember(Name="ShippingContact", EmitDefaultValue=false)] + public BusinessAccountShippingContact? ShippingContact { get; set; } + + [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] + public StringValue? SourceCampaign { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] + public StringValue? WorkgroupDescription { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] + public BooleanValue? EnableCurrencyOverride { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs new file mode 100644 index 000000000..532d9be21 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountCaseDetail : Entity + { + + [DataMember(Name="CaseID", EmitDefaultValue=false)] + public StringValue? CaseID { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="ClosingDate", EmitDefaultValue=false)] + public DateTimeValue? ClosingDate { get; set; } + + [DataMember(Name="Contract", EmitDefaultValue=false)] + public StringValue? Contract { get; set; } + + [DataMember(Name="DateReported", EmitDefaultValue=false)] + public DateTimeValue? DateReported { get; set; } + + [DataMember(Name="Estimation", EmitDefaultValue=false)] + public StringValue? Estimation { get; set; } + + [DataMember(Name="InitialResponse", EmitDefaultValue=false)] + public StringValue? InitialResponse { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + + [DataMember(Name="Severity", EmitDefaultValue=false)] + public StringValue? Severity { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs new file mode 100644 index 000000000..7a7b55781 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountClassAttributeDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AttributeID", EmitDefaultValue=false)] + public StringValue? AttributeID { get; set; } + + [DataMember(Name="DefaultValue", EmitDefaultValue=false)] + public StringValue? DefaultValue { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public ShortValue? SortOrder { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs new file mode 100644 index 000000000..0382bdd0d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountContact : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="DisplayName", EmitDefaultValue=false)] + public StringValue? DisplayName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs new file mode 100644 index 000000000..59adf6dc3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountContract : Entity + { + + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + + [DataMember(Name="ContractID", EmitDefaultValue=false)] + public StringValue? ContractID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs new file mode 100644 index 000000000..e7c727728 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountDefaultLocationSetting : Entity + { + + [DataMember(Name="FOBPoint", EmitDefaultValue=false)] + public StringValue? FOBPoint { get; set; } + + [DataMember(Name="Insurance", EmitDefaultValue=false)] + public BooleanValue? Insurance { get; set; } + + [DataMember(Name="LeadTimeInDays", EmitDefaultValue=false)] + public ShortValue? LeadTimeInDays { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + [DataMember(Name="OrderPriority", EmitDefaultValue=false)] + public ShortValue? OrderPriority { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] + public BooleanValue? ResidentialDelivery { get; set; } + + [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] + public BooleanValue? SaturdayDelivery { get; set; } + + [DataMember(Name="ShippingBranch", EmitDefaultValue=false)] + public StringValue? ShippingBranch { get; set; } + + [DataMember(Name="ShippingRule", EmitDefaultValue=false)] + public StringValue? ShippingRule { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShippingZone", EmitDefaultValue=false)] + public StringValue? ShippingZone { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] + public StringValue? TaxRegistrationID { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs new file mode 100644 index 000000000..d84a04a14 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountLocation : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs new file mode 100644 index 000000000..510a01b00 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountMainContact : Entity + { + + [DataMember(Name="Attention", EmitDefaultValue=false)] + public StringValue? Attention { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Fax", EmitDefaultValue=false)] + public StringValue? Fax { get; set; } + + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + + [DataMember(Name="LanguageOrLocale", EmitDefaultValue=false)] + public StringValue? LanguageOrLocale { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + + [DataMember(Name="Web", EmitDefaultValue=false)] + public StringValue? Web { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs new file mode 100644 index 000000000..5f1667132 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountOpportunityDetail : Entity + { + + [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] + public StringValue? BusinessAccountID { get; set; } + + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="DisplayName", EmitDefaultValue=false)] + public StringValue? DisplayName { get; set; } + + [DataMember(Name="Estimation", EmitDefaultValue=false)] + public DateTimeValue? Estimation { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Probability", EmitDefaultValue=false)] + public IntValue? Probability { get; set; } + + [DataMember(Name="Stage", EmitDefaultValue=false)] + public StringValue? Stage { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="Total", EmitDefaultValue=false)] + public DecimalValue? Total { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs new file mode 100644 index 000000000..b9e8dd14a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountOrder : Entity + { + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="OrderedQty", EmitDefaultValue=false)] + public DecimalValue? OrderedQty { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderTotal", EmitDefaultValue=false)] + public DecimalValue? OrderTotal { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="OrderVolume", EmitDefaultValue=false)] + public DecimalValue? OrderVolume { get; set; } + + [DataMember(Name="OrderWeight", EmitDefaultValue=false)] + public DecimalValue? OrderWeight { get; set; } + + [DataMember(Name="RequestedOn", EmitDefaultValue=false)] + public DateTimeValue? RequestedOn { get; set; } + + [DataMember(Name="ScheduledShipment", EmitDefaultValue=false)] + public DateTimeValue? ScheduledShipment { get; set; } + + [DataMember(Name="ShippingZone", EmitDefaultValue=false)] + public StringValue? ShippingZone { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs new file mode 100644 index 000000000..ce5fb3e60 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountPaymentInstructionDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public IntValue? LocationID { get; set; } + + [DataMember(Name="PaymentInstructionsID", EmitDefaultValue=false)] + public StringValue? PaymentInstructionsID { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs new file mode 100644 index 000000000..767a8d19f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class BusinessAccountShippingContact : Entity + { + + [DataMember(Name="Attention", EmitDefaultValue=false)] + public StringValue? Attention { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Fax", EmitDefaultValue=false)] + public StringValue? Fax { get; set; } + + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs new file mode 100644 index 000000000..75648b2c3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs @@ -0,0 +1,102 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CalendarSettings : Entity + { + + [DataMember(Name="Friday", EmitDefaultValue=false)] + public BooleanValue? Friday { get; set; } + + [DataMember(Name="FridayEndTime", EmitDefaultValue=false)] + public DateTimeValue? FridayEndTime { get; set; } + + [DataMember(Name="FridayStartTime", EmitDefaultValue=false)] + public DateTimeValue? FridayStartTime { get; set; } + + [DataMember(Name="FriUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? FriUnpaidBreakTime { get; set; } + + [DataMember(Name="Monday", EmitDefaultValue=false)] + public BooleanValue? Monday { get; set; } + + [DataMember(Name="MondayEndTime", EmitDefaultValue=false)] + public DateTimeValue? MondayEndTime { get; set; } + + [DataMember(Name="MondayStartTime", EmitDefaultValue=false)] + public DateTimeValue? MondayStartTime { get; set; } + + [DataMember(Name="MonUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? MonUnpaidBreakTime { get; set; } + + [DataMember(Name="SatUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? SatUnpaidBreakTime { get; set; } + + [DataMember(Name="Saturday", EmitDefaultValue=false)] + public BooleanValue? Saturday { get; set; } + + [DataMember(Name="SaturdayEndTime", EmitDefaultValue=false)] + public DateTimeValue? SaturdayEndTime { get; set; } + + [DataMember(Name="SaturdayStartTime", EmitDefaultValue=false)] + public DateTimeValue? SaturdayStartTime { get; set; } + + [DataMember(Name="Sunday", EmitDefaultValue=false)] + public BooleanValue? Sunday { get; set; } + + [DataMember(Name="SundayEndTime", EmitDefaultValue=false)] + public DateTimeValue? SundayEndTime { get; set; } + + [DataMember(Name="SundayStartTime", EmitDefaultValue=false)] + public DateTimeValue? SundayStartTime { get; set; } + + [DataMember(Name="SunUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? SunUnpaidBreakTime { get; set; } + + [DataMember(Name="Thursday", EmitDefaultValue=false)] + public BooleanValue? Thursday { get; set; } + + [DataMember(Name="ThursdayEndTime", EmitDefaultValue=false)] + public DateTimeValue? ThursdayEndTime { get; set; } + + [DataMember(Name="ThursdayStartTime", EmitDefaultValue=false)] + public DateTimeValue? ThursdayStartTime { get; set; } + + [DataMember(Name="ThuUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? ThuUnpaidBreakTime { get; set; } + + [DataMember(Name="Tuesday", EmitDefaultValue=false)] + public BooleanValue? Tuesday { get; set; } + + [DataMember(Name="TuesdayEndTime", EmitDefaultValue=false)] + public DateTimeValue? TuesdayEndTime { get; set; } + + [DataMember(Name="TuesdayStartTime", EmitDefaultValue=false)] + public DateTimeValue? TuesdayStartTime { get; set; } + + [DataMember(Name="TueUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? TueUnpaidBreakTime { get; set; } + + [DataMember(Name="Wednesday", EmitDefaultValue=false)] + public BooleanValue? Wednesday { get; set; } + + [DataMember(Name="WednesdayEndTime", EmitDefaultValue=false)] + public DateTimeValue? WednesdayEndTime { get; set; } + + [DataMember(Name="WednesdayStartTime", EmitDefaultValue=false)] + public DateTimeValue? WednesdayStartTime { get; set; } + + [DataMember(Name="WedUnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? WedUnpaidBreakTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs new file mode 100644 index 000000000..b24d27d40 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CampaignDetail : Entity + { + + [DataMember(Name="CampaignID", EmitDefaultValue=false)] + public StringValue? CampaignID { get; set; } + + [DataMember(Name="CampaignName", EmitDefaultValue=false)] + public StringValue? CampaignName { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="Stage", EmitDefaultValue=false)] + public StringValue? Stage { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs new file mode 100644 index 000000000..2c1c70ed9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Carrier : Entity, ITopLevelEntity + { + + [DataMember(Name="CarrierID", EmitDefaultValue=false)] + public StringValue? CarrierID { get; set; } + + [DataMember(Name="CarrierUnits", EmitDefaultValue=false)] + public StringValue? CarrierUnits { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CustomerAccounts", EmitDefaultValue=false)] + public List? CustomerAccounts { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PlugInParameters", EmitDefaultValue=false)] + public List? PlugInParameters { get; set; } + + [DataMember(Name="PlugInType", EmitDefaultValue=false)] + public StringValue? PlugInType { get; set; } + + [DataMember(Name="Centimeter", EmitDefaultValue=false)] + public StringValue? Centimeter { get; set; } + + [DataMember(Name="Inch", EmitDefaultValue=false)] + public StringValue? Inch { get; set; } + + [DataMember(Name="Kilogram", EmitDefaultValue=false)] + public StringValue? Kilogram { get; set; } + + [DataMember(Name="Pound", EmitDefaultValue=false)] + public StringValue? Pound { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs new file mode 100644 index 000000000..2b4f0ba83 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CarrierCustomerAccount : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CarrierAccount", EmitDefaultValue=false)] + public StringValue? CarrierAccount { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CustomerName", EmitDefaultValue=false)] + public StringValue? CustomerName { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="PostalCode", EmitDefaultValue=false)] + public StringValue? PostalCode { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs new file mode 100644 index 000000000..52974b8ad --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CarrierPluginParameter : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="PluginID", EmitDefaultValue=false)] + public StringValue? PluginID { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs new file mode 100644 index 000000000..443aa0709 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs @@ -0,0 +1,142 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Case : Entity, ITopLevelEntity + { + + [DataMember(Name="ISVSolution", EmitDefaultValue=false)] + public StringValue? ISVSolution { get; set; } + + [DataMember(Name="Estimation", EmitDefaultValue=false)] + public StringValue? Estimation { get; set; } + + [DataMember(Name="Activities", EmitDefaultValue=false)] + public List? Activities { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public IntValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public IntValue? BillableTime { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + + [DataMember(Name="CaseID", EmitDefaultValue=false)] + public StringValue? CaseID { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="ClosingDate", EmitDefaultValue=false)] + public DateTimeValue? ClosingDate { get; set; } + + [DataMember(Name="ContactDisplayName", EmitDefaultValue=false)] + public StringValue? ContactDisplayName { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="Contract", EmitDefaultValue=false)] + public StringValue? Contract { get; set; } + + [DataMember(Name="DateReported", EmitDefaultValue=false)] + public DateTimeValue? DateReported { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InitialResponse", EmitDefaultValue=false)] + public StringValue? InitialResponse { get; set; } + + [DataMember(Name="LastActivityDate", EmitDefaultValue=false)] + public DateTimeValue? LastActivityDate { get; set; } + + [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastIncomingActivity { get; set; } + + [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastOutgoingActivity { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="ManualOverride", EmitDefaultValue=false)] + public BooleanValue? ManualOverride { get; set; } + + [DataMember(Name="OvertimeSpent", EmitDefaultValue=false)] + public StringValue? OvertimeSpent { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] + public StringValue? OwnerEmployeeName { get; set; } + + [DataMember(Name="Priority", EmitDefaultValue=false)] + public StringValue? Priority { get; set; } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + + [DataMember(Name="RelatedCases", EmitDefaultValue=false)] + public List? RelatedCases { get; set; } + + [DataMember(Name="Relations", EmitDefaultValue=false)] + public List? Relations { get; set; } + + [DataMember(Name="ResolutionTime", EmitDefaultValue=false)] + public StringValue? ResolutionTime { get; set; } + + [DataMember(Name="Severity", EmitDefaultValue=false)] + public StringValue? Severity { get; set; } + + [DataMember(Name="SLA", EmitDefaultValue=false)] + public DateTimeValue? SLA { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] + public StringValue? WorkgroupDescription { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs new file mode 100644 index 000000000..943958ee0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CaseDetail : Entity + { + + [DataMember(Name="CaseID", EmitDefaultValue=false)] + public StringValue? CaseID { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="ClosingDate", EmitDefaultValue=false)] + public DateTimeValue? ClosingDate { get; set; } + + [DataMember(Name="DateReported", EmitDefaultValue=false)] + public DateTimeValue? DateReported { get; set; } + + [DataMember(Name="Estimation", EmitDefaultValue=false)] + public StringValue? Estimation { get; set; } + + [DataMember(Name="InitialResponse", EmitDefaultValue=false)] + public StringValue? InitialResponse { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + + [DataMember(Name="Severity", EmitDefaultValue=false)] + public StringValue? Severity { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs new file mode 100644 index 000000000..33a4a8f1d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CaseRelatedCase : Entity + { + + [DataMember(Name="CaseID", EmitDefaultValue=false)] + public StringValue? CaseID { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="ParentCaseID", EmitDefaultValue=false)] + public StringValue? ParentCaseID { get; set; } + + [DataMember(Name="RelationType", EmitDefaultValue=false)] + public StringValue? RelationType { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs new file mode 100644 index 000000000..ef26d79c7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs @@ -0,0 +1,73 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CashSale : Entity, ITopLevelEntity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs new file mode 100644 index 000000000..a2f16b701 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CashSaleDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="ExtendedPrice", EmitDefaultValue=false)] + public DecimalValue? ExtendedPrice { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs new file mode 100644 index 000000000..8ac6c45a3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CategoryStockItem : Entity + { + + [DataMember(Name="CategoryID", EmitDefaultValue=false)] + public IntValue? CategoryID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs new file mode 100644 index 000000000..9dfd63874 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs @@ -0,0 +1,100 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeOrder : Entity, ITopLevelEntity + { + + [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] + public List? ApprovalDetails { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="ChangeDate", EmitDefaultValue=false)] + public DateTimeValue? ChangeDate { get; set; } + + [DataMember(Name="Class", EmitDefaultValue=false)] + public StringValue? Class { get; set; } + + [DataMember(Name="Commitments", EmitDefaultValue=false)] + public List? Commitments { get; set; } + + [DataMember(Name="CommitmentsChangeTotal", EmitDefaultValue=false)] + public DecimalValue? CommitmentsChangeTotal { get; set; } + + [DataMember(Name="CompletionDate", EmitDefaultValue=false)] + public DateTimeValue? CompletionDate { get; set; } + + [DataMember(Name="ContractTimeChangeDays", EmitDefaultValue=false)] + public IntValue? ContractTimeChangeDays { get; set; } + + [DataMember(Name="CostBudget", EmitDefaultValue=false)] + public List? CostBudget { get; set; } + + [DataMember(Name="CostBudgetChangeTotal", EmitDefaultValue=false)] + public DecimalValue? CostBudgetChangeTotal { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DetailedDescription", EmitDefaultValue=false)] + public StringValue? DetailedDescription { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="GrossMargin", EmitDefaultValue=false)] + public DecimalValue? GrossMargin { get; set; } + + [DataMember(Name="GrossMarginAmount", EmitDefaultValue=false)] + public DecimalValue? GrossMarginAmount { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OriginalCORefNbr", EmitDefaultValue=false)] + public StringValue? OriginalCORefNbr { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="RevenueBudget", EmitDefaultValue=false)] + public List? RevenueBudget { get; set; } + + [DataMember(Name="RevenueBudgetChangeTotal", EmitDefaultValue=false)] + public DecimalValue? RevenueBudgetChangeTotal { get; set; } + + [DataMember(Name="RevenueChangeNbr", EmitDefaultValue=false)] + public StringValue? RevenueChangeNbr { get; set; } + + [DataMember(Name="ReverseStatus", EmitDefaultValue=false)] + public StringValue? ReverseStatus { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs new file mode 100644 index 000000000..9035ca0a4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeOrderClass : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="Commitments", EmitDefaultValue=false)] + public BooleanValue? Commitments { get; set; } + + [DataMember(Name="CostBudget", EmitDefaultValue=false)] + public BooleanValue? CostBudget { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="RevenueBudget", EmitDefaultValue=false)] + public BooleanValue? RevenueBudget { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs new file mode 100644 index 000000000..acc6ca2b9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs @@ -0,0 +1,87 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeOrderCommitment : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="AmountinBaseCurrency", EmitDefaultValue=false)] + public DecimalValue? AmountinBaseCurrency { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineAmount", EmitDefaultValue=false)] + public DecimalValue? LineAmount { get; set; } + + [DataMember(Name="LineDescription", EmitDefaultValue=false)] + public StringValue? LineDescription { get; set; } + + [DataMember(Name="OpenQty", EmitDefaultValue=false)] + public DecimalValue? OpenQty { get; set; } + + [DataMember(Name="OrderDate", EmitDefaultValue=false)] + public DateTimeValue? OrderDate { get; set; } + + [DataMember(Name="OrderQty", EmitDefaultValue=false)] + public DecimalValue? OrderQty { get; set; } + + [DataMember(Name="POLineNbr", EmitDefaultValue=false)] + public IntValue? POLineNbr { get; set; } + + [DataMember(Name="PONbr", EmitDefaultValue=false)] + public StringValue? PONbr { get; set; } + + [DataMember(Name="PotentiallyRevisedAmount", EmitDefaultValue=false)] + public DecimalValue? PotentiallyRevisedAmount { get; set; } + + [DataMember(Name="PotentiallyRevisedQty", EmitDefaultValue=false)] + public DecimalValue? PotentiallyRevisedQty { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + [DataMember(Name="POType", EmitDefaultValue=false)] + public StringValue? POType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs new file mode 100644 index 000000000..772a1ac5d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs @@ -0,0 +1,108 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeOrderCostBudget : Entity + { + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="ActualAmount", EmitDefaultValue=false)] + public DecimalValue? ActualAmount { get; set; } + + [DataMember(Name="ActualQty", EmitDefaultValue=false)] + public DecimalValue? ActualQty { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedCOAmount { get; set; } + + [DataMember(Name="CommittedCOQty", EmitDefaultValue=false)] + public DecimalValue? CommittedCOQty { get; set; } + + [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedAmount { get; set; } + + [DataMember(Name="CommittedInvoicedQty", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedQty { get; set; } + + [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenAmount { get; set; } + + [DataMember(Name="CommittedOpenQty", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenQty { get; set; } + + [DataMember(Name="CommittedReceivedQty", EmitDefaultValue=false)] + public DecimalValue? CommittedReceivedQty { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CurrentCommittedCOAmount", EmitDefaultValue=false)] + public DecimalValue? CurrentCommittedCOAmount { get; set; } + + [DataMember(Name="CurrentCommittedCOQty", EmitDefaultValue=false)] + public DecimalValue? CurrentCommittedCOQty { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="OriginalBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? OriginalBudgetedAmount { get; set; } + + [DataMember(Name="OriginalBudgetedQty", EmitDefaultValue=false)] + public DecimalValue? OriginalBudgetedQty { get; set; } + + [DataMember(Name="OtherDraftCOAmount", EmitDefaultValue=false)] + public DecimalValue? OtherDraftCOAmount { get; set; } + + [DataMember(Name="PreviouslyApprovedCOAmount", EmitDefaultValue=false)] + public DecimalValue? PreviouslyApprovedCOAmount { get; set; } + + [DataMember(Name="PreviouslyApprovedCOQty", EmitDefaultValue=false)] + public DecimalValue? PreviouslyApprovedCOQty { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedAmount { get; set; } + + [DataMember(Name="RevisedBudgetedQty", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedQty { get; set; } + + [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedAmount { get; set; } + + [DataMember(Name="RevisedCommittedQty", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedQty { get; set; } + + [DataMember(Name="TotalPotentiallyRevisedAmount", EmitDefaultValue=false)] + public DecimalValue? TotalPotentiallyRevisedAmount { get; set; } + + [DataMember(Name="UnitRate", EmitDefaultValue=false)] + public DecimalValue? UnitRate { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs new file mode 100644 index 000000000..e0a1b5408 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ChangeOrderRevenueBudget : Entity + { + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="OtherDraftCOAmount", EmitDefaultValue=false)] + public DecimalValue? OtherDraftCOAmount { get; set; } + + [DataMember(Name="PreviouslyApprovedCOAmount", EmitDefaultValue=false)] + public DecimalValue? PreviouslyApprovedCOAmount { get; set; } + + [DataMember(Name="PreviouslyApprovedCOQty", EmitDefaultValue=false)] + public DecimalValue? PreviouslyApprovedCOQty { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedAmount { get; set; } + + [DataMember(Name="RevisedBudgetedQty", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedQty { get; set; } + + [DataMember(Name="TotalPotentiallyRevisedAmount", EmitDefaultValue=false)] + public DecimalValue? TotalPotentiallyRevisedAmount { get; set; } + + [DataMember(Name="UnitRate", EmitDefaultValue=false)] + public DecimalValue? UnitRate { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs new file mode 100644 index 000000000..926615b37 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Check : Entity, ITopLevelEntity + { + + [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] + public DateTimeValue? ApplicationDate { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="History", EmitDefaultValue=false)] + public List? History { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] + public DecimalValue? PaymentAmount { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UnappliedBalance", EmitDefaultValue=false)] + public DecimalValue? UnappliedBalance { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs new file mode 100644 index 000000000..1ce680d95 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CheckDetail : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="CashDiscountBalance", EmitDefaultValue=false)] + public DecimalValue? CashDiscountBalance { get; set; } + + [DataMember(Name="DocLineNbr", EmitDefaultValue=false)] + public IntValue? DocLineNbr { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs new file mode 100644 index 000000000..d4122bb76 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CheckHistoryDetail : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="CashDiscountBalance", EmitDefaultValue=false)] + public DecimalValue? CashDiscountBalance { get; set; } + + [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] + public DecimalValue? CashDiscountTaken { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="VendorRef", EmitDefaultValue=false)] + public StringValue? VendorRef { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs new file mode 100644 index 000000000..39341d34c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Commissions : Entity + { + + [DataMember(Name="DefaultSalesperson", EmitDefaultValue=false)] + public StringValue? DefaultSalesperson { get; set; } + + [DataMember(Name="SalesPersons", EmitDefaultValue=false)] + public List? SalesPersons { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs new file mode 100644 index 000000000..3a3c96d4a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompaniesStructure : Entity, ITopLevelEntity + { + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs new file mode 100644 index 000000000..3d579528d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompaniesStructureDetail : Entity + { + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="BranchCountry", EmitDefaultValue=false)] + public StringValue? BranchCountry { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="BranchName", EmitDefaultValue=false)] + public StringValue? BranchName { get; set; } + + [DataMember(Name="BranchStatus", EmitDefaultValue=false)] + public BooleanValue? BranchStatus { get; set; } + + [DataMember(Name="CompanyID", EmitDefaultValue=false)] + public StringValue? CompanyID { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="CompanyStatus", EmitDefaultValue=false)] + public BooleanValue? CompanyStatus { get; set; } + + [DataMember(Name="CompanyType", EmitDefaultValue=false)] + public StringValue? CompanyType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs new file mode 100644 index 000000000..fafa54e03 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompanyFinancialPeriod : Entity, ITopLevelEntity + { + + [DataMember(Name="Company", EmitDefaultValue=false)] + public StringValue? Company { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="FinancialYear", EmitDefaultValue=false)] + public StringValue? FinancialYear { get; set; } + + [DataMember(Name="NbrOfPeriods", EmitDefaultValue=false)] + public ShortValue? NbrOfPeriods { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs new file mode 100644 index 000000000..acd771be0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CompensationDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="EarningCode", EmitDefaultValue=false)] + public StringValue? EarningCode { get; set; } + + [DataMember(Name="EarningDescription", EmitDefaultValue=false)] + public StringValue? EarningDescription { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public StringValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PayRate", EmitDefaultValue=false)] + public DecimalValue? PayRate { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="UnitOfPay", EmitDefaultValue=false)] + public StringValue? UnitOfPay { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs new file mode 100644 index 000000000..522aa36e6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs @@ -0,0 +1,229 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Contact : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Activities", EmitDefaultValue=false)] + public List? Activities { get; set; } + + [DataMember(Name="Address", EmitDefaultValue=false)] + public Address? Address { get; set; } + + [DataMember(Name="OverrideAccountAddress", EmitDefaultValue=false)] + public BooleanValue? OverrideAccountAddress { get; set; } + + [DataMember(Name="AddressValidated", EmitDefaultValue=false)] + public BooleanValue? AddressValidated { get; set; } + + [DataMember(Name="Attention", EmitDefaultValue=false)] + public StringValue? Attention { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="Campaigns", EmitDefaultValue=false)] + public List? Campaigns { get; set; } + + [DataMember(Name="Cases", EmitDefaultValue=false)] + public List? Cases { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="ContactClass", EmitDefaultValue=false)] + public StringValue? ContactClass { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="ContactMethod", EmitDefaultValue=false)] + public StringValue? ContactMethod { get; set; } + + [DataMember(Name="ConvertedBy", EmitDefaultValue=false)] + public StringValue? ConvertedBy { get; set; } + + [DataMember(Name="DateOfBirth", EmitDefaultValue=false)] + public DateTimeValue? DateOfBirth { get; set; } + + [DataMember(Name="DisplayName", EmitDefaultValue=false)] + public StringValue? DisplayName { get; set; } + + [DataMember(Name="DoNotCall", EmitDefaultValue=false)] + public BooleanValue? DoNotCall { get; set; } + + [DataMember(Name="DoNotEmail", EmitDefaultValue=false)] + public BooleanValue? DoNotEmail { get; set; } + + [DataMember(Name="DoNotFax", EmitDefaultValue=false)] + public BooleanValue? DoNotFax { get; set; } + + [DataMember(Name="DoNotMail", EmitDefaultValue=false)] + public BooleanValue? DoNotMail { get; set; } + + [DataMember(Name="Duplicate", EmitDefaultValue=false)] + public StringValue? Duplicate { get; set; } + + [DataMember(Name="DuplicateFound", EmitDefaultValue=false)] + public BooleanValue? DuplicateFound { get; set; } + + [DataMember(Name="Duplicates", EmitDefaultValue=false)] + public List? Duplicates { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Fax", EmitDefaultValue=false)] + public StringValue? Fax { get; set; } + + [DataMember(Name="FaxType", EmitDefaultValue=false)] + public StringValue? FaxType { get; set; } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + + [DataMember(Name="Gender", EmitDefaultValue=false)] + public StringValue? Gender { get; set; } + + [DataMember(Name="Image", EmitDefaultValue=false)] + public StringValue? Image { get; set; } + + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + + [DataMember(Name="LanguageOrLocale", EmitDefaultValue=false)] + public StringValue? LanguageOrLocale { get; set; } + + [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastIncomingActivity { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + + [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastOutgoingActivity { get; set; } + + [DataMember(Name="MaritalStatus", EmitDefaultValue=false)] + public StringValue? MaritalStatus { get; set; } + + [DataMember(Name="MarketingLists", EmitDefaultValue=false)] + public List? MarketingLists { get; set; } + + [DataMember(Name="MiddleName", EmitDefaultValue=false)] + public StringValue? MiddleName { get; set; } + + [DataMember(Name="NoMarketing", EmitDefaultValue=false)] + public BooleanValue? NoMarketing { get; set; } + + [DataMember(Name="NoMassMail", EmitDefaultValue=false)] + public BooleanValue? NoMassMail { get; set; } + + [DataMember(Name="Notifications", EmitDefaultValue=false)] + public List? Notifications { get; set; } + + [DataMember(Name="Opportunities", EmitDefaultValue=false)] + public List? Opportunities { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] + public StringValue? OwnerEmployeeName { get; set; } + + [DataMember(Name="ParentAccount", EmitDefaultValue=false)] + public StringValue? ParentAccount { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + + [DataMember(Name="Phone3", EmitDefaultValue=false)] + public StringValue? Phone3 { get; set; } + + [DataMember(Name="Phone3Type", EmitDefaultValue=false)] + public StringValue? Phone3Type { get; set; } + + [DataMember(Name="QualificationDate", EmitDefaultValue=false)] + public DateTimeValue? QualificationDate { get; set; } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + + [DataMember(Name="Relations", EmitDefaultValue=false)] + public List? Relations { get; set; } + + [DataMember(Name="RoleAssignments", EmitDefaultValue=false)] + public List? RoleAssignments { get; set; } + + [DataMember(Name="Source", EmitDefaultValue=false)] + public StringValue? Source { get; set; } + + [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] + public StringValue? SourceCampaign { get; set; } + + [DataMember(Name="SpouseOrPartnerName", EmitDefaultValue=false)] + public StringValue? SpouseOrPartnerName { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Synchronize", EmitDefaultValue=false)] + public BooleanValue? Synchronize { get; set; } + + [DataMember(Name="Title", EmitDefaultValue=false)] + public StringValue? Title { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UserInfo", EmitDefaultValue=false)] + public ContactUserInfo? UserInfo { get; set; } + + [DataMember(Name="WebSite", EmitDefaultValue=false)] + public StringValue? WebSite { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] + public StringValue? WorkgroupDescription { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="FullName", EmitDefaultValue=false)] + public StringValue? FullName { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs new file mode 100644 index 000000000..50b7ab53a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ContactDuplicateDetail : Entity + { + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] + public StringValue? BusinessAccountName { get; set; } + + [DataMember(Name="BusinessAccountType", EmitDefaultValue=false)] + public StringValue? BusinessAccountType { get; set; } + + [DataMember(Name="DisplayName", EmitDefaultValue=false)] + public StringValue? DisplayName { get; set; } + + [DataMember(Name="Duplicate", EmitDefaultValue=false)] + public StringValue? Duplicate { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="LastModifiedDate", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDate { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs new file mode 100644 index 000000000..c10347aa8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ContactNotification : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Bcc", EmitDefaultValue=false)] + public BooleanValue? Bcc { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Format", EmitDefaultValue=false)] + public StringValue? Format { get; set; } + + [DataMember(Name="MailingID", EmitDefaultValue=false)] + public StringValue? MailingID { get; set; } + + [DataMember(Name="Module", EmitDefaultValue=false)] + public StringValue? Module { get; set; } + + [DataMember(Name="NotificationID", EmitDefaultValue=false)] + public IntValue? NotificationID { get; set; } + + [DataMember(Name="Report", EmitDefaultValue=false)] + public StringValue? Report { get; set; } + + [DataMember(Name="Source", EmitDefaultValue=false)] + public StringValue? Source { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs new file mode 100644 index 000000000..b92743453 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ContactRoles : Entity + { + + [DataMember(Name="RoleDescription", EmitDefaultValue=false)] + public StringValue? RoleDescription { get; set; } + + [DataMember(Name="RoleName", EmitDefaultValue=false)] + public StringValue? RoleName { get; set; } + + [DataMember(Name="Selected", EmitDefaultValue=false)] + public BooleanValue? Selected { get; set; } + + [DataMember(Name="UserType", EmitDefaultValue=false)] + public IntValue? UserType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs new file mode 100644 index 000000000..600cb3250 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ContactUserInfo : Entity + { + + [DataMember(Name="GeneratePassword", EmitDefaultValue=false)] + public BooleanValue? GeneratePassword { get; set; } + + [DataMember(Name="Login", EmitDefaultValue=false)] + public StringValue? Login { get; set; } + + [DataMember(Name="Password", EmitDefaultValue=false)] + public StringValue? Password { get; set; } + + [DataMember(Name="Roles", EmitDefaultValue=false)] + public List? Roles { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="UserType", EmitDefaultValue=false)] + public StringValue? UserType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs new file mode 100644 index 000000000..9fa4d5cb8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ContractUsage : Entity, ITopLevelEntity + { + + [DataMember(Name="BilledTransactions", EmitDefaultValue=false)] + public List? BilledTransactions { get; set; } + + [DataMember(Name="ContractID", EmitDefaultValue=false)] + public StringValue? ContractID { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="UnbilledTransactions", EmitDefaultValue=false)] + public List? UnbilledTransactions { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs new file mode 100644 index 000000000..03ce33052 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ContractUsageTransactionDetail : Entity + { + + [DataMember(Name="BillingDate", EmitDefaultValue=false)] + public DateTimeValue? BillingDate { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CaseID", EmitDefaultValue=false)] + public StringValue? CaseID { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="TransactionID", EmitDefaultValue=false)] + public LongValue? TransactionID { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs new file mode 100644 index 000000000..4a8c7ffd2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CostCode : Entity, ITopLevelEntity + { + + [DataMember(Name="CostCodeID", EmitDefaultValue=false)] + public StringValue? CostCodeID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs new file mode 100644 index 000000000..ce942653a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreditCardProcessingDetail : Entity + { + + [DataMember(Name="TransactionAmount", EmitDefaultValue=false)] + public DecimalValue? TransactionAmount { get; set; } + + [DataMember(Name="TransactionStatus", EmitDefaultValue=false)] + public StringValue? TransactionStatus { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs new file mode 100644 index 000000000..e00a89216 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreditCardTransactionDetail : Entity + { + + [DataMember(Name="TranNbr", EmitDefaultValue=false)] + public StringValue? TranNbr { get; set; } + + [DataMember(Name="TranType", EmitDefaultValue=false)] + public StringValue? TranType { get; set; } + + [DataMember(Name="AuthNbr", EmitDefaultValue=false)] + public StringValue? AuthNbr { get; set; } + + [DataMember(Name="TranDate", EmitDefaultValue=false)] + public DateTimeValue? TranDate { get; set; } + + [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] + public StringValue? ExtProfileId { get; set; } + + [DataMember(Name="NeedValidation", EmitDefaultValue=false)] + public BooleanValue? NeedValidation { get; set; } + + [DataMember(Name="OrigTranNbr", EmitDefaultValue=false)] + public StringValue? OrigTranNbr { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="CardType", EmitDefaultValue=false)] + public StringValue? CardType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs new file mode 100644 index 000000000..c649f4bb3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CreditVerificationRules : Entity + { + + [DataMember(Name="CreditDaysPastDue", EmitDefaultValue=false)] + public ShortValue? CreditDaysPastDue { get; set; } + + [DataMember(Name="CreditLimit", EmitDefaultValue=false)] + public DecimalValue? CreditLimit { get; set; } + + [DataMember(Name="CreditVerification", EmitDefaultValue=false)] + public StringValue? CreditVerification { get; set; } + + [DataMember(Name="FirstDueDate", EmitDefaultValue=false)] + public DateTimeValue? FirstDueDate { get; set; } + + [DataMember(Name="OpenOrdersBalance", EmitDefaultValue=false)] + public DecimalValue? OpenOrdersBalance { get; set; } + + [DataMember(Name="RemainingCreditLimit", EmitDefaultValue=false)] + public DecimalValue? RemainingCreditLimit { get; set; } + + [DataMember(Name="UnreleasedBalance", EmitDefaultValue=false)] + public DecimalValue? UnreleasedBalance { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs new file mode 100644 index 000000000..e34ef3420 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Currency : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencySymbol", EmitDefaultValue=false)] + public StringValue? CurrencySymbol { get; set; } + + [DataMember(Name="DecimalPrecision", EmitDefaultValue=false)] + public ShortValue? DecimalPrecision { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="UseForAccounting", EmitDefaultValue=false)] + public BooleanValue? UseForAccounting { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs new file mode 100644 index 000000000..56fffdbe9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs @@ -0,0 +1,214 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Customer : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountRef", EmitDefaultValue=false)] + public StringValue? AccountRef { get; set; } + + [DataMember(Name="ApplyOverdueCharges", EmitDefaultValue=false)] + public BooleanValue? ApplyOverdueCharges { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="AutoApplyPayments", EmitDefaultValue=false)] + public BooleanValue? AutoApplyPayments { get; set; } + + [DataMember(Name="BAccountID", EmitDefaultValue=false)] + public IntValue? BAccountID { get; set; } + + [DataMember(Name="BillingAddressOverride", EmitDefaultValue=false)] + public BooleanValue? BillingAddressOverride { get; set; } + + [DataMember(Name="BillingContact", EmitDefaultValue=false)] + public Contact? BillingContact { get; set; } + + [DataMember(Name="BillingContactOverride", EmitDefaultValue=false)] + public BooleanValue? BillingContactOverride { get; set; } + + [DataMember(Name="Contacts", EmitDefaultValue=false)] + public List? Contacts { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CreditVerificationRules", EmitDefaultValue=false)] + public CreditVerificationRules? CreditVerificationRules { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRateType", EmitDefaultValue=false)] + public StringValue? CurrencyRateType { get; set; } + + [DataMember(Name="CustomerClass", EmitDefaultValue=false)] + public StringValue? CustomerClass { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CustomerName", EmitDefaultValue=false)] + public StringValue? CustomerName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] + public BooleanValue? EnableCurrencyOverride { get; set; } + + [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] + public BooleanValue? EnableRateOverride { get; set; } + + [DataMember(Name="EnableWriteOffs", EmitDefaultValue=false)] + public BooleanValue? EnableWriteOffs { get; set; } + + [DataMember(Name="FOBPoint", EmitDefaultValue=false)] + public StringValue? FOBPoint { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LeadTimedays", EmitDefaultValue=false)] + public ShortValue? LeadTimedays { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + [DataMember(Name="MainContact", EmitDefaultValue=false)] + public Contact? MainContact { get; set; } + + [DataMember(Name="MultiCurrencyStatements", EmitDefaultValue=false)] + public BooleanValue? MultiCurrencyStatements { get; set; } + + [DataMember(Name="OrderPriority", EmitDefaultValue=false)] + public ShortValue? OrderPriority { get; set; } + + [DataMember(Name="ParentRecord", EmitDefaultValue=false)] + public StringValue? ParentRecord { get; set; } + + [DataMember(Name="PaymentInstructions", EmitDefaultValue=false)] + public List? PaymentInstructions { get; set; } + + [DataMember(Name="PriceClassID", EmitDefaultValue=false)] + public StringValue? PriceClassID { get; set; } + + [DataMember(Name="PrimaryContact", EmitDefaultValue=false)] + public Contact? PrimaryContact { get; set; } + + [DataMember(Name="PrimaryContactID", EmitDefaultValue=false)] + public IntValue? PrimaryContactID { get; set; } + + [DataMember(Name="PrintDunningLetters", EmitDefaultValue=false)] + public BooleanValue? PrintDunningLetters { get; set; } + + [DataMember(Name="PrintInvoices", EmitDefaultValue=false)] + public BooleanValue? PrintInvoices { get; set; } + + [DataMember(Name="PrintStatements", EmitDefaultValue=false)] + public BooleanValue? PrintStatements { get; set; } + + [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] + public BooleanValue? ResidentialDelivery { get; set; } + + [DataMember(Name="Salespersons", EmitDefaultValue=false)] + public List? Salespersons { get; set; } + + [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] + public BooleanValue? SaturdayDelivery { get; set; } + + [DataMember(Name="SendDunningLettersbyEmail", EmitDefaultValue=false)] + public BooleanValue? SendDunningLettersbyEmail { get; set; } + + [DataMember(Name="SendInvoicesbyEmail", EmitDefaultValue=false)] + public BooleanValue? SendInvoicesbyEmail { get; set; } + + [DataMember(Name="SendStatementsbyEmail", EmitDefaultValue=false)] + public BooleanValue? SendStatementsbyEmail { get; set; } + + [DataMember(Name="ShippingAddressOverride", EmitDefaultValue=false)] + public BooleanValue? ShippingAddressOverride { get; set; } + + [DataMember(Name="ShippingBranch", EmitDefaultValue=false)] + public StringValue? ShippingBranch { get; set; } + + [DataMember(Name="ShippingContact", EmitDefaultValue=false)] + public Contact? ShippingContact { get; set; } + + [DataMember(Name="ShippingContactOverride", EmitDefaultValue=false)] + public BooleanValue? ShippingContactOverride { get; set; } + + [DataMember(Name="ShippingRule", EmitDefaultValue=false)] + public StringValue? ShippingRule { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShippingZoneID", EmitDefaultValue=false)] + public StringValue? ShippingZoneID { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="StatementCycleID", EmitDefaultValue=false)] + public StringValue? StatementCycleID { get; set; } + + [DataMember(Name="StatementType", EmitDefaultValue=false)] + public StringValue? StatementType { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] + public StringValue? TaxRegistrationID { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + [DataMember(Name="WriteOffLimit", EmitDefaultValue=false)] + public DecimalValue? WriteOffLimit { get; set; } + + [DataMember(Name="RestrictVisibilityTo", EmitDefaultValue=false)] + public StringValue? RestrictVisibilityTo { get; set; } + + [DataMember(Name="CreditLimit", EmitDefaultValue=false)] + public DecimalValue? CreditLimit { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] + public StringValue? EntityUsageType { get; set; } + + [DataMember(Name="TaxExemptionNumber", EmitDefaultValue=false)] + public StringValue? TaxExemptionNumber { get; set; } + + [DataMember(Name="IsGuestCustomer", EmitDefaultValue=false)] + public BooleanValue? IsGuestCustomer { get; set; } + + [DataMember(Name="CustomerCategory", EmitDefaultValue=false)] + public StringValue? CustomerCategory { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs new file mode 100644 index 000000000..37da11e26 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs @@ -0,0 +1,205 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerClass : Entity, ITopLevelEntity + { + + [DataMember(Name="ApplyOverdueCharges", EmitDefaultValue=false)] + public BooleanValue? ApplyOverdueCharges { get; set; } + + [DataMember(Name="ARAccount", EmitDefaultValue=false)] + public StringValue? ARAccount { get; set; } + + [DataMember(Name="ARSubaccount", EmitDefaultValue=false)] + public StringValue? ARSubaccount { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="AutoApplyPayments", EmitDefaultValue=false)] + public BooleanValue? AutoApplyPayments { get; set; } + + [DataMember(Name="CashDiscountAccount", EmitDefaultValue=false)] + public StringValue? CashDiscountAccount { get; set; } + + [DataMember(Name="CashDiscountSubaccount", EmitDefaultValue=false)] + public StringValue? CashDiscountSubaccount { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="COGSAccount", EmitDefaultValue=false)] + public StringValue? COGSAccount { get; set; } + + [DataMember(Name="COGSSubaccount", EmitDefaultValue=false)] + public StringValue? COGSSubaccount { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CreditDaysPastDue", EmitDefaultValue=false)] + public ShortValue? CreditDaysPastDue { get; set; } + + [DataMember(Name="CreditLimit", EmitDefaultValue=false)] + public DecimalValue? CreditLimit { get; set; } + + [DataMember(Name="CreditVerification", EmitDefaultValue=false)] + public StringValue? CreditVerification { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRateType", EmitDefaultValue=false)] + public StringValue? CurrencyRateType { get; set; } + + [DataMember(Name="DefaultLocationIDfromBranch", EmitDefaultValue=false)] + public BooleanValue? DefaultLocationIDfromBranch { get; set; } + + [DataMember(Name="DefaultRestrictionGroup", EmitDefaultValue=false)] + public StringValue? DefaultRestrictionGroup { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountAccount", EmitDefaultValue=false)] + public StringValue? DiscountAccount { get; set; } + + [DataMember(Name="DiscountSubaccount", EmitDefaultValue=false)] + public StringValue? DiscountSubaccount { get; set; } + + [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] + public BooleanValue? EnableCurrencyOverride { get; set; } + + [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] + public BooleanValue? EnableRateOverride { get; set; } + + [DataMember(Name="EnableWriteOffs", EmitDefaultValue=false)] + public BooleanValue? EnableWriteOffs { get; set; } + + [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] + public StringValue? EntityUsageType { get; set; } + + [DataMember(Name="FreightAccount", EmitDefaultValue=false)] + public StringValue? FreightAccount { get; set; } + + [DataMember(Name="FreightSubaccount", EmitDefaultValue=false)] + public StringValue? FreightSubaccount { get; set; } + + [DataMember(Name="GroupDocumentDiscountLimit", EmitDefaultValue=false)] + public DecimalValue? GroupDocumentDiscountLimit { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="MiscAccount", EmitDefaultValue=false)] + public StringValue? MiscAccount { get; set; } + + [DataMember(Name="MiscSubaccount", EmitDefaultValue=false)] + public StringValue? MiscSubaccount { get; set; } + + [DataMember(Name="MultiCurrencyStatements", EmitDefaultValue=false)] + public BooleanValue? MultiCurrencyStatements { get; set; } + + [DataMember(Name="OverdueChargeID", EmitDefaultValue=false)] + public StringValue? OverdueChargeID { get; set; } + + [DataMember(Name="OverLimitAmount", EmitDefaultValue=false)] + public DecimalValue? OverLimitAmount { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PrepaymentAccount", EmitDefaultValue=false)] + public StringValue? PrepaymentAccount { get; set; } + + [DataMember(Name="PrepaymentSubaccount", EmitDefaultValue=false)] + public StringValue? PrepaymentSubaccount { get; set; } + + [DataMember(Name="PrintDunningLetters", EmitDefaultValue=false)] + public BooleanValue? PrintDunningLetters { get; set; } + + [DataMember(Name="PrintInvoices", EmitDefaultValue=false)] + public BooleanValue? PrintInvoices { get; set; } + + [DataMember(Name="PrintStatements", EmitDefaultValue=false)] + public BooleanValue? PrintStatements { get; set; } + + [DataMember(Name="RequireEntityUsageType", EmitDefaultValue=false)] + public BooleanValue? RequireEntityUsageType { get; set; } + + [DataMember(Name="RequireTaxZone", EmitDefaultValue=false)] + public BooleanValue? RequireTaxZone { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalespersonID", EmitDefaultValue=false)] + public StringValue? SalespersonID { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="SendDunningLettersbyEmail", EmitDefaultValue=false)] + public BooleanValue? SendDunningLettersbyEmail { get; set; } + + [DataMember(Name="SendInvoicesbyEmail", EmitDefaultValue=false)] + public BooleanValue? SendInvoicesbyEmail { get; set; } + + [DataMember(Name="SendStatementsByEmail", EmitDefaultValue=false)] + public BooleanValue? SendStatementsByEmail { get; set; } + + [DataMember(Name="ShippingRule", EmitDefaultValue=false)] + public StringValue? ShippingRule { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="StatementCycleID", EmitDefaultValue=false)] + public StringValue? StatementCycleID { get; set; } + + [DataMember(Name="StatementType", EmitDefaultValue=false)] + public StringValue? StatementType { get; set; } + + [DataMember(Name="TaxZoneID", EmitDefaultValue=false)] + public StringValue? TaxZoneID { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="UnrealizedGainAccount", EmitDefaultValue=false)] + public StringValue? UnrealizedGainAccount { get; set; } + + [DataMember(Name="UnrealizedGainSubaccount", EmitDefaultValue=false)] + public StringValue? UnrealizedGainSubaccount { get; set; } + + [DataMember(Name="UnrealizedLossAccount", EmitDefaultValue=false)] + public StringValue? UnrealizedLossAccount { get; set; } + + [DataMember(Name="UnrealizedLossSubaccount", EmitDefaultValue=false)] + public StringValue? UnrealizedLossSubaccount { get; set; } + + [DataMember(Name="WriteOffLimit", EmitDefaultValue=false)] + public DecimalValue? WriteOffLimit { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs new file mode 100644 index 000000000..8fa8b6920 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerContact : Entity + { + + [DataMember(Name="Contact", EmitDefaultValue=false)] + public Contact? Contact { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs new file mode 100644 index 000000000..3266dd8b9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerLocation : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AddressOverride", EmitDefaultValue=false)] + public BooleanValue? AddressOverride { get; set; } + + [DataMember(Name="Calendar", EmitDefaultValue=false)] + public StringValue? Calendar { get; set; } + + [DataMember(Name="ContactOverride", EmitDefaultValue=false)] + public BooleanValue? ContactOverride { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="DefaultProject", EmitDefaultValue=false)] + public StringValue? DefaultProject { get; set; } + + [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] + public StringValue? EntityUsageType { get; set; } + + [DataMember(Name="FedExGroundCollect", EmitDefaultValue=false)] + public BooleanValue? FedExGroundCollect { get; set; } + + [DataMember(Name="FOBPoint", EmitDefaultValue=false)] + public StringValue? FOBPoint { get; set; } + + [DataMember(Name="Insurance", EmitDefaultValue=false)] + public BooleanValue? Insurance { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LeadTimeDays", EmitDefaultValue=false)] + public ShortValue? LeadTimeDays { get; set; } + + [DataMember(Name="LocationContact", EmitDefaultValue=false)] + public Contact? LocationContact { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + [DataMember(Name="OrderPriority", EmitDefaultValue=false)] + public ShortValue? OrderPriority { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] + public BooleanValue? ResidentialDelivery { get; set; } + + [DataMember(Name="RoleAssignments", EmitDefaultValue=false)] + public List? RoleAssignments { get; set; } + + [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] + public BooleanValue? SaturdayDelivery { get; set; } + + [DataMember(Name="ShippingBranch", EmitDefaultValue=false)] + public StringValue? ShippingBranch { get; set; } + + [DataMember(Name="ShippingRule", EmitDefaultValue=false)] + public StringValue? ShippingRule { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShippingZone", EmitDefaultValue=false)] + public StringValue? ShippingZone { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxExemptionNbr", EmitDefaultValue=false)] + public StringValue? TaxExemptionNbr { get; set; } + + [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] + public StringValue? TaxRegistrationID { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs new file mode 100644 index 000000000..921e420ab --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerPaymentMethod : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CardAccountNbr", EmitDefaultValue=false)] + public StringValue? CardAccountNbr { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CustomerProfileID", EmitDefaultValue=false)] + public StringValue? CustomerProfileID { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="InstanceID", EmitDefaultValue=false)] + public IntValue? InstanceID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="ProcCenterID", EmitDefaultValue=false)] + public StringValue? ProcCenterID { get; set; } + + [DataMember(Name="CardType", EmitDefaultValue=false)] + public StringValue? CardType { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs new file mode 100644 index 000000000..f98414d21 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerPaymentMethodDetail : Entity + { + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs new file mode 100644 index 000000000..ada99a33e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerPriceClass : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PriceClassID", EmitDefaultValue=false)] + public StringValue? PriceClassID { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs new file mode 100644 index 000000000..ca18330ff --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class CustomerSalesPerson : Entity + { + + [DataMember(Name="Commission", EmitDefaultValue=false)] + public DecimalValue? Commission { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="SalespersonID", EmitDefaultValue=false)] + public StringValue? SalespersonID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs new file mode 100644 index 000000000..c789a37a4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionBenefitCode : Entity, ITopLevelEntity + { + + [DataMember(Name="ACAApplicable", EmitDefaultValue=false)] + public BooleanValue? ACAApplicable { get; set; } + + [DataMember(Name="ACAInformation", EmitDefaultValue=false)] + public ACAInformation? ACAInformation { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AffectsTaxCalculation", EmitDefaultValue=false)] + public BooleanValue? AffectsTaxCalculation { get; set; } + + [DataMember(Name="ApplicableWage", EmitDefaultValue=false)] + public ApplicableWage? ApplicableWage { get; set; } + + [DataMember(Name="AssociatedWith", EmitDefaultValue=false)] + public StringValue? AssociatedWith { get; set; } + + [DataMember(Name="ContributionType", EmitDefaultValue=false)] + public StringValue? ContributionType { get; set; } + + [DataMember(Name="DeductionBenefitCodeID", EmitDefaultValue=false)] + public StringValue? DeductionBenefitCodeID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EmployeeDeduction", EmitDefaultValue=false)] + public EmployeeDeduction? EmployeeDeduction { get; set; } + + [DataMember(Name="EmployerContribution", EmitDefaultValue=false)] + public EmployerContribution? EmployerContribution { get; set; } + + [DataMember(Name="GLAccounts", EmitDefaultValue=false)] + public DeductionOrBenefitCodeGLAccounts? GLAccounts { get; set; } + + [DataMember(Name="InvoiceDescrSource", EmitDefaultValue=false)] + public StringValue? InvoiceDescrSource { get; set; } + + [DataMember(Name="IsGarnishment", EmitDefaultValue=false)] + public BooleanValue? IsGarnishment { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PayableBenefit", EmitDefaultValue=false)] + public BooleanValue? PayableBenefit { get; set; } + + [DataMember(Name="ShowApplicableWageTab", EmitDefaultValue=false)] + public BooleanValue? ShowApplicableWageTab { get; set; } + + [DataMember(Name="TaxSettingsCA", EmitDefaultValue=false)] + public TaxSettingsCA? TaxSettingsCA { get; set; } + + [DataMember(Name="TaxSettingsUS", EmitDefaultValue=false)] + public TaxSettingsUS? TaxSettingsUS { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + [DataMember(Name="VendorInvoiceDescription", EmitDefaultValue=false)] + public StringValue? VendorInvoiceDescription { get; set; } + + [DataMember(Name="WCCCode", EmitDefaultValue=false)] + public DeductionBenefitWCCCode? WCCCode { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs new file mode 100644 index 000000000..57cc38b43 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionBenefitWCCCode : Entity + { + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="WCCCodeRates", EmitDefaultValue=false)] + public List? WCCCodeRates { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs new file mode 100644 index 000000000..a154b14e7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionDecreasingApplWage : Entity + { + + [DataMember(Name="DeductionIncreasingApplWageDetails", EmitDefaultValue=false)] + public List? DeductionIncreasingApplWageDetails { get; set; } + + [DataMember(Name="InclusionType", EmitDefaultValue=false)] + public StringValue? InclusionType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs new file mode 100644 index 000000000..979b72ad7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionDecreasingApplWageDetail : Entity + { + + [DataMember(Name="DeductionCode", EmitDefaultValue=false)] + public StringValue? DeductionCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs new file mode 100644 index 000000000..d1320b0ce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionOrBenefitCodeGLAccounts : Entity + { + + [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] + public StringValue? BenefitExpenseAccount { get; set; } + + [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] + public StringValue? BenefitExpenseSub { get; set; } + + [DataMember(Name="BenefitLiabilityAccount", EmitDefaultValue=false)] + public StringValue? BenefitLiabilityAccount { get; set; } + + [DataMember(Name="BenefitLiabilitySub", EmitDefaultValue=false)] + public StringValue? BenefitLiabilitySub { get; set; } + + [DataMember(Name="DeductionLiabilityAccount", EmitDefaultValue=false)] + public StringValue? DeductionLiabilityAccount { get; set; } + + [DataMember(Name="DeductionLiabilitySub", EmitDefaultValue=false)] + public StringValue? DeductionLiabilitySub { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs new file mode 100644 index 000000000..faf2db0ac --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionOrBenefitTaxDetailCA : Entity + { + + [DataMember(Name="Benefitincreasestaxablewage", EmitDefaultValue=false)] + public BooleanValue? Benefitincreasestaxablewage { get; set; } + + [DataMember(Name="Deductiondecreasestaxablewage", EmitDefaultValue=false)] + public BooleanValue? Deductiondecreasestaxablewage { get; set; } + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxName", EmitDefaultValue=false)] + public StringValue? TaxName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs new file mode 100644 index 000000000..c03bd6d75 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionOrBenefitTaxDetailUS : Entity + { + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxName", EmitDefaultValue=false)] + public StringValue? TaxName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs new file mode 100644 index 000000000..88d462d0d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DeductionsAndBenefits : Entity + { + + [DataMember(Name="DeductionAndBenefitUseClassDefaults", EmitDefaultValue=false)] + public BooleanValue? DeductionAndBenefitUseClassDefaults { get; set; } + + [DataMember(Name="DeductionsAndBenefitsDetails", EmitDefaultValue=false)] + public List? DeductionsAndBenefitsDetails { get; set; } + + [DataMember(Name="DeductionSplitMethod", EmitDefaultValue=false)] + public StringValue? DeductionSplitMethod { get; set; } + + [DataMember(Name="MaxPercOfNetPayForAllGarnishm", EmitDefaultValue=false)] + public DecimalValue? MaxPercOfNetPayForAllGarnishm { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs new file mode 100644 index 000000000..4b2a51547 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DefaultTaskForGLAccount : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="DefaultTask", EmitDefaultValue=false)] + public StringValue? DefaultTask { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs new file mode 100644 index 000000000..07a3aec10 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DirectDepositDetail : Entity + { + + [DataMember(Name="AccountNumber", EmitDefaultValue=false)] + public StringValue? AccountNumber { get; set; } + + [DataMember(Name="AccountType", EmitDefaultValue=false)] + public StringValue? AccountType { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="BankName", EmitDefaultValue=false)] + public StringValue? BankName { get; set; } + + [DataMember(Name="BankRoutingNumber", EmitDefaultValue=false)] + public StringValue? BankRoutingNumber { get; set; } + + [DataMember(Name="DepositSequenceNbr", EmitDefaultValue=false)] + public IntValue? DepositSequenceNbr { get; set; } + + [DataMember(Name="GetsRemainder", EmitDefaultValue=false)] + public BooleanValue? GetsRemainder { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Percent", EmitDefaultValue=false)] + public DecimalValue? Percent { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs new file mode 100644 index 000000000..2086bccff --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs @@ -0,0 +1,79 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Discount : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="BreakBy", EmitDefaultValue=false)] + public StringValue? BreakBy { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CustomerPriceClasses", EmitDefaultValue=false)] + public List? CustomerPriceClasses { get; set; } + + [DataMember(Name="Customers", EmitDefaultValue=false)] + public List? Customers { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountBreakpoints", EmitDefaultValue=false)] + public List? DiscountBreakpoints { get; set; } + + [DataMember(Name="DiscountBy", EmitDefaultValue=false)] + public StringValue? DiscountBy { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="ItemPriceClasses", EmitDefaultValue=false)] + public List? ItemPriceClasses { get; set; } + + [DataMember(Name="Items", EmitDefaultValue=false)] + public List? Items { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Promotional", EmitDefaultValue=false)] + public BooleanValue? Promotional { get; set; } + + [DataMember(Name="ProrateDiscount", EmitDefaultValue=false)] + public BooleanValue? ProrateDiscount { get; set; } + + [DataMember(Name="Sequence", EmitDefaultValue=false)] + public StringValue? Sequence { get; set; } + + [DataMember(Name="ShowFreeItem", EmitDefaultValue=false)] + public BooleanValue? ShowFreeItem { get; set; } + + [DataMember(Name="Warehouses", EmitDefaultValue=false)] + public List? Warehouses { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs new file mode 100644 index 000000000..33cdf3ec9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountBreakpointDetail : Entity + { + + [DataMember(Name="BreakAmount", EmitDefaultValue=false)] + public DecimalValue? BreakAmount { get; set; } + + [DataMember(Name="BreakQty", EmitDefaultValue=false)] + public DecimalValue? BreakQty { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountDetailID", EmitDefaultValue=false)] + public IntValue? DiscountDetailID { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] + public DecimalValue? FreeItemQty { get; set; } + + [DataMember(Name="LastBreakAmount", EmitDefaultValue=false)] + public DecimalValue? LastBreakAmount { get; set; } + + [DataMember(Name="LastBreakQty", EmitDefaultValue=false)] + public DecimalValue? LastBreakQty { get; set; } + + [DataMember(Name="LastDiscountAmount", EmitDefaultValue=false)] + public DecimalValue? LastDiscountAmount { get; set; } + + [DataMember(Name="LastDiscountPercent", EmitDefaultValue=false)] + public DecimalValue? LastDiscountPercent { get; set; } + + [DataMember(Name="LastFreeItemQty", EmitDefaultValue=false)] + public DecimalValue? LastFreeItemQty { get; set; } + + [DataMember(Name="PendingBreakAmount", EmitDefaultValue=false)] + public DecimalValue? PendingBreakAmount { get; set; } + + [DataMember(Name="PendingBreakQty", EmitDefaultValue=false)] + public DecimalValue? PendingBreakQty { get; set; } + + [DataMember(Name="PendingDate", EmitDefaultValue=false)] + public DateTimeValue? PendingDate { get; set; } + + [DataMember(Name="PendingDiscountAmount", EmitDefaultValue=false)] + public DecimalValue? PendingDiscountAmount { get; set; } + + [DataMember(Name="PendingDiscountPercent", EmitDefaultValue=false)] + public DecimalValue? PendingDiscountPercent { get; set; } + + [DataMember(Name="PendingFreeItemQty", EmitDefaultValue=false)] + public DecimalValue? PendingFreeItemQty { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs new file mode 100644 index 000000000..230a0cd2f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountCode : Entity, ITopLevelEntity + { + + [DataMember(Name="ApplicableTo", EmitDefaultValue=false)] + public StringValue? ApplicableTo { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountCodeID", EmitDefaultValue=false)] + public StringValue? DiscountCodeID { get; set; } + + [DataMember(Name="DiscountType", EmitDefaultValue=false)] + public StringValue? DiscountType { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs new file mode 100644 index 000000000..fa9a85fe9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountCustomerDetail : Entity + { + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CustomerName", EmitDefaultValue=false)] + public StringValue? CustomerName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs new file mode 100644 index 000000000..cd012108f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountCustomerPriceClassesDetail : Entity + { + + [DataMember(Name="PriceClassID", EmitDefaultValue=false)] + public StringValue? PriceClassID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs new file mode 100644 index 000000000..e76efe3fe --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountItemDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs new file mode 100644 index 000000000..3c43e0007 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountItemPriceClassesDetail : Entity + { + + [DataMember(Name="PriceClassID", EmitDefaultValue=false)] + public StringValue? PriceClassID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs new file mode 100644 index 000000000..647c979e0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DiscountWarehouseDetail : Entity + { + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs new file mode 100644 index 000000000..f8ae50bd7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DocContact : Entity + { + + [DataMember(Name="Attention", EmitDefaultValue=false)] + public StringValue? Attention { get; set; } + + [DataMember(Name="BusinessName", EmitDefaultValue=false)] + public StringValue? BusinessName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs new file mode 100644 index 000000000..801455b85 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class DuplicateDetail : Entity + { + + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="BusinessAccountType", EmitDefaultValue=false)] + public StringValue? BusinessAccountType { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="DisplayName", EmitDefaultValue=false)] + public StringValue? DisplayName { get; set; } + + [DataMember(Name="Duplicate", EmitDefaultValue=false)] + public StringValue? Duplicate { get; set; } + + [DataMember(Name="DuplicateContactID", EmitDefaultValue=false)] + public IntValue? DuplicateContactID { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="EntityType", EmitDefaultValue=false)] + public StringValue? EntityType { get; set; } + + [DataMember(Name="LastModifiedDate", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDate { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs new file mode 100644 index 000000000..a9c1cf16a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningCodeGLAccounts : Entity + { + + [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] + public StringValue? BenefitExpenseAccount { get; set; } + + [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] + public StringValue? BenefitExpenseSub { get; set; } + + [DataMember(Name="EarningsAccount", EmitDefaultValue=false)] + public StringValue? EarningsAccount { get; set; } + + [DataMember(Name="EarningsSub", EmitDefaultValue=false)] + public StringValue? EarningsSub { get; set; } + + [DataMember(Name="PTOExpenseAccount", EmitDefaultValue=false)] + public StringValue? PTOExpenseAccount { get; set; } + + [DataMember(Name="PTOExpenseSub", EmitDefaultValue=false)] + public StringValue? PTOExpenseSub { get; set; } + + [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] + public StringValue? TaxExpenseAccount { get; set; } + + [DataMember(Name="TaxExpenseSub", EmitDefaultValue=false)] + public StringValue? TaxExpenseSub { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs new file mode 100644 index 000000000..026352341 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningCodeProjectSettings : Entity + { + + [DataMember(Name="BillableProject", EmitDefaultValue=false)] + public BooleanValue? BillableProject { get; set; } + + [DataMember(Name="DefaultProjectCode", EmitDefaultValue=false)] + public StringValue? DefaultProjectCode { get; set; } + + [DataMember(Name="DefaultProjectTask", EmitDefaultValue=false)] + public StringValue? DefaultProjectTask { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs new file mode 100644 index 000000000..9cfd2e401 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningCodeTaxDetailCA : Entity + { + + [DataMember(Name="Taxability", EmitDefaultValue=false)] + public StringValue? Taxability { get; set; } + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxName", EmitDefaultValue=false)] + public StringValue? TaxName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs new file mode 100644 index 000000000..b9764c1f2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningCodeTaxDetailUS : Entity + { + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxName", EmitDefaultValue=false)] + public StringValue? TaxName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs new file mode 100644 index 000000000..4c02e45af --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningIncreasingApplWage : Entity + { + + [DataMember(Name="EarningIncreasingApplWageDetails", EmitDefaultValue=false)] + public List? EarningIncreasingApplWageDetails { get; set; } + + [DataMember(Name="InclusionType", EmitDefaultValue=false)] + public StringValue? InclusionType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs new file mode 100644 index 000000000..a00ff2f6a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningIncreasingApplWageDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EarningTypeCategory", EmitDefaultValue=false)] + public StringValue? EarningTypeCategory { get; set; } + + [DataMember(Name="EarningTypeCode", EmitDefaultValue=false)] + public StringValue? EarningTypeCode { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs new file mode 100644 index 000000000..a338d2a81 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs @@ -0,0 +1,64 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EarningTypeCode : Entity, ITopLevelEntity + { + + [DataMember(Name="AccrueTimeOff", EmitDefaultValue=false)] + public BooleanValue? AccrueTimeOff { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Category", EmitDefaultValue=false)] + public StringValue? Category { get; set; } + + [DataMember(Name="ContributestoWCCCalculation", EmitDefaultValue=false)] + public BooleanValue? ContributestoWCCCalculation { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EarningTypeCodeID", EmitDefaultValue=false)] + public StringValue? EarningTypeCodeID { get; set; } + + [DataMember(Name="GLAccounts", EmitDefaultValue=false)] + public EarningCodeGLAccounts? GLAccounts { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Multiplier", EmitDefaultValue=false)] + public DecimalValue? Multiplier { get; set; } + + [DataMember(Name="ProjectSettings", EmitDefaultValue=false)] + public EarningCodeProjectSettings? ProjectSettings { get; set; } + + [DataMember(Name="PublicHoliday", EmitDefaultValue=false)] + public BooleanValue? PublicHoliday { get; set; } + + [DataMember(Name="RegularTimeTypeCode", EmitDefaultValue=false)] + public StringValue? RegularTimeTypeCode { get; set; } + + [DataMember(Name="TaxAndReportingCA", EmitDefaultValue=false)] + public TaxAndReportingCA? TaxAndReportingCA { get; set; } + + [DataMember(Name="TaxAndReportingUS", EmitDefaultValue=false)] + public TaxAndReportingUS? TaxAndReportingUS { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs new file mode 100644 index 000000000..4537ed433 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EducatedResources : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountID", EmitDefaultValue=false)] + public IntValue? AccountID { get; set; } + + [DataMember(Name="AccountID_2", EmitDefaultValue=false)] + public IntValue? AccountID_2 { get; set; } + + [DataMember(Name="AccountID_3", EmitDefaultValue=false)] + public IntValue? AccountID_3 { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Type_2", EmitDefaultValue=false)] + public StringValue? Type_2 { get; set; } + + [DataMember(Name="Class", EmitDefaultValue=false)] + public StringValue? Class { get; set; } + + [DataMember(Name="Class_2", EmitDefaultValue=false)] + public StringValue? Class_2 { get; set; } + + [DataMember(Name="Class_3", EmitDefaultValue=false)] + public StringValue? Class_3 { get; set; } + + [DataMember(Name="Class_4", EmitDefaultValue=false)] + public StringValue? Class_4 { get; set; } + + [DataMember(Name="Class_5", EmitDefaultValue=false)] + public StringValue? Class_5 { get; set; } + + [DataMember(Name="Class_6", EmitDefaultValue=false)] + public StringValue? Class_6 { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="Class_7", EmitDefaultValue=false)] + public StringValue? Class_7 { get; set; } + + [DataMember(Name="Class_8", EmitDefaultValue=false)] + public StringValue? Class_8 { get; set; } + + [DataMember(Name="Class_9", EmitDefaultValue=false)] + public StringValue? Class_9 { get; set; } + + [DataMember(Name="Class_10", EmitDefaultValue=false)] + public StringValue? Class_10 { get; set; } + + [DataMember(Name="EducatedResourcesDetails", EmitDefaultValue=false)] + public List? EducatedResourcesDetails { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs new file mode 100644 index 000000000..66aa6ec89 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs @@ -0,0 +1,150 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EducatedResourcesDetail : Entity + { + + [DataMember(Name="Geography", EmitDefaultValue=false)] + public StringValue? Geography { get; set; } + + [DataMember(Name="AccountID", EmitDefaultValue=false)] + public StringValue? AccountID { get; set; } + + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + + [DataMember(Name="StageID", EmitDefaultValue=false)] + public StringValue? StageID { get; set; } + + [DataMember(Name="StageName", EmitDefaultValue=false)] + public StringValue? StageName { get; set; } + + [DataMember(Name="StageStatus", EmitDefaultValue=false)] + public StringValue? StageStatus { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="Contact", EmitDefaultValue=false)] + public StringValue? Contact { get; set; } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + + [DataMember(Name="BadgeID", EmitDefaultValue=false)] + public StringValue? BadgeID { get; set; } + + [DataMember(Name="BadgeName", EmitDefaultValue=false)] + public StringValue? BadgeName { get; set; } + + [DataMember(Name="BadgeStatus", EmitDefaultValue=false)] + public StringValue? BadgeStatus { get; set; } + + [DataMember(Name="AddressLine1", EmitDefaultValue=false)] + public StringValue? AddressLine1 { get; set; } + + [DataMember(Name="AddressLine2", EmitDefaultValue=false)] + public StringValue? AddressLine2 { get; set; } + + [DataMember(Name="AddressLine3", EmitDefaultValue=false)] + public StringValue? AddressLine3 { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="StateName", EmitDefaultValue=false)] + public StringValue? StateName { get; set; } + + [DataMember(Name="PostalCode", EmitDefaultValue=false)] + public StringValue? PostalCode { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="CountryName", EmitDefaultValue=false)] + public StringValue? CountryName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="ContractTemplate", EmitDefaultValue=false)] + public StringValue? ContractTemplate { get; set; } + + [DataMember(Name="Class", EmitDefaultValue=false)] + public StringValue? Class { get; set; } + + [DataMember(Name="Module", EmitDefaultValue=false)] + public StringValue? Module { get; set; } + + [DataMember(Name="ContactwithBadge", EmitDefaultValue=false)] + public StringValue? ContactwithBadge { get; set; } + + [DataMember(Name="ContactStatus", EmitDefaultValue=false)] + public BooleanValue? ContactStatus { get; set; } + + [DataMember(Name="UserLogin", EmitDefaultValue=false)] + public StringValue? UserLogin { get; set; } + + [DataMember(Name="UserType", EmitDefaultValue=false)] + public StringValue? UserType { get; set; } + + [DataMember(Name="CourseProgress", EmitDefaultValue=false)] + public IntValue? CourseProgress { get; set; } + + [DataMember(Name="AchievementDate", EmitDefaultValue=false)] + public DateTimeValue? AchievementDate { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Achieved", EmitDefaultValue=false)] + public BooleanValue? Achieved { get; set; } + + [DataMember(Name="PrerequisiteAchievement", EmitDefaultValue=false)] + public IntValue? PrerequisiteAchievement { get; set; } + + [DataMember(Name="CourseAchievement", EmitDefaultValue=false)] + public IntValue? CourseAchievement { get; set; } + + [DataMember(Name="BadgeCreatedDate", EmitDefaultValue=false)] + public DateTimeValue? BadgeCreatedDate { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="LastUCPDate", EmitDefaultValue=false)] + public DateTimeValue? LastUCPDate { get; set; } + + [DataMember(Name="ContractID", EmitDefaultValue=false)] + public IntValue? ContractID { get; set; } + + [DataMember(Name="ContractDetail_contractDetailID", EmitDefaultValue=false)] + public IntValue? ContractDetail_contractDetailID { get; set; } + + [DataMember(Name="ContractItemID", EmitDefaultValue=false)] + public IntValue? ContractItemID { get; set; } + + [DataMember(Name="PreviousStatus", EmitDefaultValue=false)] + public StringValue? PreviousStatus { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs new file mode 100644 index 000000000..548e71944 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Email : Entity, ITopLevelEntity + { + + [DataMember(Name="Bcc", EmitDefaultValue=false)] + public StringValue? Bcc { get; set; } + + [DataMember(Name="Body", EmitDefaultValue=false)] + public StringValue? Body { get; set; } + + [DataMember(Name="Cc", EmitDefaultValue=false)] + public StringValue? Cc { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="From", EmitDefaultValue=false)] + public StringValue? From { get; set; } + + [DataMember(Name="FromEmailAccountDisplayName", EmitDefaultValue=false)] + public StringValue? FromEmailAccountDisplayName { get; set; } + + [DataMember(Name="FromEmailAccountID", EmitDefaultValue=false)] + public IntValue? FromEmailAccountID { get; set; } + + [DataMember(Name="Incoming", EmitDefaultValue=false)] + public BooleanValue? Incoming { get; set; } + + [DataMember(Name="Internal", EmitDefaultValue=false)] + public BooleanValue? Internal { get; set; } + + [DataMember(Name="MailStatus", EmitDefaultValue=false)] + public StringValue? MailStatus { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Parent", EmitDefaultValue=false)] + public GuidValue? Parent { get; set; } + + [DataMember(Name="ParentSummary", EmitDefaultValue=false)] + public StringValue? ParentSummary { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="TimeActivity", EmitDefaultValue=false)] + public TimeActivity? TimeActivity { get; set; } + + [DataMember(Name="To", EmitDefaultValue=false)] + public StringValue? To { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + [DataMember(Name="CreatedByID", EmitDefaultValue=false)] + public StringValue? CreatedByID { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] + public StringValue? RelatedEntityType { get; set; } + + [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] + public GuidValue? RelatedEntityNoteID { get; set; } + + [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] + public StringValue? RelatedEntityDescription { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs new file mode 100644 index 000000000..3974735fd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmailProcessing : Entity, ITopLevelEntity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public IntValue? Account { get; set; } + + [DataMember(Name="AccountEmailAccountID", EmitDefaultValue=false)] + public StringValue? AccountEmailAccountID { get; set; } + + [DataMember(Name="AssignedToMe", EmitDefaultValue=false)] + public BooleanValue? AssignedToMe { get; set; } + + [DataMember(Name="AssignedToOwner", EmitDefaultValue=false)] + public StringValue? AssignedToOwner { get; set; } + + [DataMember(Name="IncludeFailed", EmitDefaultValue=false)] + public BooleanValue? IncludeFailed { get; set; } + + [DataMember(Name="Result", EmitDefaultValue=false)] + public List? Result { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs new file mode 100644 index 000000000..209884537 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmailProcessingRow : Entity + { + + [DataMember(Name="EmailAccount", EmitDefaultValue=false)] + public StringValue? EmailAccount { get; set; } + + [DataMember(Name="From", EmitDefaultValue=false)] + public StringValue? From { get; set; } + + [DataMember(Name="MailStatus", EmitDefaultValue=false)] + public StringValue? MailStatus { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Selected", EmitDefaultValue=false)] + public BooleanValue? Selected { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="To", EmitDefaultValue=false)] + public StringValue? To { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs new file mode 100644 index 000000000..f5a6abfb2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Employee : Entity, ITopLevelEntity + { + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="ContactInfo", EmitDefaultValue=false)] + public Contact? ContactInfo { get; set; } + + [DataMember(Name="Delegates", EmitDefaultValue=false)] + public List? Delegates { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="EmployeeSettings", EmitDefaultValue=false)] + public EmployeeSettings? EmployeeSettings { get; set; } + + [DataMember(Name="EmploymentHistory", EmitDefaultValue=false)] + public List? EmploymentHistory { get; set; } + + [DataMember(Name="FinancialSettings", EmitDefaultValue=false)] + public EmployeeFinancialSettings? FinancialSettings { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs new file mode 100644 index 000000000..2c7a791eb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeClassPTOBankDefault : Entity + { + + [DataMember(Name="AccrualLimit", EmitDefaultValue=false)] + public DecimalValue? AccrualLimit { get; set; } + + [DataMember(Name="AccrualMethod", EmitDefaultValue=false)] + public StringValue? AccrualMethod { get; set; } + + [DataMember(Name="AccrualPercent", EmitDefaultValue=false)] + public DecimalValue? AccrualPercent { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CarryoverAmount", EmitDefaultValue=false)] + public DecimalValue? CarryoverAmount { get; set; } + + [DataMember(Name="CarryoverType", EmitDefaultValue=false)] + public StringValue? CarryoverType { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DisbursingType", EmitDefaultValue=false)] + public StringValue? DisbursingType { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="EmployeeClass", EmitDefaultValue=false)] + public StringValue? EmployeeClass { get; set; } + + [DataMember(Name="FrontLoadingAmount", EmitDefaultValue=false)] + public DecimalValue? FrontLoadingAmount { get; set; } + + [DataMember(Name="HoursPerYear", EmitDefaultValue=false)] + public DecimalValue? HoursPerYear { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PTOBank", EmitDefaultValue=false)] + public StringValue? PTOBank { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs new file mode 100644 index 000000000..fea593b65 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeClassWorkLocation : Entity + { + + [DataMember(Name="DefaultWorkLocation", EmitDefaultValue=false)] + public BooleanValue? DefaultWorkLocation { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs new file mode 100644 index 000000000..bac7946aa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeDeduction : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="ApplicableEarnings", EmitDefaultValue=false)] + public StringValue? ApplicableEarnings { get; set; } + + [DataMember(Name="CalculationMethod", EmitDefaultValue=false)] + public StringValue? CalculationMethod { get; set; } + + [DataMember(Name="MaximumAmount", EmitDefaultValue=false)] + public DecimalValue? MaximumAmount { get; set; } + + [DataMember(Name="MaximumFrequency", EmitDefaultValue=false)] + public StringValue? MaximumFrequency { get; set; } + + [DataMember(Name="Percent", EmitDefaultValue=false)] + public DecimalValue? Percent { get; set; } + + [DataMember(Name="ReportingTypeCA", EmitDefaultValue=false)] + public StringValue? ReportingTypeCA { get; set; } + + [DataMember(Name="ReportingTypeUS", EmitDefaultValue=false)] + public StringValue? ReportingTypeUS { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs new file mode 100644 index 000000000..795c46859 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeDeductionOrBenefitDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="ContributionAmount", EmitDefaultValue=false)] + public DecimalValue? ContributionAmount { get; set; } + + [DataMember(Name="ContributionMax", EmitDefaultValue=false)] + public DecimalValue? ContributionMax { get; set; } + + [DataMember(Name="ContributionMaximumFrequency", EmitDefaultValue=false)] + public StringValue? ContributionMaximumFrequency { get; set; } + + [DataMember(Name="ContributionPercent", EmitDefaultValue=false)] + public DecimalValue? ContributionPercent { get; set; } + + [DataMember(Name="DeductionAmount", EmitDefaultValue=false)] + public DecimalValue? DeductionAmount { get; set; } + + [DataMember(Name="DeductionCode", EmitDefaultValue=false)] + public StringValue? DeductionCode { get; set; } + + [DataMember(Name="DeductionMax", EmitDefaultValue=false)] + public DecimalValue? DeductionMax { get; set; } + + [DataMember(Name="DeductionMaximumFrequency", EmitDefaultValue=false)] + public StringValue? DeductionMaximumFrequency { get; set; } + + [DataMember(Name="DeductionPercent", EmitDefaultValue=false)] + public DecimalValue? DeductionPercent { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="GarnishmentDetails", EmitDefaultValue=false)] + public GarnishmentDetails? GarnishmentDetails { get; set; } + + [DataMember(Name="IsGarnish", EmitDefaultValue=false)] + public BooleanValue? IsGarnish { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Sequence", EmitDefaultValue=false)] + public IntValue? Sequence { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="UseContributionDefaults", EmitDefaultValue=false)] + public BooleanValue? UseContributionDefaults { get; set; } + + [DataMember(Name="UseDeductionDefaults", EmitDefaultValue=false)] + public BooleanValue? UseDeductionDefaults { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs new file mode 100644 index 000000000..3c05e1261 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeDelegate : Entity + { + + [DataMember(Name="Delegate", EmitDefaultValue=false)] + public StringValue? Delegate { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="DelegationOf", EmitDefaultValue=false)] + public StringValue? DelegationOf { get; set; } + + [DataMember(Name="StartsOn", EmitDefaultValue=false)] + public DateTimeValue? StartsOn { get; set; } + + [DataMember(Name="ExpiresOn", EmitDefaultValue=false)] + public DateTimeValue? ExpiresOn { get; set; } + + [DataMember(Name="IsActive", EmitDefaultValue=false)] + public BooleanValue? IsActive { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs new file mode 100644 index 000000000..15c132785 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeFinancialSettings : Entity + { + + [DataMember(Name="APAccount", EmitDefaultValue=false)] + public StringValue? APAccount { get; set; } + + [DataMember(Name="APSubaccount", EmitDefaultValue=false)] + public StringValue? APSubaccount { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccount { get; set; } + + [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? ExpenseSubaccount { get; set; } + + [DataMember(Name="PaymentInstructions", EmitDefaultValue=false)] + public List? PaymentInstructions { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PrepaymentAccount", EmitDefaultValue=false)] + public StringValue? PrepaymentAccount { get; set; } + + [DataMember(Name="PrepaymentSubaccount", EmitDefaultValue=false)] + public StringValue? PrepaymentSubaccount { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs new file mode 100644 index 000000000..088d535e2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeGLAccounts : Entity + { + + [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] + public StringValue? BenefitExpenseAccount { get; set; } + + [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] + public StringValue? BenefitExpenseSub { get; set; } + + [DataMember(Name="BenefitLiabilityAccount", EmitDefaultValue=false)] + public StringValue? BenefitLiabilityAccount { get; set; } + + [DataMember(Name="BenefitLiabilitySub", EmitDefaultValue=false)] + public StringValue? BenefitLiabilitySub { get; set; } + + [DataMember(Name="DeductionLiabilityAccount", EmitDefaultValue=false)] + public StringValue? DeductionLiabilityAccount { get; set; } + + [DataMember(Name="DeductionLiabilitySub", EmitDefaultValue=false)] + public StringValue? DeductionLiabilitySub { get; set; } + + [DataMember(Name="EarningsAccount", EmitDefaultValue=false)] + public StringValue? EarningsAccount { get; set; } + + [DataMember(Name="EarningsSub", EmitDefaultValue=false)] + public StringValue? EarningsSub { get; set; } + + [DataMember(Name="PTOAssetAccount", EmitDefaultValue=false)] + public StringValue? PTOAssetAccount { get; set; } + + [DataMember(Name="PTOAssetSub", EmitDefaultValue=false)] + public StringValue? PTOAssetSub { get; set; } + + [DataMember(Name="PTOExpenseAccount", EmitDefaultValue=false)] + public StringValue? PTOExpenseAccount { get; set; } + + [DataMember(Name="PTOExpenseSub", EmitDefaultValue=false)] + public StringValue? PTOExpenseSub { get; set; } + + [DataMember(Name="PTOLiabilityAccount", EmitDefaultValue=false)] + public StringValue? PTOLiabilityAccount { get; set; } + + [DataMember(Name="PTOLiabilitySub", EmitDefaultValue=false)] + public StringValue? PTOLiabilitySub { get; set; } + + [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] + public StringValue? TaxExpenseAccount { get; set; } + + [DataMember(Name="TaxExpenseSub", EmitDefaultValue=false)] + public StringValue? TaxExpenseSub { get; set; } + + [DataMember(Name="TaxLiabilityAccount", EmitDefaultValue=false)] + public StringValue? TaxLiabilityAccount { get; set; } + + [DataMember(Name="TaxLiabilitySub", EmitDefaultValue=false)] + public StringValue? TaxLiabilitySub { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs new file mode 100644 index 000000000..bb8b9e910 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs @@ -0,0 +1,84 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeGeneralInfo : Entity + { + + [DataMember(Name="Calendar", EmitDefaultValue=false)] + public StringValue? Calendar { get; set; } + + [DataMember(Name="CalendarClassDefault", EmitDefaultValue=false)] + public BooleanValue? CalendarClassDefault { get; set; } + + [DataMember(Name="CertifiedProjectHoursperYear", EmitDefaultValue=false)] + public IntValue? CertifiedProjectHoursperYear { get; set; } + + [DataMember(Name="DefaultUnion", EmitDefaultValue=false)] + public StringValue? DefaultUnion { get; set; } + + [DataMember(Name="DefaultWCCCode", EmitDefaultValue=false)] + public StringValue? DefaultWCCCode { get; set; } + + [DataMember(Name="ExemptFromCertReporting", EmitDefaultValue=false)] + public BooleanValue? ExemptFromCertReporting { get; set; } + + [DataMember(Name="ExemptFromCertReportingClassDefault", EmitDefaultValue=false)] + public BooleanValue? ExemptFromCertReportingClassDefault { get; set; } + + [DataMember(Name="ExemptFromOvertimeRules", EmitDefaultValue=false)] + public BooleanValue? ExemptFromOvertimeRules { get; set; } + + [DataMember(Name="ExemptFromOvertimeRulesClassDefault", EmitDefaultValue=false)] + public BooleanValue? ExemptFromOvertimeRulesClassDefault { get; set; } + + [DataMember(Name="NetPayMinClassDefault", EmitDefaultValue=false)] + public BooleanValue? NetPayMinClassDefault { get; set; } + + [DataMember(Name="NetPayMinimum", EmitDefaultValue=false)] + public DecimalValue? NetPayMinimum { get; set; } + + [DataMember(Name="OverrideHoursPerYearForCertClassDefault", EmitDefaultValue=false)] + public BooleanValue? OverrideHoursPerYearForCertClassDefault { get; set; } + + [DataMember(Name="OverrideHrsPerYearForCertProjects", EmitDefaultValue=false)] + public BooleanValue? OverrideHrsPerYearForCertProjects { get; set; } + + [DataMember(Name="PayGroup", EmitDefaultValue=false)] + public StringValue? PayGroup { get; set; } + + [DataMember(Name="PayGroupClassDefault", EmitDefaultValue=false)] + public BooleanValue? PayGroupClassDefault { get; set; } + + [DataMember(Name="UnionClassDefault", EmitDefaultValue=false)] + public BooleanValue? UnionClassDefault { get; set; } + + [DataMember(Name="UseClassDefaultValueHoursPerYearForCertifiedUseDflt", EmitDefaultValue=false)] + public BooleanValue? UseClassDefaultValueHoursPerYearForCertifiedUseDflt { get; set; } + + [DataMember(Name="WCCCodeClassDefault", EmitDefaultValue=false)] + public BooleanValue? WCCCodeClassDefault { get; set; } + + [DataMember(Name="WeeksPerYearClassDefault", EmitDefaultValue=false)] + public BooleanValue? WeeksPerYearClassDefault { get; set; } + + [DataMember(Name="WorkingHoursPerWeek", EmitDefaultValue=false)] + public DecimalValue? WorkingHoursPerWeek { get; set; } + + [DataMember(Name="WorkingHoursPerYear", EmitDefaultValue=false)] + public DecimalValue? WorkingHoursPerYear { get; set; } + + [DataMember(Name="WorkingWeeksPerYear", EmitDefaultValue=false)] + public ByteValue? WorkingWeeksPerYear { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs new file mode 100644 index 000000000..587220b03 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePaidTimeOff : Entity + { + + [DataMember(Name="PaidTimeOffDetails", EmitDefaultValue=false)] + public List? PaidTimeOffDetails { get; set; } + + [DataMember(Name="UsePTOBanksfromEmployeeClass", EmitDefaultValue=false)] + public BooleanValue? UsePTOBanksfromEmployeeClass { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs new file mode 100644 index 000000000..14b70d880 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePaidTimeOffDetail : Entity + { + + [DataMember(Name="AccrualLimit", EmitDefaultValue=false)] + public DecimalValue? AccrualLimit { get; set; } + + [DataMember(Name="AccrualMethod", EmitDefaultValue=false)] + public StringValue? AccrualMethod { get; set; } + + [DataMember(Name="AccrualPercent", EmitDefaultValue=false)] + public DecimalValue? AccrualPercent { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AmountAccrued", EmitDefaultValue=false)] + public DecimalValue? AmountAccrued { get; set; } + + [DataMember(Name="AmountAvailable", EmitDefaultValue=false)] + public DecimalValue? AmountAvailable { get; set; } + + [DataMember(Name="AmountUsed", EmitDefaultValue=false)] + public DecimalValue? AmountUsed { get; set; } + + [DataMember(Name="CarryoverAmount", EmitDefaultValue=false)] + public DecimalValue? CarryoverAmount { get; set; } + + [DataMember(Name="CarryoverType", EmitDefaultValue=false)] + public StringValue? CarryoverType { get; set; } + + [DataMember(Name="CreateFinancialTransaction", EmitDefaultValue=false)] + public BooleanValue? CreateFinancialTransaction { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DisbursingType", EmitDefaultValue=false)] + public StringValue? DisbursingType { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="FrontLoadingAmount", EmitDefaultValue=false)] + public DecimalValue? FrontLoadingAmount { get; set; } + + [DataMember(Name="HoursAccrued", EmitDefaultValue=false)] + public DecimalValue? HoursAccrued { get; set; } + + [DataMember(Name="HoursAvailable", EmitDefaultValue=false)] + public DecimalValue? HoursAvailable { get; set; } + + [DataMember(Name="HoursPerYear", EmitDefaultValue=false)] + public DecimalValue? HoursPerYear { get; set; } + + [DataMember(Name="HoursUsed", EmitDefaultValue=false)] + public DecimalValue? HoursUsed { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PTOBank", EmitDefaultValue=false)] + public StringValue? PTOBank { get; set; } + + [DataMember(Name="UseClassDefaultValues", EmitDefaultValue=false)] + public BooleanValue? UseClassDefaultValues { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs new file mode 100644 index 000000000..bb99d0f63 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs @@ -0,0 +1,84 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePaycheckEarningDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] + public BooleanValue? CertifiedJob { get; set; } + + [DataMember(Name="Code", EmitDefaultValue=false)] + public StringValue? Code { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Hours", EmitDefaultValue=false)] + public DecimalValue? Hours { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="ManualRate", EmitDefaultValue=false)] + public BooleanValue? ManualRate { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="Rate", EmitDefaultValue=false)] + public DecimalValue? Rate { get; set; } + + [DataMember(Name="ShiftCode", EmitDefaultValue=false)] + public StringValue? ShiftCode { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Task", EmitDefaultValue=false)] + public StringValue? Task { get; set; } + + [DataMember(Name="UnionLocal", EmitDefaultValue=false)] + public StringValue? UnionLocal { get; set; } + + [DataMember(Name="Units", EmitDefaultValue=false)] + public DecimalValue? Units { get; set; } + + [DataMember(Name="UnitType", EmitDefaultValue=false)] + public StringValue? UnitType { get; set; } + + [DataMember(Name="WCCCode", EmitDefaultValue=false)] + public StringValue? WCCCode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs new file mode 100644 index 000000000..27b1f02e0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePaycheckEarnings : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Employee", EmitDefaultValue=false)] + public StringValue? Employee { get; set; } + + [DataMember(Name="EmployeeType", EmitDefaultValue=false)] + public StringValue? EmployeeType { get; set; } + + [DataMember(Name="Hours", EmitDefaultValue=false)] + public DecimalValue? Hours { get; set; } + + [DataMember(Name="ManualAmount", EmitDefaultValue=false)] + public BooleanValue? ManualAmount { get; set; } + + [DataMember(Name="RegularAmounttoBePaid", EmitDefaultValue=false)] + public DecimalValue? RegularAmounttoBePaid { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs new file mode 100644 index 000000000..d0668003b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePaycheckSummary : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Employee", EmitDefaultValue=false)] + public StringValue? Employee { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="EmployeePaycheckEarnings", EmitDefaultValue=false)] + public EmployeePaycheckEarnings? EmployeePaycheckEarnings { get; set; } + + [DataMember(Name="Hours", EmitDefaultValue=false)] + public DecimalValue? Hours { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PaycheckRef", EmitDefaultValue=false)] + public StringValue? PaycheckRef { get; set; } + + [DataMember(Name="Rate", EmitDefaultValue=false)] + public DecimalValue? Rate { get; set; } + + [DataMember(Name="VoidPaycheckRef", EmitDefaultValue=false)] + public StringValue? VoidPaycheckRef { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs new file mode 100644 index 000000000..2c5c23901 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePayrollClass : Entity, ITopLevelEntity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EmployeePayrollClassID", EmitDefaultValue=false)] + public StringValue? EmployeePayrollClassID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PayrollDefaults", EmitDefaultValue=false)] + public EmployeePayrollClassDefaults? PayrollDefaults { get; set; } + + [DataMember(Name="PTODefaults", EmitDefaultValue=false)] + public List? PTODefaults { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs new file mode 100644 index 000000000..3894d5556 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePayrollClassDefaults : Entity + { + + [DataMember(Name="CertifiedProjectHoursperYear", EmitDefaultValue=false)] + public IntValue? CertifiedProjectHoursperYear { get; set; } + + [DataMember(Name="DefaultCalendar", EmitDefaultValue=false)] + public StringValue? DefaultCalendar { get; set; } + + [DataMember(Name="DefaultUnion", EmitDefaultValue=false)] + public StringValue? DefaultUnion { get; set; } + + [DataMember(Name="DefaultWCCCode", EmitDefaultValue=false)] + public StringValue? DefaultWCCCode { get; set; } + + [DataMember(Name="EmployeeType", EmitDefaultValue=false)] + public StringValue? EmployeeType { get; set; } + + [DataMember(Name="ExemptFromCertifiedReporting", EmitDefaultValue=false)] + public BooleanValue? ExemptFromCertifiedReporting { get; set; } + + [DataMember(Name="ExemptFromOvertimeRules", EmitDefaultValue=false)] + public BooleanValue? ExemptFromOvertimeRules { get; set; } + + [DataMember(Name="HoursPerYearForCertified", EmitDefaultValue=false)] + public StringValue? HoursPerYearForCertified { get; set; } + + [DataMember(Name="MaximumPercentofNetPayforallGarnishments", EmitDefaultValue=false)] + public DecimalValue? MaximumPercentofNetPayforallGarnishments { get; set; } + + [DataMember(Name="NetPayMinimum", EmitDefaultValue=false)] + public DecimalValue? NetPayMinimum { get; set; } + + [DataMember(Name="OverrideHoursPerYearforCertProject", EmitDefaultValue=false)] + public BooleanValue? OverrideHoursPerYearforCertProject { get; set; } + + [DataMember(Name="PayGroup", EmitDefaultValue=false)] + public StringValue? PayGroup { get; set; } + + [DataMember(Name="UsePayrollWorkLocationfromProject", EmitDefaultValue=false)] + public BooleanValue? UsePayrollWorkLocationfromProject { get; set; } + + [DataMember(Name="WorkingHoursPerWeek", EmitDefaultValue=false)] + public DecimalValue? WorkingHoursPerWeek { get; set; } + + [DataMember(Name="WorkingHoursPerYear", EmitDefaultValue=false)] + public DecimalValue? WorkingHoursPerYear { get; set; } + + [DataMember(Name="WorkingWeeksPerYear", EmitDefaultValue=false)] + public ByteValue? WorkingWeeksPerYear { get; set; } + + [DataMember(Name="WorkLocations", EmitDefaultValue=false)] + public List? WorkLocations { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs new file mode 100644 index 000000000..9f1ea386f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs @@ -0,0 +1,85 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeePayrollSettings : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AddressInfo", EmitDefaultValue=false)] + public Address? AddressInfo { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="Compensation", EmitDefaultValue=false)] + public List? Compensation { get; set; } + + [DataMember(Name="DeductionsAndBenefits", EmitDefaultValue=false)] + public DeductionsAndBenefits? DeductionsAndBenefits { get; set; } + + [DataMember(Name="DirectDepositDetails", EmitDefaultValue=false)] + public List? DirectDepositDetails { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="EmployeeType", EmitDefaultValue=false)] + public StringValue? EmployeeType { get; set; } + + [DataMember(Name="EmploymentDates", EmitDefaultValue=false)] + public EmploymentDates? EmploymentDates { get; set; } + + [DataMember(Name="EmploymentRecords", EmitDefaultValue=false)] + public List? EmploymentRecords { get; set; } + + [DataMember(Name="GeneralInfo", EmitDefaultValue=false)] + public EmployeeGeneralInfo? GeneralInfo { get; set; } + + [DataMember(Name="GLAccounts", EmitDefaultValue=false)] + public EmployeeGLAccounts? GLAccounts { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PaidTimeOff", EmitDefaultValue=false)] + public EmployeePaidTimeOff? PaidTimeOff { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="Taxes", EmitDefaultValue=false)] + public List? Taxes { get; set; } + + [DataMember(Name="TaxSettings", EmitDefaultValue=false)] + public List? TaxSettings { get; set; } + + [DataMember(Name="EmployeeTypeClassDefault", EmitDefaultValue=false)] + public BooleanValue? EmployeeTypeClassDefault { get; set; } + + [DataMember(Name="WorkLocations", EmitDefaultValue=false)] + public EmployeeWorkLocations? WorkLocations { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs new file mode 100644 index 000000000..bc27ce5b1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeSettings : Entity + { + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="Calendar", EmitDefaultValue=false)] + public StringValue? Calendar { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrencyRateTypeID { get; set; } + + [DataMember(Name="DepartmentID", EmitDefaultValue=false)] + public StringValue? DepartmentID { get; set; } + + [DataMember(Name="EmployeeClass", EmitDefaultValue=false)] + public StringValue? EmployeeClass { get; set; } + + [DataMember(Name="EmployeeRefNbr", EmitDefaultValue=false)] + public StringValue? EmployeeRefNbr { get; set; } + + [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] + public BooleanValue? EnableCurrencyOverride { get; set; } + + [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] + public BooleanValue? EnableRateOverride { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="RegularHoursValidation", EmitDefaultValue=false)] + public StringValue? RegularHoursValidation { get; set; } + + [DataMember(Name="ReportsTo", EmitDefaultValue=false)] + public StringValue? ReportsTo { get; set; } + + [DataMember(Name="RouteEmails", EmitDefaultValue=false)] + public BooleanValue? RouteEmails { get; set; } + + [DataMember(Name="Salesperson", EmitDefaultValue=false)] + public StringValue? Salesperson { get; set; } + + [DataMember(Name="TimeCardIsRequired", EmitDefaultValue=false)] + public BooleanValue? TimeCardIsRequired { get; set; } + + [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] + public StringValue? UnionLocalID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs new file mode 100644 index 000000000..ca8993875 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeTaxDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxCodeSettings", EmitDefaultValue=false)] + public List? TaxCodeSettings { get; set; } + + [DataMember(Name="TaxDescription", EmitDefaultValue=false)] + public StringValue? TaxDescription { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs new file mode 100644 index 000000000..4c6017054 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeWorkLocationDetail : Entity + { + + [DataMember(Name="DefaultWorkLocation", EmitDefaultValue=false)] + public BooleanValue? DefaultWorkLocation { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs new file mode 100644 index 000000000..257e0f12a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployeeWorkLocations : Entity + { + + [DataMember(Name="UseClassDefaultValueUsePayrollProjectWorkLocationUseDflt", EmitDefaultValue=false)] + public BooleanValue? UseClassDefaultValueUsePayrollProjectWorkLocationUseDflt { get; set; } + + [DataMember(Name="UsePayrollWorkLocationfromProject", EmitDefaultValue=false)] + public BooleanValue? UsePayrollWorkLocationfromProject { get; set; } + + [DataMember(Name="WorkLocationClassDefaults", EmitDefaultValue=false)] + public BooleanValue? WorkLocationClassDefaults { get; set; } + + [DataMember(Name="WorkLocationDetails", EmitDefaultValue=false)] + public List? WorkLocationDetails { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs new file mode 100644 index 000000000..41649a2a4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployerContribution : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="ApplicableEarnings", EmitDefaultValue=false)] + public StringValue? ApplicableEarnings { get; set; } + + [DataMember(Name="CalculationMethod", EmitDefaultValue=false)] + public StringValue? CalculationMethod { get; set; } + + [DataMember(Name="CertifiedReportingType", EmitDefaultValue=false)] + public StringValue? CertifiedReportingType { get; set; } + + [DataMember(Name="ContributestoGrossCalculation", EmitDefaultValue=false)] + public BooleanValue? ContributestoGrossCalculation { get; set; } + + [DataMember(Name="MaximumAmount", EmitDefaultValue=false)] + public DecimalValue? MaximumAmount { get; set; } + + [DataMember(Name="MaximumFrequency", EmitDefaultValue=false)] + public StringValue? MaximumFrequency { get; set; } + + [DataMember(Name="NoFinancialTransaction", EmitDefaultValue=false)] + public BooleanValue? NoFinancialTransaction { get; set; } + + [DataMember(Name="Percent", EmitDefaultValue=false)] + public DecimalValue? Percent { get; set; } + + [DataMember(Name="ReportingTypeCA", EmitDefaultValue=false)] + public StringValue? ReportingTypeCA { get; set; } + + [DataMember(Name="ReportingTypeUS", EmitDefaultValue=false)] + public StringValue? ReportingTypeUS { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs new file mode 100644 index 000000000..3e91c8568 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployerTaxesIncreasingApplWage : Entity + { + + [DataMember(Name="EmployerTaxesIncreasingApplWageDetails", EmitDefaultValue=false)] + public List? EmployerTaxesIncreasingApplWageDetails { get; set; } + + [DataMember(Name="InclusionType", EmitDefaultValue=false)] + public StringValue? InclusionType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs new file mode 100644 index 000000000..48b5c0602 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmployerTaxesIncreasingApplWageDetail : Entity + { + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxName", EmitDefaultValue=false)] + public StringValue? TaxName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs new file mode 100644 index 000000000..beb5dde58 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmploymentDates : Entity + { + + [DataMember(Name="HireDate", EmitDefaultValue=false)] + public DateTimeValue? HireDate { get; set; } + + [DataMember(Name="TerminationDate", EmitDefaultValue=false)] + public DateTimeValue? TerminationDate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs new file mode 100644 index 000000000..456e06232 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmploymentHistoryRecord : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="PositionID", EmitDefaultValue=false)] + public StringValue? PositionID { get; set; } + + [DataMember(Name="RehireEligible", EmitDefaultValue=false)] + public BooleanValue? RehireEligible { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="StartReason", EmitDefaultValue=false)] + public StringValue? StartReason { get; set; } + + [DataMember(Name="Terminated", EmitDefaultValue=false)] + public BooleanValue? Terminated { get; set; } + + [DataMember(Name="TerminationReason", EmitDefaultValue=false)] + public StringValue? TerminationReason { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs new file mode 100644 index 000000000..982502021 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EmploymentRecord : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="FinalPayment", EmitDefaultValue=false)] + public GuidValue? FinalPayment { get; set; } + + [DataMember(Name="Position", EmitDefaultValue=false)] + public StringValue? Position { get; set; } + + [DataMember(Name="RehireEligible", EmitDefaultValue=false)] + public BooleanValue? RehireEligible { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="StartReason", EmitDefaultValue=false)] + public StringValue? StartReason { get; set; } + + [DataMember(Name="Terminated", EmitDefaultValue=false)] + public BooleanValue? Terminated { get; set; } + + [DataMember(Name="TerminationReason", EmitDefaultValue=false)] + public StringValue? TerminationReason { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs new file mode 100644 index 000000000..003f3d310 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs @@ -0,0 +1,91 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Event : Entity, ITopLevelEntity + { + + [DataMember(Name="AllDay", EmitDefaultValue=false)] + public BooleanValue? AllDay { get; set; } + + [DataMember(Name="Attendees", EmitDefaultValue=false)] + public List? Attendees { get; set; } + + [DataMember(Name="Body", EmitDefaultValue=false)] + public StringValue? Body { get; set; } + + [DataMember(Name="Category", EmitDefaultValue=false)] + public StringValue? Category { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="EndTime", EmitDefaultValue=false)] + public DateTimeValue? EndTime { get; set; } + + [DataMember(Name="Internal", EmitDefaultValue=false)] + public BooleanValue? Internal { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="Priority", EmitDefaultValue=false)] + public StringValue? Priority { get; set; } + + [DataMember(Name="RelatedActivities", EmitDefaultValue=false)] + public List? RelatedActivities { get; set; } + + [DataMember(Name="Reminder", EmitDefaultValue=false)] + public ReminderDetail? Reminder { get; set; } + + [DataMember(Name="ShowAs", EmitDefaultValue=false)] + public StringValue? ShowAs { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Summary", EmitDefaultValue=false)] + public StringValue? Summary { get; set; } + + [DataMember(Name="TimeActivity", EmitDefaultValue=false)] + public EventTimeActivity? TimeActivity { get; set; } + + [DataMember(Name="CreatedByID", EmitDefaultValue=false)] + public StringValue? CreatedByID { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] + public StringValue? RelatedEntityType { get; set; } + + [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] + public GuidValue? RelatedEntityNoteID { get; set; } + + [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] + public StringValue? RelatedEntityDescription { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs new file mode 100644 index 000000000..03b3b10a3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EventAttendee : Entity + { + + [DataMember(Name="Comment", EmitDefaultValue=false)] + public StringValue? Comment { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="EventNoteID", EmitDefaultValue=false)] + public GuidValue? EventNoteID { get; set; } + + [DataMember(Name="InvitationStatus", EmitDefaultValue=false)] + public StringValue? InvitationStatus { get; set; } + + [DataMember(Name="Key", EmitDefaultValue=false)] + public StringValue? Key { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="NameAttendeeName", EmitDefaultValue=false)] + public StringValue? NameAttendeeName { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public IntValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs new file mode 100644 index 000000000..06fcbec1e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class EventTimeActivity : Entity + { + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public StringValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="Overtime", EmitDefaultValue=false)] + public StringValue? Overtime { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs new file mode 100644 index 000000000..bfc45728d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseClaim : Entity, ITopLevelEntity + { + + [DataMember(Name="ApprovalDate", EmitDefaultValue=false)] + public DateTimeValue? ApprovalDate { get; set; } + + [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] + public List? ApprovalDetails { get; set; } + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="ClaimedBy", EmitDefaultValue=false)] + public StringValue? ClaimedBy { get; set; } + + [DataMember(Name="ClaimTotal", EmitDefaultValue=false)] + public DecimalValue? ClaimTotal { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="DepartmentID", EmitDefaultValue=false)] + public StringValue? DepartmentID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] + public ExpenseClaimFinancialDetail? FinancialDetails { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? ReciprocalRate { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] + public DecimalValue? VATExemptTotal { get; set; } + + [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] + public DecimalValue? VATTaxableTotal { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs new file mode 100644 index 000000000..60a9841a4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseClaimAPDocument : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs new file mode 100644 index 000000000..27a39af92 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs @@ -0,0 +1,111 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseClaimDetails : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="AmountInClaimCurrency", EmitDefaultValue=false)] + public DecimalValue? AmountInClaimCurrency { get; set; } + + [DataMember(Name="APRefNbr", EmitDefaultValue=false)] + public StringValue? APRefNbr { get; set; } + + [DataMember(Name="ARRefNbr", EmitDefaultValue=false)] + public StringValue? ARRefNbr { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ClaimAmount", EmitDefaultValue=false)] + public DecimalValue? ClaimAmount { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EmployeePart", EmitDefaultValue=false)] + public DecimalValue? EmployeePart { get; set; } + + [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccount { get; set; } + + [DataMember(Name="ExpenseItemID", EmitDefaultValue=false)] + public StringValue? ExpenseItemID { get; set; } + + [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? ExpenseSubaccount { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="NetAmount", EmitDefaultValue=false)] + public DecimalValue? NetAmount { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="TipAmount", EmitDefaultValue=false)] + public DecimalValue? TipAmount { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs new file mode 100644 index 000000000..cf3753aff --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseClaimFinancialDetail : Entity + { + + [DataMember(Name="APDocuments", EmitDefaultValue=false)] + public List? APDocuments { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="PosttoPeriod", EmitDefaultValue=false)] + public StringValue? PosttoPeriod { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs new file mode 100644 index 000000000..09ece1273 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseClaimTaxDetail : Entity + { + + [DataMember(Name="DeductibleTaxRate", EmitDefaultValue=false)] + public DecimalValue? DeductibleTaxRate { get; set; } + + [DataMember(Name="ExpenseAmount", EmitDefaultValue=false)] + public DecimalValue? ExpenseAmount { get; set; } + + [DataMember(Name="IncludeinVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeinVATExemptTotal { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs new file mode 100644 index 000000000..e9093c8c1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseReceipt : Entity, ITopLevelEntity + { + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ClaimAmount", EmitDefaultValue=false)] + public DecimalValue? ClaimAmount { get; set; } + + [DataMember(Name="ClaimedBy", EmitDefaultValue=false)] + public StringValue? ClaimedBy { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="ExpenseItemID", EmitDefaultValue=false)] + public StringValue? ExpenseItemID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ReceiptDetails", EmitDefaultValue=false)] + public ExpenseReceiptDetails? ReceiptDetails { get; set; } + + [DataMember(Name="ReceiptID", EmitDefaultValue=false)] + public StringValue? ReceiptID { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs new file mode 100644 index 000000000..2ff60288c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseReceiptDetails : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CurrancyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrancyRateTypeID { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EmployeePart", EmitDefaultValue=false)] + public DecimalValue? EmployeePart { get; set; } + + [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccount { get; set; } + + [DataMember(Name="ExpenseClaimID", EmitDefaultValue=false)] + public StringValue? ExpenseClaimID { get; set; } + + [DataMember(Name="ExpenseClaimStatus", EmitDefaultValue=false)] + public StringValue? ExpenseClaimStatus { get; set; } + + [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? ExpenseSubaccount { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? ReciprocalRate { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs new file mode 100644 index 000000000..ade5a321c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExpenseReceiptTaxDetails : Entity + { + + [DataMember(Name="DeductibleTaxRate", EmitDefaultValue=false)] + public DecimalValue? DeductibleTaxRate { get; set; } + + [DataMember(Name="ExpenseAmount", EmitDefaultValue=false)] + public DecimalValue? ExpenseAmount { get; set; } + + [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeInVATExemptTotal { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs new file mode 100644 index 000000000..02345249a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs @@ -0,0 +1,85 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ExternalCommitment : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedCOAmount { get; set; } + + [DataMember(Name="CommittedCOQty", EmitDefaultValue=false)] + public DecimalValue? CommittedCOQty { get; set; } + + [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedAmount { get; set; } + + [DataMember(Name="CommittedInvoicedQty", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedQty { get; set; } + + [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenAmount { get; set; } + + [DataMember(Name="CommittedOpenQty", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenQty { get; set; } + + [DataMember(Name="CommittedReceivedQty", EmitDefaultValue=false)] + public DecimalValue? CommittedReceivedQty { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OriginalCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? OriginalCommittedAmount { get; set; } + + [DataMember(Name="OriginalCommittedQty", EmitDefaultValue=false)] + public DecimalValue? OriginalCommittedQty { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="RelatedDocument", EmitDefaultValue=false)] + public StringValue? RelatedDocument { get; set; } + + [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedAmount { get; set; } + + [DataMember(Name="RevisedCommittedQty", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedQty { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs new file mode 100644 index 000000000..80b53f3b1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FOBPoint : Entity, ITopLevelEntity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="FOBPointID", EmitDefaultValue=false)] + public StringValue? FOBPointID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs new file mode 100644 index 000000000..3ccb776c7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FinancialPeriod : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="FinancialYear", EmitDefaultValue=false)] + public StringValue? FinancialYear { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NbrOfPeriods", EmitDefaultValue=false)] + public ShortValue? NbrOfPeriods { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="UserDefinedPeriods", EmitDefaultValue=false)] + public BooleanValue? UserDefinedPeriods { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs new file mode 100644 index 000000000..c915ddcbd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FinancialPeriodDetail : Entity + { + + [DataMember(Name="AdjustmentPeriod", EmitDefaultValue=false)] + public BooleanValue? AdjustmentPeriod { get; set; } + + [DataMember(Name="ClosedInAP", EmitDefaultValue=false)] + public BooleanValue? ClosedInAP { get; set; } + + [DataMember(Name="ClosedInAR", EmitDefaultValue=false)] + public BooleanValue? ClosedInAR { get; set; } + + [DataMember(Name="ClosedInCA", EmitDefaultValue=false)] + public BooleanValue? ClosedInCA { get; set; } + + [DataMember(Name="ClosedInFA", EmitDefaultValue=false)] + public BooleanValue? ClosedInFA { get; set; } + + [DataMember(Name="ClosedInIN", EmitDefaultValue=false)] + public BooleanValue? ClosedInIN { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="FinancialPeriodID", EmitDefaultValue=false)] + public StringValue? FinancialPeriodID { get; set; } + + [DataMember(Name="LengthInDays", EmitDefaultValue=false)] + public IntValue? LengthInDays { get; set; } + + [DataMember(Name="PeriodNbr", EmitDefaultValue=false)] + public StringValue? PeriodNbr { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs new file mode 100644 index 000000000..37e0925c1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FinancialSettings : Entity + { + + [DataMember(Name="BillSeparately", EmitDefaultValue=false)] + public BooleanValue? BillSeparately { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CashDiscountDate", EmitDefaultValue=false)] + public DateTimeValue? CashDiscountDate { get; set; } + + [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] + public StringValue? CustomerTaxZone { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] + public StringValue? EntityUsageType { get; set; } + + [DataMember(Name="InvoiceDate", EmitDefaultValue=false)] + public DateTimeValue? InvoiceDate { get; set; } + + [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] + public StringValue? InvoiceNbr { get; set; } + + [DataMember(Name="OriginalOrderNbr", EmitDefaultValue=false)] + public StringValue? OriginalOrderNbr { get; set; } + + [DataMember(Name="OriginalOrderType", EmitDefaultValue=false)] + public StringValue? OriginalOrderType { get; set; } + + [DataMember(Name="OverrideTaxZone", EmitDefaultValue=false)] + public BooleanValue? OverrideTaxZone { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs new file mode 100644 index 000000000..15d12a7ec --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FinancialYear : Entity, ITopLevelEntity + { + + [DataMember(Name="AdjustToPeriodStart", EmitDefaultValue=false)] + public BooleanValue? AdjustToPeriodStart { get; set; } + + [DataMember(Name="BelongsToNextYear", EmitDefaultValue=false)] + public BooleanValue? BelongsToNextYear { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="DayOfWeek", EmitDefaultValue=false)] + public StringValue? DayOfWeek { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="FinancialYearStartsOn", EmitDefaultValue=false)] + public DateTimeValue? FinancialYearStartsOn { get; set; } + + [DataMember(Name="FirstFinancialYear", EmitDefaultValue=false)] + public StringValue? FirstFinancialYear { get; set; } + + [DataMember(Name="FirstPeriodStartDate", EmitDefaultValue=false)] + public DateTimeValue? FirstPeriodStartDate { get; set; } + + [DataMember(Name="HasAdjustmentPeriod", EmitDefaultValue=false)] + public BooleanValue? HasAdjustmentPeriod { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LengthOfFinancialPeriodInDays", EmitDefaultValue=false)] + public ShortValue? LengthOfFinancialPeriodInDays { get; set; } + + [DataMember(Name="NbrOfFinancialPeriods", EmitDefaultValue=false)] + public ShortValue? NbrOfFinancialPeriods { get; set; } + + [DataMember(Name="PeriodsStartDayOfWeek", EmitDefaultValue=false)] + public StringValue? PeriodsStartDayOfWeek { get; set; } + + [DataMember(Name="PeriodType", EmitDefaultValue=false)] + public StringValue? PeriodType { get; set; } + + [DataMember(Name="UserDefinedPeriods", EmitDefaultValue=false)] + public BooleanValue? UserDefinedPeriods { get; set; } + + [DataMember(Name="YearEndCalculationMethod", EmitDefaultValue=false)] + public StringValue? YearEndCalculationMethod { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs new file mode 100644 index 000000000..b51da7bbd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class FinancialYearPeriodDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="PeriodNbr", EmitDefaultValue=false)] + public StringValue? PeriodNbr { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs new file mode 100644 index 000000000..402d5632c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class GarnishmentDetails : Entity + { + + [DataMember(Name="GarnCourtDate", EmitDefaultValue=false)] + public DateTimeValue? GarnCourtDate { get; set; } + + [DataMember(Name="GarnCourtName", EmitDefaultValue=false)] + public StringValue? GarnCourtName { get; set; } + + [DataMember(Name="GarnDocRefNbr", EmitDefaultValue=false)] + public StringValue? GarnDocRefNbr { get; set; } + + [DataMember(Name="GarnOrigAmount", EmitDefaultValue=false)] + public DecimalValue? GarnOrigAmount { get; set; } + + [DataMember(Name="GarnPaidAmount", EmitDefaultValue=false)] + public DecimalValue? GarnPaidAmount { get; set; } + + [DataMember(Name="GarnVendorID", EmitDefaultValue=false)] + public StringValue? GarnVendorID { get; set; } + + [DataMember(Name="GarnVendorInvDescr", EmitDefaultValue=false)] + public StringValue? GarnVendorInvDescr { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs new file mode 100644 index 000000000..e0cd72078 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ISVContacts : Entity, ITopLevelEntity + { + + [DataMember(Name="InternalContactsDetails", EmitDefaultValue=false)] + public List? InternalContactsDetails { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="Contact", EmitDefaultValue=false)] + public StringValue? Contact { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="ContactStatus", EmitDefaultValue=false)] + public StringValue? ContactStatus { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="EmployeeStatus", EmitDefaultValue=false)] + public StringValue? EmployeeStatus { get; set; } + + [DataMember(Name="UserStatus", EmitDefaultValue=false)] + public StringValue? UserStatus { get; set; } + + [DataMember(Name="Login", EmitDefaultValue=false)] + public StringValue? Login { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs new file mode 100644 index 000000000..48bd8f58f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ISVContactsDetail : Entity + { + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="Contact", EmitDefaultValue=false)] + public StringValue? Contact { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="ContactStatus", EmitDefaultValue=false)] + public StringValue? ContactStatus { get; set; } + + [DataMember(Name="EmployeeStatus", EmitDefaultValue=false)] + public StringValue? EmployeeStatus { get; set; } + + [DataMember(Name="Login", EmitDefaultValue=false)] + public StringValue? Login { get; set; } + + [DataMember(Name="UserStatus", EmitDefaultValue=false)] + public StringValue? UserStatus { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs new file mode 100644 index 000000000..c5edbf7c8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ISVSolution : Entity, ITopLevelEntity + { + + [DataMember(Name="Initials", EmitDefaultValue=false)] + public StringValue? Initials { get; set; } + + [DataMember(Name="SolutionCode", EmitDefaultValue=false)] + public StringValue? SolutionCode { get; set; } + + [DataMember(Name="SolutionClass", EmitDefaultValue=false)] + public StringValue? SolutionClass { get; set; } + + [DataMember(Name="SolutionName", EmitDefaultValue=false)] + public StringValue? SolutionName { get; set; } + + [DataMember(Name="CurrentRevision", EmitDefaultValue=false)] + public StringValue? CurrentRevision { get; set; } + + [DataMember(Name="PublishedonMarketplace", EmitDefaultValue=false)] + public BooleanValue? PublishedonMarketplace { get; set; } + + [DataMember(Name="ISV", EmitDefaultValue=false)] + public StringValue? ISV { get; set; } + + [DataMember(Name="SolutionStage", EmitDefaultValue=false)] + public StringValue? SolutionStage { get; set; } + + [DataMember(Name="TAM", EmitDefaultValue=false)] + public StringValue? TAM { get; set; } + + [DataMember(Name="TAMEmployeeName", EmitDefaultValue=false)] + public StringValue? TAMEmployeeName { get; set; } + + [DataMember(Name="ISVCERTND", EmitDefaultValue=false)] + public StringValue? ISVCERTND { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="Repository", EmitDefaultValue=false)] + public List? Repository { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs new file mode 100644 index 000000000..299e59c63 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryAdjustment : Entity, ITopLevelEntity + { + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalCost", EmitDefaultValue=false)] + public DecimalValue? TotalCost { get; set; } + + [DataMember(Name="TotalQty", EmitDefaultValue=false)] + public DecimalValue? TotalQty { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs new file mode 100644 index 000000000..b22b8f8e8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryAdjustmentDetail : Entity + { + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CostLayerType", EmitDefaultValue=false)] + public StringValue? CostLayerType { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] + public DecimalValue? ExtendedCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="ReceiptNbr", EmitDefaultValue=false)] + public StringValue? ReceiptNbr { get; set; } + + [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] + public StringValue? SpecialOrderNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs new file mode 100644 index 000000000..f1c7d0c93 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs @@ -0,0 +1,112 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryAllocationInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="Available", EmitDefaultValue=false)] + public DecimalValue? Available { get; set; } + + [DataMember(Name="AvailableForIssue", EmitDefaultValue=false)] + public DecimalValue? AvailableForIssue { get; set; } + + [DataMember(Name="AvailableForShipping", EmitDefaultValue=false)] + public DecimalValue? AvailableForShipping { get; set; } + + [DataMember(Name="BaseUnit", EmitDefaultValue=false)] + public StringValue? BaseUnit { get; set; } + + [DataMember(Name="InTransit", EmitDefaultValue=false)] + public DecimalValue? InTransit { get; set; } + + [DataMember(Name="InTransitToSO", EmitDefaultValue=false)] + public DecimalValue? InTransitToSO { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="InventoryIssues", EmitDefaultValue=false)] + public DecimalValue? InventoryIssues { get; set; } + + [DataMember(Name="InventoryReceipts", EmitDefaultValue=false)] + public DecimalValue? InventoryReceipts { get; set; } + + [DataMember(Name="KitAssemblyDemand", EmitDefaultValue=false)] + public DecimalValue? KitAssemblyDemand { get; set; } + + [DataMember(Name="KitAssemblySupply", EmitDefaultValue=false)] + public DecimalValue? KitAssemblySupply { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="OnHand", EmitDefaultValue=false)] + public DecimalValue? OnHand { get; set; } + + [DataMember(Name="OnLocationNotAvailable", EmitDefaultValue=false)] + public DecimalValue? OnLocationNotAvailable { get; set; } + + [DataMember(Name="PurchaseForSO", EmitDefaultValue=false)] + public DecimalValue? PurchaseForSO { get; set; } + + [DataMember(Name="PurchaseForSOPrepared", EmitDefaultValue=false)] + public DecimalValue? PurchaseForSOPrepared { get; set; } + + [DataMember(Name="PurchaseOrders", EmitDefaultValue=false)] + public DecimalValue? PurchaseOrders { get; set; } + + [DataMember(Name="PurchasePrepared", EmitDefaultValue=false)] + public DecimalValue? PurchasePrepared { get; set; } + + [DataMember(Name="PurchaseReceipts", EmitDefaultValue=false)] + public DecimalValue? PurchaseReceipts { get; set; } + + [DataMember(Name="ReceiptsForSO", EmitDefaultValue=false)] + public DecimalValue? ReceiptsForSO { get; set; } + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + [DataMember(Name="SOAllocated", EmitDefaultValue=false)] + public DecimalValue? SOAllocated { get; set; } + + [DataMember(Name="SOBackOrdered", EmitDefaultValue=false)] + public DecimalValue? SOBackOrdered { get; set; } + + [DataMember(Name="SOBooked", EmitDefaultValue=false)] + public DecimalValue? SOBooked { get; set; } + + [DataMember(Name="SOPrepared", EmitDefaultValue=false)] + public DecimalValue? SOPrepared { get; set; } + + [DataMember(Name="SOShipped", EmitDefaultValue=false)] + public DecimalValue? SOShipped { get; set; } + + [DataMember(Name="SOToPurchase", EmitDefaultValue=false)] + public DecimalValue? SOToPurchase { get; set; } + + [DataMember(Name="TotalAddition", EmitDefaultValue=false)] + public DecimalValue? TotalAddition { get; set; } + + [DataMember(Name="TotalDeduction", EmitDefaultValue=false)] + public DecimalValue? TotalDeduction { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs new file mode 100644 index 000000000..adf249124 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryAllocationRow : Entity + { + + [DataMember(Name="AllocationDate", EmitDefaultValue=false)] + public DateTimeValue? AllocationDate { get; set; } + + [DataMember(Name="AllocationType", EmitDefaultValue=false)] + public StringValue? AllocationType { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="Expired", EmitDefaultValue=false)] + public BooleanValue? Expired { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Module", EmitDefaultValue=false)] + public StringValue? Module { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs new file mode 100644 index 000000000..a41b1f267 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryFileUrls : Entity + { + + [DataMember(Name="FileType", EmitDefaultValue=false)] + public StringValue? FileType { get; set; } + + [DataMember(Name="FileURL", EmitDefaultValue=false)] + public StringValue? FileURL { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs new file mode 100644 index 000000000..a9d5d29d7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryIssue : Entity, ITopLevelEntity + { + + [DataMember(Name="ControlAmount", EmitDefaultValue=false)] + public DecimalValue? ControlAmount { get; set; } + + [DataMember(Name="ControlQty", EmitDefaultValue=false)] + public DecimalValue? ControlQty { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalAmount", EmitDefaultValue=false)] + public DecimalValue? TotalAmount { get; set; } + + [DataMember(Name="TotalCost", EmitDefaultValue=false)] + public DecimalValue? TotalCost { get; set; } + + [DataMember(Name="TotalQty", EmitDefaultValue=false)] + public DecimalValue? TotalQty { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs new file mode 100644 index 000000000..64a1cdb11 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs @@ -0,0 +1,87 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryIssueDetail : Entity + { + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CostLayerType", EmitDefaultValue=false)] + public StringValue? CostLayerType { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="ExtCost", EmitDefaultValue=false)] + public DecimalValue? ExtCost { get; set; } + + [DataMember(Name="ExtPrice", EmitDefaultValue=false)] + public DecimalValue? ExtPrice { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNumber", EmitDefaultValue=false)] + public IntValue? LineNumber { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] + public StringValue? SpecialOrderNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TranType", EmitDefaultValue=false)] + public StringValue? TranType { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs new file mode 100644 index 000000000..2b93ae19d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryIssueDetailAllocation : Entity + { + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="SplitLineNumber", EmitDefaultValue=false)] + public IntValue? SplitLineNumber { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs new file mode 100644 index 000000000..dcc7a8d6c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryItemCrossReference : Entity + { + + [DataMember(Name="AlternateID", EmitDefaultValue=false)] + public StringValue? AlternateID { get; set; } + + [DataMember(Name="AlternateType", EmitDefaultValue=false)] + public StringValue? AlternateType { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="VendorOrCustomer", EmitDefaultValue=false)] + public StringValue? VendorOrCustomer { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs new file mode 100644 index 000000000..c4e848c6e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryItemUOMConversion : Entity + { + + [DataMember(Name="ConversionFactor", EmitDefaultValue=false)] + public DecimalValue? ConversionFactor { get; set; } + + [DataMember(Name="FromUOM", EmitDefaultValue=false)] + public StringValue? FromUOM { get; set; } + + [DataMember(Name="MultiplyOrDivide", EmitDefaultValue=false)] + public StringValue? MultiplyOrDivide { get; set; } + + [DataMember(Name="ToUOM", EmitDefaultValue=false)] + public StringValue? ToUOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs new file mode 100644 index 000000000..82f7f7737 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryQuantityAvailable : Entity, ITopLevelEntity + { + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs new file mode 100644 index 000000000..137b61cff --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryQuantityAvailableDetail : Entity + { + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="QtyAvailable", EmitDefaultValue=false)] + public DecimalValue? QtyAvailable { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs new file mode 100644 index 000000000..21789251f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryReceipt : Entity, ITopLevelEntity + { + + [DataMember(Name="ControlCost", EmitDefaultValue=false)] + public DecimalValue? ControlCost { get; set; } + + [DataMember(Name="ControlQty", EmitDefaultValue=false)] + public DecimalValue? ControlQty { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalCost", EmitDefaultValue=false)] + public DecimalValue? TotalCost { get; set; } + + [DataMember(Name="TotalQty", EmitDefaultValue=false)] + public DecimalValue? TotalQty { get; set; } + + [DataMember(Name="TransferNbr", EmitDefaultValue=false)] + public StringValue? TransferNbr { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs new file mode 100644 index 000000000..9803bb8bc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryReceiptDetail : Entity + { + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CostLayerType", EmitDefaultValue=false)] + public StringValue? CostLayerType { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="ExtCost", EmitDefaultValue=false)] + public DecimalValue? ExtCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNumber", EmitDefaultValue=false)] + public IntValue? LineNumber { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="POReceiptNbr", EmitDefaultValue=false)] + public StringValue? POReceiptNbr { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] + public StringValue? SpecialOrderNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs new file mode 100644 index 000000000..af928f6b6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventoryReceiptDetailAllocation : Entity + { + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="SplitLineNumber", EmitDefaultValue=false)] + public IntValue? SplitLineNumber { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs new file mode 100644 index 000000000..fcd69b40d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventorySummaryInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="ExpandByLotSerialNbr", EmitDefaultValue=false)] + public BooleanValue? ExpandByLotSerialNbr { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs new file mode 100644 index 000000000..a60fb1361 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InventorySummaryRow : Entity + { + + [DataMember(Name="BaseUOM", EmitDefaultValue=false)] + public StringValue? BaseUOM { get; set; } + + [DataMember(Name="EstimatedTotalCost", EmitDefaultValue=false)] + public DecimalValue? EstimatedTotalCost { get; set; } + + [DataMember(Name="EstimatedUnitCost", EmitDefaultValue=false)] + public DecimalValue? EstimatedUnitCost { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="QtyAvailable", EmitDefaultValue=false)] + public DecimalValue? QtyAvailable { get; set; } + + [DataMember(Name="QtyAvailableForShipment", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableForShipment { get; set; } + + [DataMember(Name="QtyNotAvailable", EmitDefaultValue=false)] + public DecimalValue? QtyNotAvailable { get; set; } + + [DataMember(Name="QtyOnHand", EmitDefaultValue=false)] + public DecimalValue? QtyOnHand { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs new file mode 100644 index 000000000..f543b5ebf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs @@ -0,0 +1,115 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Invoice : Entity, ITopLevelEntity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="ApplicationsCreditMemo", EmitDefaultValue=false)] + public List? ApplicationsCreditMemo { get; set; } + + [DataMember(Name="ApplicationsDefault", EmitDefaultValue=false)] + public List? ApplicationsDefault { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="BillingPrinted", EmitDefaultValue=false)] + public BooleanValue? BillingPrinted { get; set; } + + [DataMember(Name="BillToContact", EmitDefaultValue=false)] + public DocContact? BillToContact { get; set; } + + [DataMember(Name="BillToContactOverride", EmitDefaultValue=false)] + public BooleanValue? BillToContactOverride { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="DiscountDetails", EmitDefaultValue=false)] + public List? DiscountDetails { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LinkARAccount", EmitDefaultValue=false)] + public StringValue? LinkARAccount { get; set; } + + [DataMember(Name="LinkBranch", EmitDefaultValue=false)] + public StringValue? LinkBranch { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="ShipToContact", EmitDefaultValue=false)] + public DocContact? ShipToContact { get; set; } + + [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToContactOverride { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] + public BooleanValue? IsTaxValid { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs new file mode 100644 index 000000000..19c424ec6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceApplicationsCreditMemo : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs new file mode 100644 index 000000000..1c55f3623 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceApplicationsDefault : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] + public DecimalValue? CashDiscountTaken { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="PaymentDate", EmitDefaultValue=false)] + public DateTimeValue? PaymentDate { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs new file mode 100644 index 000000000..93d480373 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] + public BooleanValue? CalculateDiscountsOnImport { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="ExtendedPrice", EmitDefaultValue=false)] + public DecimalValue? ExtendedPrice { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs new file mode 100644 index 000000000..36e6c21ce --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceDiscountDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountableAmount { get; set; } + + [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] + public DecimalValue? DiscountableQty { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="ExternalDiscountCode", EmitDefaultValue=false)] + public StringValue? ExternalDiscountCode { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="RetainedDiscount", EmitDefaultValue=false)] + public DecimalValue? RetainedDiscount { get; set; } + + [DataMember(Name="SequenceID", EmitDefaultValue=false)] + public StringValue? SequenceID { get; set; } + + [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] + public BooleanValue? SkipDiscount { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs new file mode 100644 index 000000000..bcbd84987 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class InvoiceTaxDetail : Entity + { + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs new file mode 100644 index 000000000..9caae6b82 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemClass : Entity, ITopLevelEntity + { + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="AvailabilityCalculationRule", EmitDefaultValue=false)] + public StringValue? AvailabilityCalculationRule { get; set; } + + [DataMember(Name="BaseUOM", EmitDefaultValue=false)] + public StringValue? BaseUOM { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="CountryOfOrigin", EmitDefaultValue=false)] + public StringValue? CountryOfOrigin { get; set; } + + [DataMember(Name="DefaultWarehouseID", EmitDefaultValue=false)] + public StringValue? DefaultWarehouseID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ItemType", EmitDefaultValue=false)] + public StringValue? ItemType { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LotSerialClass", EmitDefaultValue=false)] + public StringValue? LotSerialClass { get; set; } + + [DataMember(Name="PostingClass", EmitDefaultValue=false)] + public StringValue? PostingClass { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="PurchaseUOM", EmitDefaultValue=false)] + public StringValue? PurchaseUOM { get; set; } + + [DataMember(Name="SalesUOM", EmitDefaultValue=false)] + public StringValue? SalesUOM { get; set; } + + [DataMember(Name="StockItem", EmitDefaultValue=false)] + public BooleanValue? StockItem { get; set; } + + [DataMember(Name="TariffCode", EmitDefaultValue=false)] + public StringValue? TariffCode { get; set; } + + [DataMember(Name="TaxCategoryID", EmitDefaultValue=false)] + public StringValue? TaxCategoryID { get; set; } + + [DataMember(Name="ValuationMethod", EmitDefaultValue=false)] + public StringValue? ValuationMethod { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs new file mode 100644 index 000000000..1e174d859 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemClassAtrribute : Entity + { + + [DataMember(Name="AttributeID", EmitDefaultValue=false)] + public StringValue? AttributeID { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public ShortValue? SortOrder { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs new file mode 100644 index 000000000..80da21d27 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemPriceClassesDetails : Entity + { + + [DataMember(Name="PriceClassID", EmitDefaultValue=false)] + public StringValue? PriceClassID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs new file mode 100644 index 000000000..462b15b51 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemSalesCategory : Entity, ITopLevelEntity + { + + [DataMember(Name="CategoryID", EmitDefaultValue=false)] + public IntValue? CategoryID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Members", EmitDefaultValue=false)] + public List? Members { get; set; } + + [DataMember(Name="ParentCategoryID", EmitDefaultValue=false)] + public IntValue? ParentCategoryID { get; set; } + + [DataMember(Name="Path", EmitDefaultValue=false)] + public StringValue? Path { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public IntValue? SortOrder { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs new file mode 100644 index 000000000..16ebfa22c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemSalesCategoryMember : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="ItemClass", EmitDefaultValue=false)] + public StringValue? ItemClass { get; set; } + + [DataMember(Name="ItemStatus", EmitDefaultValue=false)] + public StringValue? ItemStatus { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs new file mode 100644 index 000000000..a9a70ece7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs @@ -0,0 +1,124 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemWarehouse : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="DefaultIssueFrom", EmitDefaultValue=false)] + public StringValue? DefaultIssueFrom { get; set; } + + [DataMember(Name="DefaultReceiptTo", EmitDefaultValue=false)] + public StringValue? DefaultReceiptTo { get; set; } + + [DataMember(Name="DefaultSubitem", EmitDefaultValue=false)] + public StringValue? DefaultSubitem { get; set; } + + [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] + public StringValue? InventoryAccount { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] + public StringValue? InventorySubaccount { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="MaxQty", EmitDefaultValue=false)] + public DecimalValue? MaxQty { get; set; } + + [DataMember(Name="MSRP", EmitDefaultValue=false)] + public DecimalValue? MSRP { get; set; } + + [DataMember(Name="OverrideInventoryAccountSubaccount", EmitDefaultValue=false)] + public BooleanValue? OverrideInventoryAccountSubaccount { get; set; } + + [DataMember(Name="OverridePreferredVendor", EmitDefaultValue=false)] + public BooleanValue? OverridePreferredVendor { get; set; } + + [DataMember(Name="OverridePrice", EmitDefaultValue=false)] + public BooleanValue? OverridePrice { get; set; } + + [DataMember(Name="OverrideReplenishmentSettings", EmitDefaultValue=false)] + public BooleanValue? OverrideReplenishmentSettings { get; set; } + + [DataMember(Name="OverrideServiceLevel", EmitDefaultValue=false)] + public BooleanValue? OverrideServiceLevel { get; set; } + + [DataMember(Name="OverrideStandardCost", EmitDefaultValue=false)] + public BooleanValue? OverrideStandardCost { get; set; } + + [DataMember(Name="OverrideProductManager", EmitDefaultValue=false)] + public BooleanValue? OverrideProductManager { get; set; } + + [DataMember(Name="OverrideMaxQty", EmitDefaultValue=false)] + public BooleanValue? OverrideMaxQty { get; set; } + + [DataMember(Name="OverrideReorderPoint", EmitDefaultValue=false)] + public BooleanValue? OverrideReorderPoint { get; set; } + + [DataMember(Name="OverrideSafetyStock", EmitDefaultValue=false)] + public BooleanValue? OverrideSafetyStock { get; set; } + + [DataMember(Name="PreferredLocation", EmitDefaultValue=false)] + public StringValue? PreferredLocation { get; set; } + + [DataMember(Name="PreferredVendor", EmitDefaultValue=false)] + public StringValue? PreferredVendor { get; set; } + + [DataMember(Name="ProductManager", EmitDefaultValue=false)] + public StringValue? ProductManager { get; set; } + + [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] + public StringValue? ProductWorkgroup { get; set; } + + [DataMember(Name="ReorderPoint", EmitDefaultValue=false)] + public DecimalValue? ReorderPoint { get; set; } + + [DataMember(Name="ReplenishmentClass", EmitDefaultValue=false)] + public StringValue? ReplenishmentClass { get; set; } + + [DataMember(Name="ReplenishmentMethod", EmitDefaultValue=false)] + public StringValue? ReplenishmentMethod { get; set; } + + [DataMember(Name="ReplenishmentSource", EmitDefaultValue=false)] + public StringValue? ReplenishmentSource { get; set; } + + [DataMember(Name="ReplenishmentWarehouse", EmitDefaultValue=false)] + public StringValue? ReplenishmentWarehouse { get; set; } + + [DataMember(Name="SafetyStock", EmitDefaultValue=false)] + public DecimalValue? SafetyStock { get; set; } + + [DataMember(Name="Seasonality", EmitDefaultValue=false)] + public StringValue? Seasonality { get; set; } + + [DataMember(Name="ServiceLevel", EmitDefaultValue=false)] + public DecimalValue? ServiceLevel { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs new file mode 100644 index 000000000..f7b446297 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ItemsDetails : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs new file mode 100644 index 000000000..b98d68212 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class JournalTransaction : Entity, ITopLevelEntity + { + + [DataMember(Name="BatchNbr", EmitDefaultValue=false)] + public StringValue? BatchNbr { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LedgerID", EmitDefaultValue=false)] + public StringValue? LedgerID { get; set; } + + [DataMember(Name="Module", EmitDefaultValue=false)] + public StringValue? Module { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TransactionDate", EmitDefaultValue=false)] + public DateTimeValue? TransactionDate { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs new file mode 100644 index 000000000..a51489933 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class JournalTransactionDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CreditAmount", EmitDefaultValue=false)] + public DecimalValue? CreditAmount { get; set; } + + [DataMember(Name="DebitAmount", EmitDefaultValue=false)] + public DecimalValue? DebitAmount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="IsNonPM", EmitDefaultValue=false)] + public BooleanValue? IsNonPM { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="NonBillable", EmitDefaultValue=false)] + public BooleanValue? NonBillable { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="ProjectTransactionID", EmitDefaultValue=false)] + public LongValue? ProjectTransactionID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="VendorOrCustomer", EmitDefaultValue=false)] + public StringValue? VendorOrCustomer { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs new file mode 100644 index 000000000..74e6d7a8d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs @@ -0,0 +1,79 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitAssembly : Entity, ITopLevelEntity + { + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="KitInventoryID", EmitDefaultValue=false)] + public StringValue? KitInventoryID { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="NonStockComponents", EmitDefaultValue=false)] + public List? NonStockComponents { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Revision", EmitDefaultValue=false)] + public StringValue? Revision { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="StockComponents", EmitDefaultValue=false)] + public List? StockComponents { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs new file mode 100644 index 000000000..3874e63a6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitAssemblyAllocation : Entity + { + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] + public IntValue? SplitLineNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs new file mode 100644 index 000000000..4818a77c6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitAssemblyNonStockComponent : Entity + { + + [DataMember(Name="ComponentQty", EmitDefaultValue=false)] + public DecimalValue? ComponentQty { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="NonStockInventoryID", EmitDefaultValue=false)] + public StringValue? NonStockInventoryID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs new file mode 100644 index 000000000..1640b6786 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitAssemblyStockComponent : Entity + { + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="ComponentQty", EmitDefaultValue=false)] + public DecimalValue? ComponentQty { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="StockInventoryID", EmitDefaultValue=false)] + public StringValue? StockInventoryID { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs new file mode 100644 index 000000000..237155e74 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitAssemblyStockComponentAllocation : Entity + { + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] + public IntValue? SplitLineNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs new file mode 100644 index 000000000..e0964ff37 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitNonStockComponent : Entity + { + + [DataMember(Name="AllowComponentQtyVariance", EmitDefaultValue=false)] + public BooleanValue? AllowComponentQtyVariance { get; set; } + + [DataMember(Name="ComponentQty", EmitDefaultValue=false)] + public DecimalValue? ComponentQty { get; set; } + + [DataMember(Name="MaxComponentQty", EmitDefaultValue=false)] + public DecimalValue? MaxComponentQty { get; set; } + + [DataMember(Name="MinComponentQty", EmitDefaultValue=false)] + public DecimalValue? MinComponentQty { get; set; } + + [DataMember(Name="NonStockInventoryID", EmitDefaultValue=false)] + public StringValue? NonStockInventoryID { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs new file mode 100644 index 000000000..5e0d604fe --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitSpecification : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="IsNonStock", EmitDefaultValue=false)] + public BooleanValue? IsNonStock { get; set; } + + [DataMember(Name="KitInventoryID", EmitDefaultValue=false)] + public StringValue? KitInventoryID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NonStockComponents", EmitDefaultValue=false)] + public List? NonStockComponents { get; set; } + + [DataMember(Name="RevisionID", EmitDefaultValue=false)] + public StringValue? RevisionID { get; set; } + + [DataMember(Name="StockComponents", EmitDefaultValue=false)] + public List? StockComponents { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs new file mode 100644 index 000000000..74b3fb306 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class KitStockComponent : Entity + { + + [DataMember(Name="AllowComponentQtyVariance", EmitDefaultValue=false)] + public BooleanValue? AllowComponentQtyVariance { get; set; } + + [DataMember(Name="ComponentQty", EmitDefaultValue=false)] + public DecimalValue? ComponentQty { get; set; } + + [DataMember(Name="MaxComponentQty", EmitDefaultValue=false)] + public DecimalValue? MaxComponentQty { get; set; } + + [DataMember(Name="MinComponentQty", EmitDefaultValue=false)] + public DecimalValue? MinComponentQty { get; set; } + + [DataMember(Name="StockInventoryID", EmitDefaultValue=false)] + public StringValue? StockInventoryID { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs new file mode 100644 index 000000000..548bb2b69 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LaborCostRate : Entity, ITopLevelEntity + { + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="Employee", EmitDefaultValue=false)] + public StringValue? Employee { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="LaborRateType", EmitDefaultValue=false)] + public StringValue? LaborRateType { get; set; } + + [DataMember(Name="UnionLocal", EmitDefaultValue=false)] + public StringValue? UnionLocal { get; set; } + + [DataMember(Name="Results", EmitDefaultValue=false)] + public List? Results { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs new file mode 100644 index 000000000..86c7af925 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LaborRate : Entity + { + + [DataMember(Name="AnnualRate", EmitDefaultValue=false)] + public DecimalValue? AnnualRate { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="HourlyRate", EmitDefaultValue=false)] + public DecimalValue? HourlyRate { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LaborRateType", EmitDefaultValue=false)] + public StringValue? LaborRateType { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="RegularHoursPerWeek", EmitDefaultValue=false)] + public DecimalValue? RegularHoursPerWeek { get; set; } + + [DataMember(Name="TypeOfEmployment", EmitDefaultValue=false)] + public StringValue? TypeOfEmployment { get; set; } + + [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] + public StringValue? UnionLocalID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs new file mode 100644 index 000000000..0bfbe8e5e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs @@ -0,0 +1,184 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Lead : Entity, ITopLevelEntity + { + + [DataMember(Name="Activities", EmitDefaultValue=false)] + public List? Activities { get; set; } + + [DataMember(Name="Address", EmitDefaultValue=false)] + public Address? Address { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="Campaigns", EmitDefaultValue=false)] + public List? Campaigns { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="ContactMethod", EmitDefaultValue=false)] + public StringValue? ContactMethod { get; set; } + + [DataMember(Name="DoNotCall", EmitDefaultValue=false)] + public BooleanValue? DoNotCall { get; set; } + + [DataMember(Name="DoNotEmail", EmitDefaultValue=false)] + public BooleanValue? DoNotEmail { get; set; } + + [DataMember(Name="DoNotFax", EmitDefaultValue=false)] + public BooleanValue? DoNotFax { get; set; } + + [DataMember(Name="DoNotMail", EmitDefaultValue=false)] + public BooleanValue? DoNotMail { get; set; } + + [DataMember(Name="Duplicate", EmitDefaultValue=false)] + public StringValue? Duplicate { get; set; } + + [DataMember(Name="DuplicateFound", EmitDefaultValue=false)] + public BooleanValue? DuplicateFound { get; set; } + + [DataMember(Name="Duplicates", EmitDefaultValue=false)] + public List? Duplicates { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Fax", EmitDefaultValue=false)] + public StringValue? Fax { get; set; } + + [DataMember(Name="FaxType", EmitDefaultValue=false)] + public StringValue? FaxType { get; set; } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + + [DataMember(Name="LanguageOrLocale", EmitDefaultValue=false)] + public StringValue? LanguageOrLocale { get; set; } + + [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastIncomingActivity { get; set; } + + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + + [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] + public DateTimeValue? LastOutgoingActivity { get; set; } + + [DataMember(Name="LeadClass", EmitDefaultValue=false)] + public StringValue? LeadClass { get; set; } + + [DataMember(Name="LeadDisplayName", EmitDefaultValue=false)] + public StringValue? LeadDisplayName { get; set; } + + [DataMember(Name="LeadID", EmitDefaultValue=false)] + public IntValue? LeadID { get; set; } + + [DataMember(Name="MarketingLists", EmitDefaultValue=false)] + public List? MarketingLists { get; set; } + + [DataMember(Name="NoMarketing", EmitDefaultValue=false)] + public BooleanValue? NoMarketing { get; set; } + + [DataMember(Name="NoMassMail", EmitDefaultValue=false)] + public BooleanValue? NoMassMail { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] + public StringValue? OwnerEmployeeName { get; set; } + + [DataMember(Name="ParentAccount", EmitDefaultValue=false)] + public StringValue? ParentAccount { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + + [DataMember(Name="Phone3", EmitDefaultValue=false)] + public StringValue? Phone3 { get; set; } + + [DataMember(Name="Phone3Type", EmitDefaultValue=false)] + public StringValue? Phone3Type { get; set; } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + + [DataMember(Name="Relations", EmitDefaultValue=false)] + public List? Relations { get; set; } + + [DataMember(Name="Source", EmitDefaultValue=false)] + public StringValue? Source { get; set; } + + [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] + public StringValue? SourceCampaign { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Title", EmitDefaultValue=false)] + public StringValue? Title { get; set; } + + [DataMember(Name="WebSite", EmitDefaultValue=false)] + public StringValue? WebSite { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] + public StringValue? WorkgroupDescription { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="RefContactID", EmitDefaultValue=false)] + public IntValue? RefContactID { get; set; } + + [DataMember(Name="ConvertedBy", EmitDefaultValue=false)] + public StringValue? ConvertedBy { get; set; } + + [DataMember(Name="QualificationDate", EmitDefaultValue=false)] + public DateTimeValue? QualificationDate { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs new file mode 100644 index 000000000..51381513e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Ledger : Entity, ITopLevelEntity + { + + [DataMember(Name="Branches", EmitDefaultValue=false)] + public List? Branches { get; set; } + + [DataMember(Name="Companies", EmitDefaultValue=false)] + public List? Companies { get; set; } + + [DataMember(Name="ConsolidationSource", EmitDefaultValue=false)] + public BooleanValue? ConsolidationSource { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LedgerID", EmitDefaultValue=false)] + public StringValue? LedgerID { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs new file mode 100644 index 000000000..9aa22169d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LedgerBranches : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="BranchName", EmitDefaultValue=false)] + public StringValue? BranchName { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs new file mode 100644 index 000000000..56c547ef3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LedgerCompanies : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Company", EmitDefaultValue=false)] + public StringValue? Company { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="CompanyType", EmitDefaultValue=false)] + public StringValue? CompanyType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs new file mode 100644 index 000000000..f28802a16 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LotSerialClass : Entity, ITopLevelEntity + { + + [DataMember(Name="AssignmentMethod", EmitDefaultValue=false)] + public StringValue? AssignmentMethod { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="IssueMethod", EmitDefaultValue=false)] + public StringValue? IssueMethod { get; set; } + + [DataMember(Name="Segments", EmitDefaultValue=false)] + public List? Segments { get; set; } + + [DataMember(Name="TrackExpirationDate", EmitDefaultValue=false)] + public BooleanValue? TrackExpirationDate { get; set; } + + [DataMember(Name="TrackingMethod", EmitDefaultValue=false)] + public StringValue? TrackingMethod { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs new file mode 100644 index 000000000..70e94e0e5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class LotSerialClassSegment : Entity + { + + [DataMember(Name="SegmentNbr", EmitDefaultValue=false)] + public ShortValue? SegmentNbr { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs new file mode 100644 index 000000000..2fcf6c41e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class MarketingListDetail : Entity + { + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="DynamicList", EmitDefaultValue=false)] + public BooleanValue? DynamicList { get; set; } + + [DataMember(Name="Format", EmitDefaultValue=false)] + public StringValue? Format { get; set; } + + [DataMember(Name="ListName", EmitDefaultValue=false)] + public StringValue? ListName { get; set; } + + [DataMember(Name="MarketingListID", EmitDefaultValue=false)] + public IntValue? MarketingListID { get; set; } + + [DataMember(Name="Subscribed", EmitDefaultValue=false)] + public BooleanValue? Subscribed { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs new file mode 100644 index 000000000..aa80319aa --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class MatrixItems : Entity + { + + [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] + public DecimalValue? DefaultPrice { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="MSRP", EmitDefaultValue=false)] + public DecimalValue? MSRP { get; set; } + + [DataMember(Name="ItemStatus", EmitDefaultValue=false)] + public StringValue? ItemStatus { get; set; } + + [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] + public BooleanValue? ExportToExternal { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs new file mode 100644 index 000000000..1bf43dd0c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs @@ -0,0 +1,202 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class NonStockItem : Entity, ITopLevelEntity + { + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BaseUnit", EmitDefaultValue=false)] + public StringValue? BaseUnit { get; set; } + + [DataMember(Name="CrossReferences", EmitDefaultValue=false)] + public List? CrossReferences { get; set; } + + [DataMember(Name="CurrentCost", EmitDefaultValue=false)] + public DecimalValue? CurrentCost { get; set; } + + [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] + public DecimalValue? DefaultPrice { get; set; } + + [DataMember(Name="DeferralAccount", EmitDefaultValue=false)] + public StringValue? DeferralAccount { get; set; } + + [DataMember(Name="DeferralSubaccount", EmitDefaultValue=false)] + public StringValue? DeferralSubaccount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccount { get; set; } + + [DataMember(Name="ExpenseAccrualAccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccrualAccount { get; set; } + + [DataMember(Name="ExpenseAccrualSubaccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccrualSubaccount { get; set; } + + [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? ExpenseSubaccount { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="IsKit", EmitDefaultValue=false)] + public BooleanValue? IsKit { get; set; } + + [DataMember(Name="ItemClass", EmitDefaultValue=false)] + public StringValue? ItemClass { get; set; } + + [DataMember(Name="ItemStatus", EmitDefaultValue=false)] + public StringValue? ItemStatus { get; set; } + + [DataMember(Name="ItemType", EmitDefaultValue=false)] + public StringValue? ItemType { get; set; } + + [DataMember(Name="LastCost", EmitDefaultValue=false)] + public DecimalValue? LastCost { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PendingCost", EmitDefaultValue=false)] + public DecimalValue? PendingCost { get; set; } + + [DataMember(Name="PendingCostDate", EmitDefaultValue=false)] + public DateTimeValue? PendingCostDate { get; set; } + + [DataMember(Name="POAccrualAccount", EmitDefaultValue=false)] + public StringValue? POAccrualAccount { get; set; } + + [DataMember(Name="POAccrualSubaccount", EmitDefaultValue=false)] + public StringValue? POAccrualSubaccount { get; set; } + + [DataMember(Name="PostingClass", EmitDefaultValue=false)] + public StringValue? PostingClass { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="PurchasePriceVarianceAccount", EmitDefaultValue=false)] + public StringValue? PurchasePriceVarianceAccount { get; set; } + + [DataMember(Name="PurchasePriceVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? PurchasePriceVarianceSubaccount { get; set; } + + [DataMember(Name="PurchaseUnit", EmitDefaultValue=false)] + public StringValue? PurchaseUnit { get; set; } + + [DataMember(Name="ReasonCodeSubaccount", EmitDefaultValue=false)] + public StringValue? ReasonCodeSubaccount { get; set; } + + [DataMember(Name="RequireReceipt", EmitDefaultValue=false)] + public BooleanValue? RequireReceipt { get; set; } + + [DataMember(Name="RequireShipment", EmitDefaultValue=false)] + public BooleanValue? RequireShipment { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesCategories", EmitDefaultValue=false)] + public List? SalesCategories { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="SalesUnit", EmitDefaultValue=false)] + public StringValue? SalesUnit { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="VendorDetails", EmitDefaultValue=false)] + public List? VendorDetails { get; set; } + + [DataMember(Name="Volume", EmitDefaultValue=false)] + public DecimalValue? Volume { get; set; } + + [DataMember(Name="VolumeUOM", EmitDefaultValue=false)] + public StringValue? VolumeUOM { get; set; } + + [DataMember(Name="Weight", EmitDefaultValue=false)] + public DecimalValue? Weight { get; set; } + + [DataMember(Name="WeightUOM", EmitDefaultValue=false)] + public StringValue? WeightUOM { get; set; } + + [DataMember(Name="CurySpecificMSRP", EmitDefaultValue=false)] + public DecimalValue? CurySpecificMSRP { get; set; } + + [DataMember(Name="CurySpecificPrice", EmitDefaultValue=false)] + public DecimalValue? CurySpecificPrice { get; set; } + + [DataMember(Name="Availability", EmitDefaultValue=false)] + public StringValue? Availability { get; set; } + + [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] + public BooleanValue? ExportToExternal { get; set; } + + [DataMember(Name="Categories", EmitDefaultValue=false)] + public List? Categories { get; set; } + + [DataMember(Name="Content", EmitDefaultValue=false)] + public StringValue? Content { get; set; } + + [DataMember(Name="CurrentStdCost", EmitDefaultValue=false)] + public DecimalValue? CurrentStdCost { get; set; } + + [DataMember(Name="CustomURL", EmitDefaultValue=false)] + public StringValue? CustomURL { get; set; } + + [DataMember(Name="DimensionWeight", EmitDefaultValue=false)] + public DecimalValue? DimensionWeight { get; set; } + + [DataMember(Name="FileUrls", EmitDefaultValue=false)] + public List? FileUrls { get; set; } + + [DataMember(Name="MetaDescription", EmitDefaultValue=false)] + public StringValue? MetaDescription { get; set; } + + [DataMember(Name="MetaKeywords", EmitDefaultValue=false)] + public StringValue? MetaKeywords { get; set; } + + [DataMember(Name="MSRP", EmitDefaultValue=false)] + public DecimalValue? MSRP { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="PageTitle", EmitDefaultValue=false)] + public StringValue? PageTitle { get; set; } + + [DataMember(Name="SearchKeywords", EmitDefaultValue=false)] + public StringValue? SearchKeywords { get; set; } + + [DataMember(Name="TemplateItemID", EmitDefaultValue=false)] + public StringValue? TemplateItemID { get; set; } + + [DataMember(Name="Visibility", EmitDefaultValue=false)] + public StringValue? Visibility { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs new file mode 100644 index 000000000..e67daf5bc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class NonStockItemSalesCategory : Entity + { + + [DataMember(Name="CategoryID", EmitDefaultValue=false)] + public IntValue? CategoryID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs new file mode 100644 index 000000000..ada11f7d6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class NonStockItemVendorDetail : Entity + { + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorName", EmitDefaultValue=false)] + public StringValue? VendorName { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs new file mode 100644 index 000000000..8b5e34ddf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Opportunity : Entity, ITopLevelEntity + { + + [DataMember(Name="Activities", EmitDefaultValue=false)] + public List? Activities { get; set; } + + [DataMember(Name="Address", EmitDefaultValue=false)] + public Address? Address { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="ContactDisplayName", EmitDefaultValue=false)] + public StringValue? ContactDisplayName { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="ContactInformation", EmitDefaultValue=false)] + public OpportunityContact? ContactInformation { get; set; } + + [DataMember(Name="ConvertedLeadDisplayName", EmitDefaultValue=false)] + public StringValue? ConvertedLeadDisplayName { get; set; } + + [DataMember(Name="ConvertedLeadID", EmitDefaultValue=false)] + public IntValue? ConvertedLeadID { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyViewState", EmitDefaultValue=false)] + public BooleanValue? CurrencyViewState { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public StringValue? Details { get; set; } + + [DataMember(Name="Discount", EmitDefaultValue=false)] + public DecimalValue? Discount { get; set; } + + [DataMember(Name="Discounts", EmitDefaultValue=false)] + public List? Discounts { get; set; } + + [DataMember(Name="Estimation", EmitDefaultValue=false)] + public DateTimeValue? Estimation { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="ManualAmount", EmitDefaultValue=false)] + public BooleanValue? ManualAmount { get; set; } + + [DataMember(Name="OpportunityID", EmitDefaultValue=false)] + public StringValue? OpportunityID { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] + public StringValue? OwnerEmployeeName { get; set; } + + [DataMember(Name="ParentAccount", EmitDefaultValue=false)] + public StringValue? ParentAccount { get; set; } + + [DataMember(Name="Products", EmitDefaultValue=false)] + public List? Products { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="Reason", EmitDefaultValue=false)] + public StringValue? Reason { get; set; } + + [DataMember(Name="Relations", EmitDefaultValue=false)] + public List? Relations { get; set; } + + [DataMember(Name="Source", EmitDefaultValue=false)] + public StringValue? Source { get; set; } + + [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] + public StringValue? SourceCampaign { get; set; } + + [DataMember(Name="Stage", EmitDefaultValue=false)] + public StringValue? Stage { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Total", EmitDefaultValue=false)] + public DecimalValue? Total { get; set; } + + [DataMember(Name="WeightTotal", EmitDefaultValue=false)] + public DecimalValue? WeightTotal { get; set; } + + [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] + public StringValue? WorkgroupDescription { get; set; } + + [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] + public StringValue? WorkgroupID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs new file mode 100644 index 000000000..e7a6bb49c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpportunityContact : Entity + { + + [DataMember(Name="Attention", EmitDefaultValue=false)] + public StringValue? Attention { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Fax", EmitDefaultValue=false)] + public StringValue? Fax { get; set; } + + [DataMember(Name="FaxType", EmitDefaultValue=false)] + public StringValue? FaxType { get; set; } + + [DataMember(Name="FirstName", EmitDefaultValue=false)] + public StringValue? FirstName { get; set; } + + [DataMember(Name="LastName", EmitDefaultValue=false)] + public StringValue? LastName { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + + [DataMember(Name="Phone2", EmitDefaultValue=false)] + public StringValue? Phone2 { get; set; } + + [DataMember(Name="Phone2Type", EmitDefaultValue=false)] + public StringValue? Phone2Type { get; set; } + + [DataMember(Name="Phone3", EmitDefaultValue=false)] + public StringValue? Phone3 { get; set; } + + [DataMember(Name="Phone3Type", EmitDefaultValue=false)] + public StringValue? Phone3Type { get; set; } + + [DataMember(Name="Position", EmitDefaultValue=false)] + public StringValue? Position { get; set; } + + [DataMember(Name="Title", EmitDefaultValue=false)] + public StringValue? Title { get; set; } + + [DataMember(Name="WebSite", EmitDefaultValue=false)] + public StringValue? WebSite { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs new file mode 100644 index 000000000..a9951e600 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpportunityDetail : Entity + { + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="DisplayName", EmitDefaultValue=false)] + public StringValue? DisplayName { get; set; } + + [DataMember(Name="Estimation", EmitDefaultValue=false)] + public DateTimeValue? Estimation { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Probability", EmitDefaultValue=false)] + public IntValue? Probability { get; set; } + + [DataMember(Name="Stage", EmitDefaultValue=false)] + public StringValue? Stage { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + [DataMember(Name="Total", EmitDefaultValue=false)] + public DecimalValue? Total { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs new file mode 100644 index 000000000..0c22a2afc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpportunityDiscount : Entity + { + + [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountableAmount { get; set; } + + [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] + public DecimalValue? DiscountableQty { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="FreeItem", EmitDefaultValue=false)] + public StringValue? FreeItem { get; set; } + + [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] + public DecimalValue? FreeItemQty { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="SequenceID", EmitDefaultValue=false)] + public StringValue? SequenceID { get; set; } + + [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] + public BooleanValue? SkipDiscount { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs new file mode 100644 index 000000000..db4179220 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpportunityProduct : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Discount", EmitDefaultValue=false)] + public DecimalValue? Discount { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountSequence", EmitDefaultValue=false)] + public StringValue? DiscountSequence { get; set; } + + [DataMember(Name="ExternalPrice", EmitDefaultValue=false)] + public DecimalValue? ExternalPrice { get; set; } + + [DataMember(Name="FreeItem", EmitDefaultValue=false)] + public BooleanValue? FreeItem { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="OpportunityProductID", EmitDefaultValue=false)] + public IntValue? OpportunityProductID { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + [DataMember(Name="SkipLineDiscounts", EmitDefaultValue=false)] + public BooleanValue? SkipLineDiscounts { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs new file mode 100644 index 000000000..44f63e27b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OpportunityTaxDetail : Entity + { + + [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeInVATExemptTotal { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs new file mode 100644 index 000000000..a6c4ace5b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class OrderRisks : Entity + { + + [DataMember(Name="Message", EmitDefaultValue=false)] + public StringValue? Message { get; set; } + + [DataMember(Name="Recommendation", EmitDefaultValue=false)] + public StringValue? Recommendation { get; set; } + + [DataMember(Name="Score", EmitDefaultValue=false)] + public DecimalValue? Score { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs new file mode 100644 index 000000000..344a08cc4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs @@ -0,0 +1,82 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PTOBank : Entity, ITopLevelEntity + { + + [DataMember(Name="AccrualLimit", EmitDefaultValue=false)] + public DecimalValue? AccrualLimit { get; set; } + + [DataMember(Name="AccrualMethod", EmitDefaultValue=false)] + public StringValue? AccrualMethod { get; set; } + + [DataMember(Name="AccrueonCertifiedJobOnly", EmitDefaultValue=false)] + public BooleanValue? AccrueonCertifiedJobOnly { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AllowNegativeBalance", EmitDefaultValue=false)] + public BooleanValue? AllowNegativeBalance { get; set; } + + [DataMember(Name="BankStartDate", EmitDefaultValue=false)] + public DateTimeValue? BankStartDate { get; set; } + + [DataMember(Name="CanOnlyDisbursefromCarryover", EmitDefaultValue=false)] + public BooleanValue? CanOnlyDisbursefromCarryover { get; set; } + + [DataMember(Name="CarryoverAmount", EmitDefaultValue=false)] + public DecimalValue? CarryoverAmount { get; set; } + + [DataMember(Name="CarryoverType", EmitDefaultValue=false)] + public StringValue? CarryoverType { get; set; } + + [DataMember(Name="CreateFinTransactions", EmitDefaultValue=false)] + public BooleanValue? CreateFinTransactions { get; set; } + + [DataMember(Name="DefaultAccrualPercent", EmitDefaultValue=false)] + public DecimalValue? DefaultAccrualPercent { get; set; } + + [DataMember(Name="DefaultDisbursingType", EmitDefaultValue=false)] + public StringValue? DefaultDisbursingType { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DisbursingEarningCode", EmitDefaultValue=false)] + public StringValue? DisbursingEarningCode { get; set; } + + [DataMember(Name="FrontLoadingAmount", EmitDefaultValue=false)] + public DecimalValue? FrontLoadingAmount { get; set; } + + [DataMember(Name="GLAccounts", EmitDefaultValue=false)] + public PTOBankGLAccounts? GLAccounts { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OnSettlement", EmitDefaultValue=false)] + public StringValue? OnSettlement { get; set; } + + [DataMember(Name="PayCarryoverafterMonths", EmitDefaultValue=false)] + public IntValue? PayCarryoverafterMonths { get; set; } + + [DataMember(Name="PTOBankID", EmitDefaultValue=false)] + public StringValue? PTOBankID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs new file mode 100644 index 000000000..94b1cf6b4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PTOBankGLAccounts : Entity + { + + [DataMember(Name="AssetAccount", EmitDefaultValue=false)] + public StringValue? AssetAccount { get; set; } + + [DataMember(Name="AssetSub", EmitDefaultValue=false)] + public StringValue? AssetSub { get; set; } + + [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] + public StringValue? ExpenseAccount { get; set; } + + [DataMember(Name="ExpenseSub", EmitDefaultValue=false)] + public StringValue? ExpenseSub { get; set; } + + [DataMember(Name="LiabilityAccount", EmitDefaultValue=false)] + public StringValue? LiabilityAccount { get; set; } + + [DataMember(Name="LiabilitySub", EmitDefaultValue=false)] + public StringValue? LiabilitySub { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs new file mode 100644 index 000000000..5779cbfa2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs @@ -0,0 +1,91 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PayGroup : Entity, ITopLevelEntity + { + + [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] + public StringValue? BenefitExpenseAccount { get; set; } + + [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] + public StringValue? BenefitExpenseSub { get; set; } + + [DataMember(Name="BenefitLiabilityAccount", EmitDefaultValue=false)] + public StringValue? BenefitLiabilityAccount { get; set; } + + [DataMember(Name="BenefitLiabilitySub", EmitDefaultValue=false)] + public StringValue? BenefitLiabilitySub { get; set; } + + [DataMember(Name="DeductionLiabilityAccount", EmitDefaultValue=false)] + public StringValue? DeductionLiabilityAccount { get; set; } + + [DataMember(Name="DeductionLiabilitySub", EmitDefaultValue=false)] + public StringValue? DeductionLiabilitySub { get; set; } + + [DataMember(Name="EarningsAccount", EmitDefaultValue=false)] + public StringValue? EarningsAccount { get; set; } + + [DataMember(Name="EarningsSub", EmitDefaultValue=false)] + public StringValue? EarningsSub { get; set; } + + [DataMember(Name="IsDefault", EmitDefaultValue=false)] + public BooleanValue? IsDefault { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PayGroupID", EmitDefaultValue=false)] + public StringValue? PayGroupID { get; set; } + + [DataMember(Name="PayGroupName", EmitDefaultValue=false)] + public StringValue? PayGroupName { get; set; } + + [DataMember(Name="PTOAssetAccount", EmitDefaultValue=false)] + public StringValue? PTOAssetAccount { get; set; } + + [DataMember(Name="PTOAssetSub", EmitDefaultValue=false)] + public StringValue? PTOAssetSub { get; set; } + + [DataMember(Name="PTOExpenseAccount", EmitDefaultValue=false)] + public StringValue? PTOExpenseAccount { get; set; } + + [DataMember(Name="PTOExpenseSub", EmitDefaultValue=false)] + public StringValue? PTOExpenseSub { get; set; } + + [DataMember(Name="PTOLiabilityAccount", EmitDefaultValue=false)] + public StringValue? PTOLiabilityAccount { get; set; } + + [DataMember(Name="PTOLiabilitySub", EmitDefaultValue=false)] + public StringValue? PTOLiabilitySub { get; set; } + + [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] + public StringValue? TaxExpenseAccount { get; set; } + + [DataMember(Name="TaxExpenseSub", EmitDefaultValue=false)] + public StringValue? TaxExpenseSub { get; set; } + + [DataMember(Name="TaxLiabilityAccount", EmitDefaultValue=false)] + public StringValue? TaxLiabilityAccount { get; set; } + + [DataMember(Name="TaxLiabilitySub", EmitDefaultValue=false)] + public StringValue? TaxLiabilitySub { get; set; } + + [DataMember(Name="UserRole", EmitDefaultValue=false)] + public StringValue? UserRole { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs new file mode 100644 index 000000000..baf40f7e9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PayPeriod : Entity, ITopLevelEntity + { + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NumberofPeriods", EmitDefaultValue=false)] + public ShortValue? NumberofPeriods { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + [DataMember(Name="PayGroup", EmitDefaultValue=false)] + public StringValue? PayGroup { get; set; } + + [DataMember(Name="PaymentPeriods", EmitDefaultValue=false)] + public List? PaymentPeriods { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Year", EmitDefaultValue=false)] + public StringValue? Year { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs new file mode 100644 index 000000000..6d23e24f4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Payment : Entity, ITopLevelEntity + { + + [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] + public DateTimeValue? ApplicationDate { get; set; } + + [DataMember(Name="ApplicationHistory", EmitDefaultValue=false)] + public List? ApplicationHistory { get; set; } + + [DataMember(Name="AppliedToDocuments", EmitDefaultValue=false)] + public DecimalValue? AppliedToDocuments { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CardAccountNbr", EmitDefaultValue=false)] + public IntValue? CardAccountNbr { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="Charges", EmitDefaultValue=false)] + public List? Charges { get; set; } + + [DataMember(Name="CreditCardProcessingInfo", EmitDefaultValue=false)] + public List? CreditCardProcessingInfo { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocumentsToApply", EmitDefaultValue=false)] + public List? DocumentsToApply { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="IsCCPayment", EmitDefaultValue=false)] + public BooleanValue? IsCCPayment { get; set; } + + [DataMember(Name="OrdersToApply", EmitDefaultValue=false)] + public List? OrdersToApply { get; set; } + + [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] + public DecimalValue? PaymentAmount { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ProcessingCenterID", EmitDefaultValue=false)] + public StringValue? ProcessingCenterID { get; set; } + + [DataMember(Name="SaveCard", EmitDefaultValue=false)] + public BooleanValue? SaveCard { get; set; } + + [DataMember(Name="CreditCardTransactionInfo", EmitDefaultValue=false)] + public List? CreditCardTransactionInfo { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + [DataMember(Name="OrigTransaction", EmitDefaultValue=false)] + public StringValue? OrigTransaction { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CustomerLocationID", EmitDefaultValue=false)] + public StringValue? CustomerLocationID { get; set; } + + [DataMember(Name="IsNewCard", EmitDefaultValue=false)] + public BooleanValue? IsNewCard { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="AvailableBalance", EmitDefaultValue=false)] + public DecimalValue? AvailableBalance { get; set; } + + [DataMember(Name="AppliedToOrders", EmitDefaultValue=false)] + public DecimalValue? AppliedToOrders { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs new file mode 100644 index 000000000..1b4dc9d1b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs @@ -0,0 +1,90 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentApplicationHistoryDetail : Entity + { + + [DataMember(Name="AdjustedDocType", EmitDefaultValue=false)] + public StringValue? AdjustedDocType { get; set; } + + [DataMember(Name="AdjustedRefNbr", EmitDefaultValue=false)] + public StringValue? AdjustedRefNbr { get; set; } + + [DataMember(Name="AdjustingDocType", EmitDefaultValue=false)] + public StringValue? AdjustingDocType { get; set; } + + [DataMember(Name="AdjustingRefNbr", EmitDefaultValue=false)] + public StringValue? AdjustingRefNbr { get; set; } + + [DataMember(Name="AdjustmentNbr", EmitDefaultValue=false)] + public IntValue? AdjustmentNbr { get; set; } + + [DataMember(Name="AdjustsVAT", EmitDefaultValue=false)] + public BooleanValue? AdjustsVAT { get; set; } + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="ApplicationPeriod", EmitDefaultValue=false)] + public StringValue? ApplicationPeriod { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="BalanceWriteOff", EmitDefaultValue=false)] + public DecimalValue? BalanceWriteOff { get; set; } + + [DataMember(Name="BatchNbr", EmitDefaultValue=false)] + public StringValue? BatchNbr { get; set; } + + [DataMember(Name="CashDiscountBalance", EmitDefaultValue=false)] + public DecimalValue? CashDiscountBalance { get; set; } + + [DataMember(Name="CashDiscountDate", EmitDefaultValue=false)] + public DateTimeValue? CashDiscountDate { get; set; } + + [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] + public DecimalValue? CashDiscountTaken { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DisplayDocType", EmitDefaultValue=false)] + public StringValue? DisplayDocType { get; set; } + + [DataMember(Name="DisplayRefNbr", EmitDefaultValue=false)] + public StringValue? DisplayRefNbr { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="VATCreditMemo", EmitDefaultValue=false)] + public StringValue? VATCreditMemo { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs new file mode 100644 index 000000000..4be798df3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentCharge : Entity + { + + [DataMember(Name="AccountID", EmitDefaultValue=false)] + public StringValue? AccountID { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="EntryTypeID", EmitDefaultValue=false)] + public StringValue? EntryTypeID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="SubID", EmitDefaultValue=false)] + public StringValue? SubID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs new file mode 100644 index 000000000..16bc72c23 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentDetail : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="BalanceWriteOff", EmitDefaultValue=false)] + public DecimalValue? BalanceWriteOff { get; set; } + + [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] + public DecimalValue? CashDiscountTaken { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocLineNbr", EmitDefaultValue=false)] + public IntValue? DocLineNbr { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="WriteOffReasonCode", EmitDefaultValue=false)] + public StringValue? WriteOffReasonCode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs new file mode 100644 index 000000000..ac8e4ee21 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs @@ -0,0 +1,67 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentMethod : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AllowedCashAccounts", EmitDefaultValue=false)] + public List? AllowedCashAccounts { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="IntegratedProcessing", EmitDefaultValue=false)] + public BooleanValue? IntegratedProcessing { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="MeansOfPayment", EmitDefaultValue=false)] + public StringValue? MeansOfPayment { get; set; } + + [DataMember(Name="PaymentMethodID", EmitDefaultValue=false)] + public StringValue? PaymentMethodID { get; set; } + + [DataMember(Name="ProcessingCenters", EmitDefaultValue=false)] + public List? ProcessingCenters { get; set; } + + [DataMember(Name="RequireRemittanceInformationforCashAccount", EmitDefaultValue=false)] + public BooleanValue? RequireRemittanceInformationforCashAccount { get; set; } + + [DataMember(Name="UseInAP", EmitDefaultValue=false)] + public BooleanValue? UseInAP { get; set; } + + [DataMember(Name="UseInAR", EmitDefaultValue=false)] + public BooleanValue? UseInAR { get; set; } + + [DataMember(Name="UseInPR", EmitDefaultValue=false)] + public BooleanValue? UseInPR { get; set; } + + [DataMember(Name="SetPaymentDatetoBankTransactionDate", EmitDefaultValue=false)] + public BooleanValue? SetPaymentDatetoBankTransactionDate { get; set; } + + [DataMember(Name="SettingsForPR", EmitDefaultValue=false)] + public SettingsForPR? SettingsForPR { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs new file mode 100644 index 000000000..1b8249a07 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentMethodAllowedCashAccountDetail : Entity + { + + [DataMember(Name="APDefault", EmitDefaultValue=false)] + public BooleanValue? APDefault { get; set; } + + [DataMember(Name="APLastRefNbr", EmitDefaultValue=false)] + public StringValue? APLastRefNbr { get; set; } + + [DataMember(Name="APSuggestNextNbr", EmitDefaultValue=false)] + public BooleanValue? APSuggestNextNbr { get; set; } + + [DataMember(Name="ARDefault", EmitDefaultValue=false)] + public BooleanValue? ARDefault { get; set; } + + [DataMember(Name="ARDefaultForRefund", EmitDefaultValue=false)] + public BooleanValue? ARDefaultForRefund { get; set; } + + [DataMember(Name="ARLastRefNbr", EmitDefaultValue=false)] + public StringValue? ARLastRefNbr { get; set; } + + [DataMember(Name="ARSuggestNextNbr", EmitDefaultValue=false)] + public BooleanValue? ARSuggestNextNbr { get; set; } + + [DataMember(Name="BatchLastRefNbr", EmitDefaultValue=false)] + public StringValue? BatchLastRefNbr { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="UseInAP", EmitDefaultValue=false)] + public BooleanValue? UseInAP { get; set; } + + [DataMember(Name="UseInAR", EmitDefaultValue=false)] + public BooleanValue? UseInAR { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="UseInPR", EmitDefaultValue=false)] + public BooleanValue? UseInPR { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs new file mode 100644 index 000000000..9474bc5d0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentMethodProcessingCenterDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="ProcCenterID", EmitDefaultValue=false)] + public StringValue? ProcCenterID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs new file mode 100644 index 000000000..480e91403 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentOrderDetail : Entity + { + + [DataMember(Name="AppliedToOrder", EmitDefaultValue=false)] + public DecimalValue? AppliedToOrder { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs new file mode 100644 index 000000000..64fe74ebc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PaymentPeriod : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="FinYear", EmitDefaultValue=false)] + public StringValue? FinYear { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PayPeriodID", EmitDefaultValue=false)] + public StringValue? PayPeriodID { get; set; } + + [DataMember(Name="PeriodNbr", EmitDefaultValue=false)] + public StringValue? PeriodNbr { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="TransactionDate", EmitDefaultValue=false)] + public DateTimeValue? TransactionDate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs new file mode 100644 index 000000000..79e0f44a6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PayrollBatch : Entity, ITopLevelEntity + { + + [DataMember(Name="BatchID", EmitDefaultValue=false)] + public StringValue? BatchID { get; set; } + + [DataMember(Name="DeductionsAndBenefitsDetails", EmitDefaultValue=false)] + public List? DeductionsAndBenefitsDetails { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EarningDetails", EmitDefaultValue=false)] + public List? EarningDetails { get; set; } + + [DataMember(Name="EmployeeSummary", EmitDefaultValue=false)] + public List? EmployeeSummary { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NumberofEmployees", EmitDefaultValue=false)] + public IntValue? NumberofEmployees { get; set; } + + [DataMember(Name="OvertimeRules", EmitDefaultValue=false)] + public BatchOvertimeRules? OvertimeRules { get; set; } + + [DataMember(Name="PayGroup", EmitDefaultValue=false)] + public StringValue? PayGroup { get; set; } + + [DataMember(Name="PayPeriod", EmitDefaultValue=false)] + public StringValue? PayPeriod { get; set; } + + [DataMember(Name="TotalEarnings", EmitDefaultValue=false)] + public DecimalValue? TotalEarnings { get; set; } + + [DataMember(Name="TotalHourQty", EmitDefaultValue=false)] + public DecimalValue? TotalHourQty { get; set; } + + [DataMember(Name="PayrollType", EmitDefaultValue=false)] + public StringValue? PayrollType { get; set; } + + [DataMember(Name="PeriodEnd", EmitDefaultValue=false)] + public DateTimeValue? PeriodEnd { get; set; } + + [DataMember(Name="PeriodStart", EmitDefaultValue=false)] + public DateTimeValue? PeriodStart { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TransactionDate", EmitDefaultValue=false)] + public DateTimeValue? TransactionDate { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs new file mode 100644 index 000000000..a54bf6351 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PayrollUnionLocal : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="DeductionsAndBenefits", EmitDefaultValue=false)] + public List? DeductionsAndBenefits { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EarningRates", EmitDefaultValue=false)] + public List? EarningRates { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="PayrollUnionLocalID", EmitDefaultValue=false)] + public StringValue? PayrollUnionLocalID { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs new file mode 100644 index 000000000..202b711d6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PayrollWCCCode : Entity, ITopLevelEntity + { + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="WCCCodes", EmitDefaultValue=false)] + public List? WCCCodes { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs new file mode 100644 index 000000000..a75acf6e8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PhysicalInventoryCount : Entity, ITopLevelEntity + { + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs new file mode 100644 index 000000000..b6aff6365 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PhysicalInventoryCountDetail : Entity + { + + [DataMember(Name="BookQty", EmitDefaultValue=false)] + public DecimalValue? BookQty { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="PhysicalQty", EmitDefaultValue=false)] + public DecimalValue? PhysicalQty { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs new file mode 100644 index 000000000..0741828a7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PhysicalInventoryReview : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="FreezeDate", EmitDefaultValue=false)] + public DateTimeValue? FreezeDate { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalPhysicalQty", EmitDefaultValue=false)] + public DecimalValue? TotalPhysicalQty { get; set; } + + [DataMember(Name="TotalVarianceCost", EmitDefaultValue=false)] + public DecimalValue? TotalVarianceCost { get; set; } + + [DataMember(Name="TotalVarianceQty", EmitDefaultValue=false)] + public DecimalValue? TotalVarianceQty { get; set; } + + [DataMember(Name="TypeID", EmitDefaultValue=false)] + public StringValue? TypeID { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs new file mode 100644 index 000000000..2a9bfdbf3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PhysicalInventoryReviewDetail : Entity + { + + [DataMember(Name="BookQty", EmitDefaultValue=false)] + public DecimalValue? BookQty { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="ExtendedVarianceCost", EmitDefaultValue=false)] + public DecimalValue? ExtendedVarianceCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="PhysicalQty", EmitDefaultValue=false)] + public DecimalValue? PhysicalQty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TagNbr", EmitDefaultValue=false)] + public IntValue? TagNbr { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="VarianceQty", EmitDefaultValue=false)] + public DecimalValue? VarianceQty { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs new file mode 100644 index 000000000..ace849ab4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProFormaFinancialDetails : Entity + { + + [DataMember(Name="ARDocType", EmitDefaultValue=false)] + public StringValue? ARDocType { get; set; } + + [DataMember(Name="ARRefNbr", EmitDefaultValue=false)] + public StringValue? ARRefNbr { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CashDiscountDate", EmitDefaultValue=false)] + public DateTimeValue? CashDiscountDate { get; set; } + + [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] + public StringValue? CustomerTaxZone { get; set; } + + [DataMember(Name="CustomerUsageType", EmitDefaultValue=false)] + public StringValue? CustomerUsageType { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs new file mode 100644 index 000000000..6e55297d4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProFormaInvoice : Entity, ITopLevelEntity + { + + [DataMember(Name="AmountDue", EmitDefaultValue=false)] + public DecimalValue? AmountDue { get; set; } + + [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] + public List? ApprovalDetails { get; set; } + + [DataMember(Name="BillingSettings", EmitDefaultValue=false)] + public BillToSettings? BillingSettings { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] + public ProFormaFinancialDetails? FinancialDetails { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="InvoiceDate", EmitDefaultValue=false)] + public DateTimeValue? InvoiceDate { get; set; } + + [DataMember(Name="InvoiceTotal", EmitDefaultValue=false)] + public DecimalValue? InvoiceTotal { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ProgressBilling", EmitDefaultValue=false)] + public List? ProgressBilling { get; set; } + + [DataMember(Name="ProgressBillingTotal", EmitDefaultValue=false)] + public DecimalValue? ProgressBillingTotal { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="RefNbr", EmitDefaultValue=false)] + public StringValue? RefNbr { get; set; } + + [DataMember(Name="RetainageTotal", EmitDefaultValue=false)] + public DecimalValue? RetainageTotal { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="TimeAndMaterial", EmitDefaultValue=false)] + public List? TimeAndMaterial { get; set; } + + [DataMember(Name="TimeAndMaterialTotal", EmitDefaultValue=false)] + public DecimalValue? TimeAndMaterialTotal { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs new file mode 100644 index 000000000..f738f98c2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProFormaTaxDetail : Entity + { + + [DataMember(Name="RetainedTax", EmitDefaultValue=false)] + public DecimalValue? RetainedTax { get; set; } + + [DataMember(Name="RetainedTaxable", EmitDefaultValue=false)] + public DecimalValue? RetainedTaxable { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs new file mode 100644 index 000000000..a2ab6d0da --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs @@ -0,0 +1,78 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProgressBilling : Entity + { + + [DataMember(Name="ActualAmount", EmitDefaultValue=false)] + public DecimalValue? ActualAmount { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="AmountToInvoice", EmitDefaultValue=false)] + public DecimalValue? AmountToInvoice { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CurrentInvoiced", EmitDefaultValue=false)] + public DecimalValue? CurrentInvoiced { get; set; } + + [DataMember(Name="DeferralCode", EmitDefaultValue=false)] + public StringValue? DeferralCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DraftInvoicesAmount", EmitDefaultValue=false)] + public DecimalValue? DraftInvoicesAmount { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="PreviouslyInvoiced", EmitDefaultValue=false)] + public DecimalValue? PreviouslyInvoiced { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Retainage", EmitDefaultValue=false)] + public DecimalValue? Retainage { get; set; } + + [DataMember(Name="RetainageAmount", EmitDefaultValue=false)] + public DecimalValue? RetainageAmount { get; set; } + + [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedAmount { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="StoredMaterial", EmitDefaultValue=false)] + public DecimalValue? StoredMaterial { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TotalCompleted", EmitDefaultValue=false)] + public DecimalValue? TotalCompleted { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs new file mode 100644 index 000000000..9564baddf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs @@ -0,0 +1,103 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Project : Entity, ITopLevelEntity + { + + [DataMember(Name="ActivityHistory", EmitDefaultValue=false)] + public List? ActivityHistory { get; set; } + + [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] + public List? ApprovalDetails { get; set; } + + [DataMember(Name="Assets", EmitDefaultValue=false)] + public DecimalValue? Assets { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="Balances", EmitDefaultValue=false)] + public List? Balances { get; set; } + + [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] + public ProjectBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } + + [DataMember(Name="BillToSettings", EmitDefaultValue=false)] + public BillToSettings? BillToSettings { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Employees", EmitDefaultValue=false)] + public List? Employees { get; set; } + + [DataMember(Name="Equipments", EmitDefaultValue=false)] + public List? Equipments { get; set; } + + [DataMember(Name="Expenses", EmitDefaultValue=false)] + public DecimalValue? Expenses { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="GLAccounts", EmitDefaultValue=false)] + public ProjectGLAccount? GLAccounts { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="Income", EmitDefaultValue=false)] + public DecimalValue? Income { get; set; } + + [DataMember(Name="Invoices", EmitDefaultValue=false)] + public List? Invoices { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Liabilities", EmitDefaultValue=false)] + public DecimalValue? Liabilities { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectProperties", EmitDefaultValue=false)] + public ProjectProperties? ProjectProperties { get; set; } + + [DataMember(Name="ProjectTemplateID", EmitDefaultValue=false)] + public StringValue? ProjectTemplateID { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="UnionLocals", EmitDefaultValue=false)] + public List? UnionLocals { get; set; } + + [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] + public VisibilitySettings? VisibilitySettings { get; set; } + + [DataMember(Name="Retainage", EmitDefaultValue=false)] + public ProjectRetainage? Retainage { get; set; } + + [DataMember(Name="ProjectAddress", EmitDefaultValue=false)] + public ProjectAddress? ProjectAddress { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs new file mode 100644 index 000000000..608db6a5d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectActivity : Entity + { + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public StringValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="Category", EmitDefaultValue=false)] + public StringValue? Category { get; set; } + + [DataMember(Name="Overtime", EmitDefaultValue=false)] + public StringValue? Overtime { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Summary", EmitDefaultValue=false)] + public StringValue? Summary { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="Workgroup", EmitDefaultValue=false)] + public StringValue? Workgroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs new file mode 100644 index 000000000..90cfefb3b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectAddress : Entity + { + + [DataMember(Name="AddressLine1", EmitDefaultValue=false)] + public StringValue? AddressLine1 { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="PostalCode", EmitDefaultValue=false)] + public StringValue? PostalCode { get; set; } + + [DataMember(Name="Latitude", EmitDefaultValue=false)] + public DecimalValue? Latitude { get; set; } + + [DataMember(Name="Longitude", EmitDefaultValue=false)] + public DecimalValue? Longitude { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs new file mode 100644 index 000000000..8637348c5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectBalance : Entity + { + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="ActualAmount", EmitDefaultValue=false)] + public DecimalValue? ActualAmount { get; set; } + + [DataMember(Name="ActualOpenCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? ActualOpenCommittedAmount { get; set; } + + [DataMember(Name="BudgetedCOAmount", EmitDefaultValue=false)] + public DecimalValue? BudgetedCOAmount { get; set; } + + [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedCOAmount { get; set; } + + [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedAmount { get; set; } + + [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenAmount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="OriginalBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? OriginalBudgetedAmount { get; set; } + + [DataMember(Name="OriginalCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? OriginalCommittedAmount { get; set; } + + [DataMember(Name="Performance", EmitDefaultValue=false)] + public DecimalValue? Performance { get; set; } + + [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedAmount { get; set; } + + [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedAmount { get; set; } + + [DataMember(Name="VarianceAmount", EmitDefaultValue=false)] + public DecimalValue? VarianceAmount { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs new file mode 100644 index 000000000..b09dd6864 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectBillingAndAllocationSettings : Entity + { + + [DataMember(Name="AllocationRule", EmitDefaultValue=false)] + public StringValue? AllocationRule { get; set; } + + [DataMember(Name="AutomaticallyReleaseARDocuments", EmitDefaultValue=false)] + public BooleanValue? AutomaticallyReleaseARDocuments { get; set; } + + [DataMember(Name="BillingPeriod", EmitDefaultValue=false)] + public StringValue? BillingPeriod { get; set; } + + [DataMember(Name="BillingRule", EmitDefaultValue=false)] + public StringValue? BillingRule { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CreateProFormaOnBilling", EmitDefaultValue=false)] + public BooleanValue? CreateProFormaOnBilling { get; set; } + + [DataMember(Name="LastBillingDate", EmitDefaultValue=false)] + public DateTimeValue? LastBillingDate { get; set; } + + [DataMember(Name="NextBillingDate", EmitDefaultValue=false)] + public DateTimeValue? NextBillingDate { get; set; } + + [DataMember(Name="RateTable", EmitDefaultValue=false)] + public StringValue? RateTable { get; set; } + + [DataMember(Name="RunAllocationOnReleaseOfProjectTransactions", EmitDefaultValue=false)] + public BooleanValue? RunAllocationOnReleaseOfProjectTransactions { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="UseTMRevenueBudgetLimits", EmitDefaultValue=false)] + public BooleanValue? UseTMRevenueBudgetLimits { get; set; } + + [DataMember(Name="BillingCurrency", EmitDefaultValue=false)] + public StringValue? BillingCurrency { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs new file mode 100644 index 000000000..e61b54a33 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs @@ -0,0 +1,157 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectBudget : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="ActualAmount", EmitDefaultValue=false)] + public DecimalValue? ActualAmount { get; set; } + + [DataMember(Name="ActualPlusOpenCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? ActualPlusOpenCommittedAmount { get; set; } + + [DataMember(Name="ActualQty", EmitDefaultValue=false)] + public DecimalValue? ActualQty { get; set; } + + [DataMember(Name="AutoCompleted", EmitDefaultValue=false)] + public BooleanValue? AutoCompleted { get; set; } + + [DataMember(Name="BudgetedCOAmount", EmitDefaultValue=false)] + public DecimalValue? BudgetedCOAmount { get; set; } + + [DataMember(Name="BudgetedCOQty", EmitDefaultValue=false)] + public DecimalValue? BudgetedCOQty { get; set; } + + [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedCOAmount { get; set; } + + [DataMember(Name="CommittedCOQty", EmitDefaultValue=false)] + public DecimalValue? CommittedCOQty { get; set; } + + [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedAmount { get; set; } + + [DataMember(Name="CommittedInvoicedQty", EmitDefaultValue=false)] + public DecimalValue? CommittedInvoicedQty { get; set; } + + [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenAmount { get; set; } + + [DataMember(Name="CommittedOpenQty", EmitDefaultValue=false)] + public DecimalValue? CommittedOpenQty { get; set; } + + [DataMember(Name="CommittedReceivedQty", EmitDefaultValue=false)] + public DecimalValue? CommittedReceivedQty { get; set; } + + [DataMember(Name="Completed", EmitDefaultValue=false)] + public DecimalValue? Completed { get; set; } + + [DataMember(Name="CostAtCompletion", EmitDefaultValue=false)] + public DecimalValue? CostAtCompletion { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CostToComplete", EmitDefaultValue=false)] + public DecimalValue? CostToComplete { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DraftInvoicesAmount", EmitDefaultValue=false)] + public DecimalValue? DraftInvoicesAmount { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastCostAtCompletion", EmitDefaultValue=false)] + public DecimalValue? LastCostAtCompletion { get; set; } + + [DataMember(Name="LastCostToComplete", EmitDefaultValue=false)] + public DecimalValue? LastCostToComplete { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LastPercentageOfCompletion", EmitDefaultValue=false)] + public DecimalValue? LastPercentageOfCompletion { get; set; } + + [DataMember(Name="OriginalBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? OriginalBudgetedAmount { get; set; } + + [DataMember(Name="OriginalBudgetedQty", EmitDefaultValue=false)] + public DecimalValue? OriginalBudgetedQty { get; set; } + + [DataMember(Name="OriginalCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? OriginalCommittedAmount { get; set; } + + [DataMember(Name="OriginalCommittedQty", EmitDefaultValue=false)] + public DecimalValue? OriginalCommittedQty { get; set; } + + [DataMember(Name="PendingInvoiceAmount", EmitDefaultValue=false)] + public DecimalValue? PendingInvoiceAmount { get; set; } + + [DataMember(Name="PercentageOfCompletion", EmitDefaultValue=false)] + public DecimalValue? PercentageOfCompletion { get; set; } + + [DataMember(Name="Performance", EmitDefaultValue=false)] + public DecimalValue? Performance { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Retainage", EmitDefaultValue=false)] + public DecimalValue? Retainage { get; set; } + + [DataMember(Name="RevenueTask", EmitDefaultValue=false)] + public IntValue? RevenueTask { get; set; } + + [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedAmount { get; set; } + + [DataMember(Name="RevisedBudgetedQty", EmitDefaultValue=false)] + public DecimalValue? RevisedBudgetedQty { get; set; } + + [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedAmount { get; set; } + + [DataMember(Name="RevisedCommittedQty", EmitDefaultValue=false)] + public DecimalValue? RevisedCommittedQty { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UnitRate", EmitDefaultValue=false)] + public DecimalValue? UnitRate { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="VarianceAmount", EmitDefaultValue=false)] + public DecimalValue? VarianceAmount { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs new file mode 100644 index 000000000..05ac170db --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectEmployee : Entity + { + + [DataMember(Name="Department", EmitDefaultValue=false)] + public StringValue? Department { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="EmployeeName", EmitDefaultValue=false)] + public StringValue? EmployeeName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs new file mode 100644 index 000000000..00ab1a317 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectEquipment : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EquipmentID", EmitDefaultValue=false)] + public StringValue? EquipmentID { get; set; } + + [DataMember(Name="RunRate", EmitDefaultValue=false)] + public DecimalValue? RunRate { get; set; } + + [DataMember(Name="RunRateItem", EmitDefaultValue=false)] + public StringValue? RunRateItem { get; set; } + + [DataMember(Name="SetupRate", EmitDefaultValue=false)] + public DecimalValue? SetupRate { get; set; } + + [DataMember(Name="SetupRateItem", EmitDefaultValue=false)] + public StringValue? SetupRateItem { get; set; } + + [DataMember(Name="SuspendRate", EmitDefaultValue=false)] + public DecimalValue? SuspendRate { get; set; } + + [DataMember(Name="SuspendRateItem", EmitDefaultValue=false)] + public StringValue? SuspendRateItem { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs new file mode 100644 index 000000000..0f2b31da5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectGLAccount : Entity + { + + [DataMember(Name="AccrualAccount", EmitDefaultValue=false)] + public StringValue? AccrualAccount { get; set; } + + [DataMember(Name="AccrualSubaccount", EmitDefaultValue=false)] + public StringValue? AccrualSubaccount { get; set; } + + [DataMember(Name="DefaultAccount", EmitDefaultValue=false)] + public StringValue? DefaultAccount { get; set; } + + [DataMember(Name="DefaultSubaccount", EmitDefaultValue=false)] + public StringValue? DefaultSubaccount { get; set; } + + [DataMember(Name="DefaultCostAccount", EmitDefaultValue=false)] + public StringValue? DefaultCostAccount { get; set; } + + [DataMember(Name="DefaultCostSubaccount", EmitDefaultValue=false)] + public StringValue? DefaultCostSubaccount { get; set; } + + [DataMember(Name="DefaultTaskForGLAccounts", EmitDefaultValue=false)] + public List? DefaultTaskForGLAccounts { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs new file mode 100644 index 000000000..fdaec8bcc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs @@ -0,0 +1,78 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectProFormaDetails : Entity + { + + [DataMember(Name="ARDocDate", EmitDefaultValue=false)] + public DateTimeValue? ARDocDate { get; set; } + + [DataMember(Name="ARDocDescription", EmitDefaultValue=false)] + public StringValue? ARDocDescription { get; set; } + + [DataMember(Name="ARDocOriginalAmount", EmitDefaultValue=false)] + public DecimalValue? ARDocOriginalAmount { get; set; } + + [DataMember(Name="ARDocStatus", EmitDefaultValue=false)] + public StringValue? ARDocStatus { get; set; } + + [DataMember(Name="ARDocType", EmitDefaultValue=false)] + public StringValue? ARDocType { get; set; } + + [DataMember(Name="ARReferenceNbr", EmitDefaultValue=false)] + public StringValue? ARReferenceNbr { get; set; } + + [DataMember(Name="BillingNbr", EmitDefaultValue=false)] + public IntValue? BillingNbr { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InvoiceTotal", EmitDefaultValue=false)] + public DecimalValue? InvoiceTotal { get; set; } + + [DataMember(Name="OpenARBalance", EmitDefaultValue=false)] + public DecimalValue? OpenARBalance { get; set; } + + [DataMember(Name="OriginalRefNbr", EmitDefaultValue=false)] + public StringValue? OriginalRefNbr { get; set; } + + [DataMember(Name="OriginalRetainage", EmitDefaultValue=false)] + public DecimalValue? OriginalRetainage { get; set; } + + [DataMember(Name="PaidRetainage", EmitDefaultValue=false)] + public DecimalValue? PaidRetainage { get; set; } + + [DataMember(Name="ProFormaDate", EmitDefaultValue=false)] + public DateTimeValue? ProFormaDate { get; set; } + + [DataMember(Name="ProFormaReferenceNbr", EmitDefaultValue=false)] + public StringValue? ProFormaReferenceNbr { get; set; } + + [DataMember(Name="RetainageInvoice", EmitDefaultValue=false)] + public BooleanValue? RetainageInvoice { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalAmount", EmitDefaultValue=false)] + public DecimalValue? TotalAmount { get; set; } + + [DataMember(Name="UnpaidRetainage", EmitDefaultValue=false)] + public DecimalValue? UnpaidRetainage { get; set; } + + [DataMember(Name="UnreleasedRetainage", EmitDefaultValue=false)] + public DecimalValue? UnreleasedRetainage { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs new file mode 100644 index 000000000..45c6eb8f5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectProperties : Entity + { + + [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] + public BooleanValue? CertifiedJob { get; set; } + + [DataMember(Name="ChangeOrderWorkflow", EmitDefaultValue=false)] + public BooleanValue? ChangeOrderWorkflow { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="LastRevenueChangeNbr", EmitDefaultValue=false)] + public StringValue? LastRevenueChangeNbr { get; set; } + + [DataMember(Name="ProjectManager", EmitDefaultValue=false)] + public StringValue? ProjectManager { get; set; } + + [DataMember(Name="RestrictEmployees", EmitDefaultValue=false)] + public BooleanValue? RestrictEmployees { get; set; } + + [DataMember(Name="RestrictEquipment", EmitDefaultValue=false)] + public BooleanValue? RestrictEquipment { get; set; } + + [DataMember(Name="RevenueBudgetLevel", EmitDefaultValue=false)] + public StringValue? RevenueBudgetLevel { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="TrackProductionData", EmitDefaultValue=false)] + public BooleanValue? TrackProductionData { get; set; } + + [DataMember(Name="CostBudgetLevel", EmitDefaultValue=false)] + public StringValue? CostBudgetLevel { get; set; } + + [DataMember(Name="TimeActivityApprover", EmitDefaultValue=false)] + public StringValue? TimeActivityApprover { get; set; } + + [DataMember(Name="ProjectCurrency", EmitDefaultValue=false)] + public StringValue? ProjectCurrency { get; set; } + + [DataMember(Name="RateType", EmitDefaultValue=false)] + public StringValue? RateType { get; set; } + + [DataMember(Name="InventoryTrackingMode", EmitDefaultValue=false)] + public StringValue? InventoryTrackingMode { get; set; } + + [DataMember(Name="CostTaxZone", EmitDefaultValue=false)] + public StringValue? CostTaxZone { get; set; } + + [DataMember(Name="RevenueTaxZone", EmitDefaultValue=false)] + public StringValue? RevenueTaxZone { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs new file mode 100644 index 000000000..fbf0bc2da --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectRetainage : Entity + { + + [DataMember(Name="RetainageMode", EmitDefaultValue=false)] + public StringValue? RetainageMode { get; set; } + + [DataMember(Name="IncludeCO", EmitDefaultValue=false)] + public BooleanValue? IncludeCO { get; set; } + + [DataMember(Name="UseSteps", EmitDefaultValue=false)] + public BooleanValue? UseSteps { get; set; } + + [DataMember(Name="CapPct", EmitDefaultValue=false)] + public DecimalValue? CapPct { get; set; } + + [DataMember(Name="CapAmount", EmitDefaultValue=false)] + public DecimalValue? CapAmount { get; set; } + + [DataMember(Name="RetainagePct", EmitDefaultValue=false)] + public DecimalValue? RetainagePct { get; set; } + + [DataMember(Name="RetainTotal", EmitDefaultValue=false)] + public DecimalValue? RetainTotal { get; set; } + + [DataMember(Name="ContractTotal", EmitDefaultValue=false)] + public DecimalValue? ContractTotal { get; set; } + + [DataMember(Name="CompletedPct", EmitDefaultValue=false)] + public DecimalValue? CompletedPct { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs new file mode 100644 index 000000000..183612e06 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs @@ -0,0 +1,64 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTask : Entity, ITopLevelEntity + { + + [DataMember(Name="ActivityHistory", EmitDefaultValue=false)] + public List? ActivityHistory { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] + public ProjectTaskBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } + + [DataMember(Name="CRMLink", EmitDefaultValue=false)] + public ProjectTaskToCRMLink? CRMLink { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="DefaultValues", EmitDefaultValue=false)] + public ProjectTaskDefaultValues? DefaultValues { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Properties", EmitDefaultValue=false)] + public ProjectTaskProperties? Properties { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] + public VisibilitySettings? VisibilitySettings { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs new file mode 100644 index 000000000..62ed55fe2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTaskBillingAndAllocationSettings : Entity + { + + [DataMember(Name="AllocationRule", EmitDefaultValue=false)] + public StringValue? AllocationRule { get; set; } + + [DataMember(Name="BillingOption", EmitDefaultValue=false)] + public StringValue? BillingOption { get; set; } + + [DataMember(Name="BillingRule", EmitDefaultValue=false)] + public StringValue? BillingRule { get; set; } + + [DataMember(Name="BillSeparately", EmitDefaultValue=false)] + public BooleanValue? BillSeparately { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="RateTable", EmitDefaultValue=false)] + public StringValue? RateTable { get; set; } + + [DataMember(Name="WIPAccountGroup", EmitDefaultValue=false)] + public StringValue? WIPAccountGroup { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs new file mode 100644 index 000000000..b3a831db4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTaskDefaultValues : Entity + { + + [DataMember(Name="AccrualAccount", EmitDefaultValue=false)] + public StringValue? AccrualAccount { get; set; } + + [DataMember(Name="AccrualSubaccount", EmitDefaultValue=false)] + public StringValue? AccrualSubaccount { get; set; } + + [DataMember(Name="DefaultAccount", EmitDefaultValue=false)] + public StringValue? DefaultAccount { get; set; } + + [DataMember(Name="DefaultSubaccount", EmitDefaultValue=false)] + public StringValue? DefaultSubaccount { get; set; } + + [DataMember(Name="DefaultCostAccount", EmitDefaultValue=false)] + public StringValue? DefaultCostAccount { get; set; } + + [DataMember(Name="DefaultCostSubaccount", EmitDefaultValue=false)] + public StringValue? DefaultCostSubaccount { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs new file mode 100644 index 000000000..72b61b781 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTaskProperties : Entity + { + + [DataMember(Name="Approver", EmitDefaultValue=false)] + public StringValue? Approver { get; set; } + + [DataMember(Name="Completed", EmitDefaultValue=false)] + public DecimalValue? Completed { get; set; } + + [DataMember(Name="CompletionMethod", EmitDefaultValue=false)] + public StringValue? CompletionMethod { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="PlannedEndDate", EmitDefaultValue=false)] + public DateTimeValue? PlannedEndDate { get; set; } + + [DataMember(Name="PlannedStartDate", EmitDefaultValue=false)] + public DateTimeValue? PlannedStartDate { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs new file mode 100644 index 000000000..ea666f2d8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTaskToCRMLink : Entity + { + + [DataMember(Name="AccountedCampaign", EmitDefaultValue=false)] + public StringValue? AccountedCampaign { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs new file mode 100644 index 000000000..d73470ffe --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTemplate : Entity, ITopLevelEntity + { + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] + public ProjectBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Employees", EmitDefaultValue=false)] + public List? Employees { get; set; } + + [DataMember(Name="Equipments", EmitDefaultValue=false)] + public List? Equipments { get; set; } + + [DataMember(Name="GLAccounts", EmitDefaultValue=false)] + public ProjectGLAccount? GLAccounts { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ProjectProperties", EmitDefaultValue=false)] + public ProjectProperties? ProjectProperties { get; set; } + + [DataMember(Name="ProjectTemplateID", EmitDefaultValue=false)] + public StringValue? ProjectTemplateID { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] + public VisibilitySettings? VisibilitySettings { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs new file mode 100644 index 000000000..52c79ad7c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTemplateTask : Entity, ITopLevelEntity + { + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] + public ProjectTaskBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } + + [DataMember(Name="DefaultValues", EmitDefaultValue=false)] + public ProjectTaskDefaultValues? DefaultValues { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="ProjectTemplateID", EmitDefaultValue=false)] + public StringValue? ProjectTemplateID { get; set; } + + [DataMember(Name="ProjectTemplateTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTemplateTaskID { get; set; } + + [DataMember(Name="Properties", EmitDefaultValue=false)] + public ProjectTemplateTaskProperties? Properties { get; set; } + + [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] + public VisibilitySettings? VisibilitySettings { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs new file mode 100644 index 000000000..0e2bb87d7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTemplateTaskProperties : Entity + { + + [DataMember(Name="Approver", EmitDefaultValue=false)] + public StringValue? Approver { get; set; } + + [DataMember(Name="AutomaticallyIncludeInProject", EmitDefaultValue=false)] + public BooleanValue? AutomaticallyIncludeInProject { get; set; } + + [DataMember(Name="CompletionMethod", EmitDefaultValue=false)] + public StringValue? CompletionMethod { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs new file mode 100644 index 000000000..75f5881b6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTransaction : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Module", EmitDefaultValue=false)] + public StringValue? Module { get; set; } + + [DataMember(Name="OriginalDocNbr", EmitDefaultValue=false)] + public StringValue? OriginalDocNbr { get; set; } + + [DataMember(Name="OriginalDocType", EmitDefaultValue=false)] + public StringValue? OriginalDocType { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalAmount", EmitDefaultValue=false)] + public DecimalValue? TotalAmount { get; set; } + + [DataMember(Name="TotalBillableQty", EmitDefaultValue=false)] + public DecimalValue? TotalBillableQty { get; set; } + + [DataMember(Name="TotalQty", EmitDefaultValue=false)] + public DecimalValue? TotalQty { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs new file mode 100644 index 000000000..f80150466 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs @@ -0,0 +1,120 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectTransactionDetail : Entity + { + + [DataMember(Name="AccountGroup", EmitDefaultValue=false)] + public StringValue? AccountGroup { get; set; } + + [DataMember(Name="AccountGroupDescription", EmitDefaultValue=false)] + public StringValue? AccountGroupDescription { get; set; } + + [DataMember(Name="Allocated", EmitDefaultValue=false)] + public BooleanValue? Allocated { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="BatchNbr", EmitDefaultValue=false)] + public StringValue? BatchNbr { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillableQty", EmitDefaultValue=false)] + public DecimalValue? BillableQty { get; set; } + + [DataMember(Name="Billed", EmitDefaultValue=false)] + public BooleanValue? Billed { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CreditAccount", EmitDefaultValue=false)] + public StringValue? CreditAccount { get; set; } + + [DataMember(Name="CreditSubaccount", EmitDefaultValue=false)] + public StringValue? CreditSubaccount { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="DebitAccount", EmitDefaultValue=false)] + public StringValue? DebitAccount { get; set; } + + [DataMember(Name="DebitSubaccount", EmitDefaultValue=false)] + public StringValue? DebitSubaccount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EarningType", EmitDefaultValue=false)] + public StringValue? EarningType { get; set; } + + [DataMember(Name="Employee", EmitDefaultValue=false)] + public StringValue? Employee { get; set; } + + [DataMember(Name="EndDate", EmitDefaultValue=false)] + public DateTimeValue? EndDate { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="FinPeriod", EmitDefaultValue=false)] + public StringValue? FinPeriod { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="Multiplier", EmitDefaultValue=false)] + public DecimalValue? Multiplier { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Released", EmitDefaultValue=false)] + public BooleanValue? Released { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="TransactionID", EmitDefaultValue=false)] + public LongValue? TransactionID { get; set; } + + [DataMember(Name="UnitRate", EmitDefaultValue=false)] + public DecimalValue? UnitRate { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="UseBillableQtyInAmountFormula", EmitDefaultValue=false)] + public BooleanValue? UseBillableQtyInAmountFormula { get; set; } + + [DataMember(Name="VendorOrCustomer", EmitDefaultValue=false)] + public StringValue? VendorOrCustomer { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs new file mode 100644 index 000000000..58b018fe1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ProjectUnionLocal : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] + public StringValue? UnionLocalID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs new file mode 100644 index 000000000..1d3c567d0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs @@ -0,0 +1,112 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseOrder : Entity, ITopLevelEntity + { + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ControlTotal", EmitDefaultValue=false)] + public DecimalValue? ControlTotal { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyEffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? CurrencyEffectiveDate { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrencyRateTypeID { get; set; } + + [DataMember(Name="CurrencyReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyReciprocalRate { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] + public BooleanValue? IsTaxValid { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LineTotal", EmitDefaultValue=false)] + public DecimalValue? LineTotal { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderTotal", EmitDefaultValue=false)] + public DecimalValue? OrderTotal { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="PromisedOn", EmitDefaultValue=false)] + public DateTimeValue? PromisedOn { get; set; } + + [DataMember(Name="ShippingInstructions", EmitDefaultValue=false)] + public ShippingInstructions? ShippingInstructions { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorRef", EmitDefaultValue=false)] + public StringValue? VendorRef { get; set; } + + [DataMember(Name="VendorTaxZone", EmitDefaultValue=false)] + public StringValue? VendorTaxZone { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs new file mode 100644 index 000000000..02d4ca8b3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs @@ -0,0 +1,123 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseOrderDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="AlternateID", EmitDefaultValue=false)] + public StringValue? AlternateID { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] + public BooleanValue? CalculateDiscountsOnImport { get; set; } + + [DataMember(Name="Cancelled", EmitDefaultValue=false)] + public BooleanValue? Cancelled { get; set; } + + [DataMember(Name="Completed", EmitDefaultValue=false)] + public BooleanValue? Completed { get; set; } + + [DataMember(Name="CompleteOn", EmitDefaultValue=false)] + public DecimalValue? CompleteOn { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] + public DecimalValue? ExtendedCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineDescription", EmitDefaultValue=false)] + public StringValue? LineDescription { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LineType", EmitDefaultValue=false)] + public StringValue? LineType { get; set; } + + [DataMember(Name="MaxReceiptPercent", EmitDefaultValue=false)] + public DecimalValue? MaxReceiptPercent { get; set; } + + [DataMember(Name="MinReceiptPercent", EmitDefaultValue=false)] + public DecimalValue? MinReceiptPercent { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderQty", EmitDefaultValue=false)] + public DecimalValue? OrderQty { get; set; } + + [DataMember(Name="OrderedQty", EmitDefaultValue=false)] + public DecimalValue? OrderedQty { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="OrigPONbr", EmitDefaultValue=false)] + public StringValue? OrigPONbr { get; set; } + + [DataMember(Name="OrigPOType", EmitDefaultValue=false)] + public StringValue? OrigPOType { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Promised", EmitDefaultValue=false)] + public DateTimeValue? Promised { get; set; } + + [DataMember(Name="QtyOnReceipts", EmitDefaultValue=false)] + public DecimalValue? QtyOnReceipts { get; set; } + + [DataMember(Name="ReceiptAction", EmitDefaultValue=false)] + public StringValue? ReceiptAction { get; set; } + + [DataMember(Name="ReceivedAmount", EmitDefaultValue=false)] + public DecimalValue? ReceivedAmount { get; set; } + + [DataMember(Name="Requested", EmitDefaultValue=false)] + public DateTimeValue? Requested { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs new file mode 100644 index 000000000..89c1c5911 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseOrderTaxDetail : Entity + { + + [DataMember(Name="RetainedTaxableAmount", EmitDefaultValue=false)] + public DecimalValue? RetainedTaxableAmount { get; set; } + + [DataMember(Name="RetainedTaxAmount", EmitDefaultValue=false)] + public DecimalValue? RetainedTaxAmount { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs new file mode 100644 index 000000000..e8f23ccf0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs @@ -0,0 +1,103 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseReceipt : Entity, ITopLevelEntity + { + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="BillDate", EmitDefaultValue=false)] + public DateTimeValue? BillDate { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ControlQty", EmitDefaultValue=false)] + public DecimalValue? ControlQty { get; set; } + + [DataMember(Name="CreateBill", EmitDefaultValue=false)] + public BooleanValue? CreateBill { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyEffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? CurrencyEffectiveDate { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrencyRateTypeID { get; set; } + + [DataMember(Name="CurrencyReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyReciprocalRate { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] + public StringValue? InventoryRefNbr { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ProcessReturnWithOriginalCost", EmitDefaultValue=false)] + public BooleanValue? ProcessReturnWithOriginalCost { get; set; } + + [DataMember(Name="ReceiptNbr", EmitDefaultValue=false)] + public StringValue? ReceiptNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalCost", EmitDefaultValue=false)] + public DecimalValue? TotalCost { get; set; } + + [DataMember(Name="TotalQty", EmitDefaultValue=false)] + public DecimalValue? TotalQty { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UnbilledQuantity", EmitDefaultValue=false)] + public DecimalValue? UnbilledQuantity { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorRef", EmitDefaultValue=false)] + public StringValue? VendorRef { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs new file mode 100644 index 000000000..2c2936953 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs @@ -0,0 +1,120 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseReceiptDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="AccrualAccount", EmitDefaultValue=false)] + public StringValue? AccrualAccount { get; set; } + + [DataMember(Name="AccrualSubaccount", EmitDefaultValue=false)] + public StringValue? AccrualSubaccount { get; set; } + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EditableUnitCost", EmitDefaultValue=false)] + public BooleanValue? EditableUnitCost { get; set; } + + [DataMember(Name="EstimatedINExtendedCost", EmitDefaultValue=false)] + public DecimalValue? EstimatedINExtendedCost { get; set; } + + [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] + public DecimalValue? ExtendedCost { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="FinalINExtendedCost", EmitDefaultValue=false)] + public DecimalValue? FinalINExtendedCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LineType", EmitDefaultValue=false)] + public StringValue? LineType { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="OpenQty", EmitDefaultValue=false)] + public DecimalValue? OpenQty { get; set; } + + [DataMember(Name="OrderedQty", EmitDefaultValue=false)] + public DecimalValue? OrderedQty { get; set; } + + [DataMember(Name="POLineNbr", EmitDefaultValue=false)] + public IntValue? POLineNbr { get; set; } + + [DataMember(Name="POOrderNbr", EmitDefaultValue=false)] + public StringValue? POOrderNbr { get; set; } + + [DataMember(Name="POOrderType", EmitDefaultValue=false)] + public StringValue? POOrderType { get; set; } + + [DataMember(Name="POReceiptLineNbr", EmitDefaultValue=false)] + public IntValue? POReceiptLineNbr { get; set; } + + [DataMember(Name="POReceiptNbr", EmitDefaultValue=false)] + public StringValue? POReceiptNbr { get; set; } + + [DataMember(Name="ReceiptQty", EmitDefaultValue=false)] + public DecimalValue? ReceiptQty { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] + public StringValue? TransactionDescription { get; set; } + + [DataMember(Name="TransferOrderNbr", EmitDefaultValue=false)] + public StringValue? TransferOrderNbr { get; set; } + + [DataMember(Name="TransferOrderLineNbr", EmitDefaultValue=false)] + public IntValue? TransferOrderLineNbr { get; set; } + + [DataMember(Name="TransferOrderType", EmitDefaultValue=false)] + public StringValue? TransferOrderType { get; set; } + + [DataMember(Name="TransferShipmentNbr", EmitDefaultValue=false)] + public StringValue? TransferShipmentNbr { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs new file mode 100644 index 000000000..69562348d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseReceiptDetailAllocation : Entity + { + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReceiptNbr", EmitDefaultValue=false)] + public StringValue? ReceiptNbr { get; set; } + + [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] + public IntValue? SplitLineNbr { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs new file mode 100644 index 000000000..73dca72b6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchaseSettings : Entity + { + + [DataMember(Name="POSiteID", EmitDefaultValue=false)] + public StringValue? POSiteID { get; set; } + + [DataMember(Name="POSource", EmitDefaultValue=false)] + public StringValue? POSource { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs new file mode 100644 index 000000000..b1effdad1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class PurchasingDetail : Entity + { + + [DataMember(Name="POOrderLineNbr", EmitDefaultValue=false)] + public IntValue? POOrderLineNbr { get; set; } + + [DataMember(Name="POOrderNbr", EmitDefaultValue=false)] + public StringValue? POOrderNbr { get; set; } + + [DataMember(Name="POOrderType", EmitDefaultValue=false)] + public StringValue? POOrderType { get; set; } + + [DataMember(Name="Selected", EmitDefaultValue=false)] + public BooleanValue? Selected { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs new file mode 100644 index 000000000..6710f19f4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RelationDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="AddToCc", EmitDefaultValue=false)] + public BooleanValue? AddToCc { get; set; } + + [DataMember(Name="ContactDisplayName", EmitDefaultValue=false)] + public StringValue? ContactDisplayName { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public IntValue? ContactID { get; set; } + + [DataMember(Name="Document", EmitDefaultValue=false)] + public GuidValue? Document { get; set; } + + [DataMember(Name="DocumentTargetNoteIDDescription", EmitDefaultValue=false)] + public StringValue? DocumentTargetNoteIDDescription { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="Primary", EmitDefaultValue=false)] + public BooleanValue? Primary { get; set; } + + [DataMember(Name="RelationID", EmitDefaultValue=false)] + public IntValue? RelationID { get; set; } + + [DataMember(Name="Role", EmitDefaultValue=false)] + public StringValue? Role { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="DocumentDate", EmitDefaultValue=false)] + public DateTimeValue? DocumentDate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs new file mode 100644 index 000000000..5b3b39910 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReminderDetail : Entity + { + + [DataMember(Name="IsActive", EmitDefaultValue=false)] + public BooleanValue? IsActive { get; set; } + + [DataMember(Name="RemindAtDate", EmitDefaultValue=false)] + public DateTimeValue? RemindAtDate { get; set; } + + [DataMember(Name="RemindAtTime", EmitDefaultValue=false)] + public DateTimeValue? RemindAtTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs new file mode 100644 index 000000000..df036b3ed --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReplenishmentParameterStockItem : Entity + { + + [DataMember(Name="DemandForecastModel", EmitDefaultValue=false)] + public StringValue? DemandForecastModel { get; set; } + + [DataMember(Name="ForecastPeriodType", EmitDefaultValue=false)] + public StringValue? ForecastPeriodType { get; set; } + + [DataMember(Name="LaunchDate", EmitDefaultValue=false)] + public DateTimeValue? LaunchDate { get; set; } + + [DataMember(Name="MaxQty", EmitDefaultValue=false)] + public DecimalValue? MaxQty { get; set; } + + [DataMember(Name="MaxShelfLifeInDays", EmitDefaultValue=false)] + public IntValue? MaxShelfLifeInDays { get; set; } + + [DataMember(Name="Method", EmitDefaultValue=false)] + public StringValue? Method { get; set; } + + [DataMember(Name="PeriodsToAnalyze", EmitDefaultValue=false)] + public IntValue? PeriodsToAnalyze { get; set; } + + [DataMember(Name="ReorderPoint", EmitDefaultValue=false)] + public DecimalValue? ReorderPoint { get; set; } + + [DataMember(Name="ReplenishmentClass", EmitDefaultValue=false)] + public StringValue? ReplenishmentClass { get; set; } + + [DataMember(Name="ReplenishmentWarehouse", EmitDefaultValue=false)] + public StringValue? ReplenishmentWarehouse { get; set; } + + [DataMember(Name="SafetyStock", EmitDefaultValue=false)] + public DecimalValue? SafetyStock { get; set; } + + [DataMember(Name="Seasonality", EmitDefaultValue=false)] + public StringValue? Seasonality { get; set; } + + [DataMember(Name="ServiceLevel", EmitDefaultValue=false)] + public DecimalValue? ServiceLevel { get; set; } + + [DataMember(Name="Source", EmitDefaultValue=false)] + public StringValue? Source { get; set; } + + [DataMember(Name="TerminationDate", EmitDefaultValue=false)] + public DateTimeValue? TerminationDate { get; set; } + + [DataMember(Name="TransferERQ", EmitDefaultValue=false)] + public DecimalValue? TransferERQ { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs new file mode 100644 index 000000000..c403d22b3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ReportingGroup : Entity + { + + [DataMember(Name="GroupType", EmitDefaultValue=false)] + public StringValue? GroupType { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs new file mode 100644 index 000000000..88a3fc810 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class RepositoryLines : Entity + { + + [DataMember(Name="AcumaticaBuild", EmitDefaultValue=false)] + public StringValue? AcumaticaBuild { get; set; } + + [DataMember(Name="ClientApplication", EmitDefaultValue=false)] + public StringValue? ClientApplication { get; set; } + + [DataMember(Name="CustomizationProject", EmitDefaultValue=false)] + public StringValue? CustomizationProject { get; set; } + + [DataMember(Name="Documentation", EmitDefaultValue=false)] + public StringValue? Documentation { get; set; } + + [DataMember(Name="Certified", EmitDefaultValue=false)] + public BooleanValue? Certified { get; set; } + + [DataMember(Name="IsStatusISVApproved", EmitDefaultValue=false)] + public BooleanValue? IsStatusISVApproved { get; set; } + + [DataMember(Name="IsStatusPassed", EmitDefaultValue=false)] + public BooleanValue? IsStatusPassed { get; set; } + + [DataMember(Name="IsStatusSubmitted", EmitDefaultValue=false)] + public BooleanValue? IsStatusSubmitted { get; set; } + + [DataMember(Name="ISVVersion", EmitDefaultValue=false)] + public StringValue? ISVVersion { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="PortalCustomization", EmitDefaultValue=false)] + public StringValue? PortalCustomization { get; set; } + + [DataMember(Name="Issues", EmitDefaultValue=false)] + public StringValue? Issues { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TestFiles", EmitDefaultValue=false)] + public StringValue? TestFiles { get; set; } + + [DataMember(Name="CreatedBy", EmitDefaultValue=false)] + public StringValue? CreatedBy { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs new file mode 100644 index 000000000..659a200cf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoice : Entity, ITopLevelEntity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="ApplicationsCreditMemo", EmitDefaultValue=false)] + public List? ApplicationsCreditMemo { get; set; } + + [DataMember(Name="ApplicationsInvoice", EmitDefaultValue=false)] + public List? ApplicationsInvoice { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="BillingSettings", EmitDefaultValue=false)] + public BillToSettings? BillingSettings { get; set; } + + [DataMember(Name="CashDiscount", EmitDefaultValue=false)] + public DecimalValue? CashDiscount { get; set; } + + [DataMember(Name="Commissions", EmitDefaultValue=false)] + public SalesInvoiceCommissions? Commissions { get; set; } + + [DataMember(Name="CreditHold", EmitDefaultValue=false)] + public BooleanValue? CreditHold { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="DetailTotal", EmitDefaultValue=false)] + public DecimalValue? DetailTotal { get; set; } + + [DataMember(Name="DiscountDetails", EmitDefaultValue=false)] + public List? DiscountDetails { get; set; } + + [DataMember(Name="DiscountTotal", EmitDefaultValue=false)] + public DecimalValue? DiscountTotal { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] + public BooleanValue? IsTaxValid { get; set; } + + [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] + public SalesInvoiceFinancialDetails? FinancialDetails { get; set; } + + [DataMember(Name="FreightDetails", EmitDefaultValue=false)] + public List? FreightDetails { get; set; } + + [DataMember(Name="FreightPrice", EmitDefaultValue=false)] + public DecimalValue? FreightPrice { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PaymentTotal", EmitDefaultValue=false)] + public DecimalValue? PaymentTotal { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] + public DecimalValue? VATExemptTotal { get; set; } + + [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] + public DecimalValue? VATTaxableTotal { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs new file mode 100644 index 000000000..dc0379a91 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceApplicationCreditMemo : Entity + { + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs new file mode 100644 index 000000000..1e1d7030d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceApplicationInvoice : Entity + { + + [DataMember(Name="AdjustedDocReferenceNbr", EmitDefaultValue=false)] + public StringValue? AdjustedDocReferenceNbr { get; set; } + + [DataMember(Name="AdjustingDocReferenceNbr", EmitDefaultValue=false)] + public StringValue? AdjustingDocReferenceNbr { get; set; } + + [DataMember(Name="AdjustmentNbr", EmitDefaultValue=false)] + public IntValue? AdjustmentNbr { get; set; } + + [DataMember(Name="AmountPaid", EmitDefaultValue=false)] + public DecimalValue? AmountPaid { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] + public DecimalValue? CashDiscountTaken { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="DocumentType", EmitDefaultValue=false)] + public StringValue? DocumentType { get; set; } + + [DataMember(Name="PaymentDate", EmitDefaultValue=false)] + public DateTimeValue? PaymentDate { get; set; } + + [DataMember(Name="PaymentPeriod", EmitDefaultValue=false)] + public StringValue? PaymentPeriod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs new file mode 100644 index 000000000..cab8be56a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceCommissions : Entity + { + + [DataMember(Name="CommissionAmount", EmitDefaultValue=false)] + public DecimalValue? CommissionAmount { get; set; } + + [DataMember(Name="SalesPersons", EmitDefaultValue=false)] + public List? SalesPersons { get; set; } + + [DataMember(Name="TotalCommissionableAmount", EmitDefaultValue=false)] + public DecimalValue? TotalCommissionableAmount { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs new file mode 100644 index 000000000..aebe75bb1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs @@ -0,0 +1,108 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceDetail : Entity + { + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] + public BooleanValue? CalculateDiscountsOnImport { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryDocType", EmitDefaultValue=false)] + public StringValue? InventoryDocType { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] + public StringValue? InventoryRefNbr { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="OrderLineNbr", EmitDefaultValue=false)] + public IntValue? OrderLineNbr { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="OrigInvLineNbr", EmitDefaultValue=false)] + public IntValue? OrigInvLineNbr { get; set; } + + [DataMember(Name="OrigInvNbr", EmitDefaultValue=false)] + public StringValue? OrigInvNbr { get; set; } + + [DataMember(Name="OrigInvType", EmitDefaultValue=false)] + public StringValue? OrigInvType { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] + public StringValue? ShipmentNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TransactionDescr", EmitDefaultValue=false)] + public StringValue? TransactionDescr { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs new file mode 100644 index 000000000..c6d26c4a1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceDiscountDetails : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountableAmount { get; set; } + + [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] + public DecimalValue? DiscountableQty { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="ExternalDiscountCode", EmitDefaultValue=false)] + public StringValue? ExternalDiscountCode { get; set; } + + [DataMember(Name="FreeItem", EmitDefaultValue=false)] + public StringValue? FreeItem { get; set; } + + [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] + public DecimalValue? FreeItemQty { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="SequenceID", EmitDefaultValue=false)] + public StringValue? SequenceID { get; set; } + + [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] + public BooleanValue? SkipDiscount { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs new file mode 100644 index 000000000..5b6673f78 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceFinancialDetails : Entity + { + + [DataMember(Name="BatchNbr", EmitDefaultValue=false)] + public StringValue? BatchNbr { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] + public StringValue? CustomerTaxZone { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs new file mode 100644 index 000000000..884312448 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceFreightDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="FreightAmount", EmitDefaultValue=false)] + public DecimalValue? FreightAmount { get; set; } + + [DataMember(Name="FreightCost", EmitDefaultValue=false)] + public DecimalValue? FreightCost { get; set; } + + [DataMember(Name="LineTotal", EmitDefaultValue=false)] + public DecimalValue? LineTotal { get; set; } + + [DataMember(Name="PremiumFreightAmount", EmitDefaultValue=false)] + public DecimalValue? PremiumFreightAmount { get; set; } + + [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] + public StringValue? ShipmentNbr { get; set; } + + [DataMember(Name="ShipmentType", EmitDefaultValue=false)] + public StringValue? ShipmentType { get; set; } + + [DataMember(Name="TotalFreightAmount", EmitDefaultValue=false)] + public DecimalValue? TotalFreightAmount { get; set; } + + [DataMember(Name="Volume", EmitDefaultValue=false)] + public DecimalValue? Volume { get; set; } + + [DataMember(Name="Weight", EmitDefaultValue=false)] + public DecimalValue? Weight { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs new file mode 100644 index 000000000..1a3faa7c6 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceSalesPersonDetail : Entity + { + + [DataMember(Name="CommissionableAmount", EmitDefaultValue=false)] + public DecimalValue? CommissionableAmount { get; set; } + + [DataMember(Name="CommissionAmount", EmitDefaultValue=false)] + public DecimalValue? CommissionAmount { get; set; } + + [DataMember(Name="CommissionPercent", EmitDefaultValue=false)] + public DecimalValue? CommissionPercent { get; set; } + + [DataMember(Name="SalespersonID", EmitDefaultValue=false)] + public StringValue? SalespersonID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs new file mode 100644 index 000000000..88b61c617 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesInvoiceTaxDetail : Entity + { + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs new file mode 100644 index 000000000..b7d124418 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs @@ -0,0 +1,229 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrder : Entity, ITopLevelEntity + { + + [DataMember(Name="Approved", EmitDefaultValue=false)] + public BooleanValue? Approved { get; set; } + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="BillToAddress", EmitDefaultValue=false)] + public Address? BillToAddress { get; set; } + + [DataMember(Name="BillToAddressOverride", EmitDefaultValue=false)] + public BooleanValue? BillToAddressOverride { get; set; } + + [DataMember(Name="BillToAddressValidated", EmitDefaultValue=false)] + public BooleanValue? BillToAddressValidated { get; set; } + + [DataMember(Name="BillToContact", EmitDefaultValue=false)] + public DocContact? BillToContact { get; set; } + + [DataMember(Name="BillToContactOverride", EmitDefaultValue=false)] + public BooleanValue? BillToContactOverride { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="Commissions", EmitDefaultValue=false)] + public Commissions? Commissions { get; set; } + + [DataMember(Name="ContactID", EmitDefaultValue=false)] + public StringValue? ContactID { get; set; } + + [DataMember(Name="ControlTotal", EmitDefaultValue=false)] + public DecimalValue? ControlTotal { get; set; } + + [DataMember(Name="CreditHold", EmitDefaultValue=false)] + public BooleanValue? CreditHold { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrencyRateTypeID { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DestinationWarehouseID", EmitDefaultValue=false)] + public StringValue? DestinationWarehouseID { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="DisableAutomaticDiscountUpdate", EmitDefaultValue=false)] + public BooleanValue? DisableAutomaticDiscountUpdate { get; set; } + + [DataMember(Name="DisableAutomaticTaxCalculation", EmitDefaultValue=false)] + public BooleanValue? DisableAutomaticTaxCalculation { get; set; } + + [DataMember(Name="DiscountDetails", EmitDefaultValue=false)] + public List? DiscountDetails { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + [DataMember(Name="FinancialSettings", EmitDefaultValue=false)] + public FinancialSettings? FinancialSettings { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] + public BooleanValue? IsTaxValid { get; set; } + + [DataMember(Name="LastModified", EmitDefaultValue=false)] + public DateTimeValue? LastModified { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="MaxRiskScore", EmitDefaultValue=false)] + public DecimalValue? MaxRiskScore { get; set; } + + [DataMember(Name="OrderedQty", EmitDefaultValue=false)] + public DecimalValue? OrderedQty { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderRisks", EmitDefaultValue=false)] + public List? OrderRisks { get; set; } + + [DataMember(Name="OrderTotal", EmitDefaultValue=false)] + public DecimalValue? OrderTotal { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="Payments", EmitDefaultValue=false)] + public List? Payments { get; set; } + + [DataMember(Name="PreferredWarehouseID", EmitDefaultValue=false)] + public StringValue? PreferredWarehouseID { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? ReciprocalRate { get; set; } + + [DataMember(Name="Relations", EmitDefaultValue=false)] + public List? Relations { get; set; } + + [DataMember(Name="RequestedOn", EmitDefaultValue=false)] + public DateTimeValue? RequestedOn { get; set; } + + [DataMember(Name="Shipments", EmitDefaultValue=false)] + public List? Shipments { get; set; } + + [DataMember(Name="ShippingSettings", EmitDefaultValue=false)] + public ShippingSettings? ShippingSettings { get; set; } + + [DataMember(Name="ShipToAddress", EmitDefaultValue=false)] + public Address? ShipToAddress { get; set; } + + [DataMember(Name="ShipToAddressOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToAddressOverride { get; set; } + + [DataMember(Name="ShipToAddressValidated", EmitDefaultValue=false)] + public BooleanValue? ShipToAddressValidated { get; set; } + + [DataMember(Name="ShipToContact", EmitDefaultValue=false)] + public DocContact? ShipToContact { get; set; } + + [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToContactOverride { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Totals", EmitDefaultValue=false)] + public Totals? Totals { get; set; } + + [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] + public DecimalValue? VATExemptTotal { get; set; } + + [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] + public DecimalValue? VATTaxableTotal { get; set; } + + [DataMember(Name="ExternalOrderOriginal", EmitDefaultValue=false)] + public BooleanValue? ExternalOrderOriginal { get; set; } + + [DataMember(Name="ExternalRefundRef", EmitDefaultValue=false)] + public StringValue? ExternalRefundRef { get; set; } + + [DataMember(Name="WillCall", EmitDefaultValue=false)] + public BooleanValue? WillCall { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="UsrExternalOrderOriginal", EmitDefaultValue=false)] + public BooleanValue? UsrExternalOrderOriginal { get; set; } + + [DataMember(Name="ExternalOrderOrigin", EmitDefaultValue=false)] + public StringValue? ExternalOrderOrigin { get; set; } + + [DataMember(Name="ExternalOrderSource", EmitDefaultValue=false)] + public StringValue? ExternalOrderSource { get; set; } + + [DataMember(Name="TaxCalcMode", EmitDefaultValue=false)] + public StringValue? TaxCalcMode { get; set; } + + [DataMember(Name="CreatedDate", EmitDefaultValue=false)] + public DateTimeValue? CreatedDate { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs new file mode 100644 index 000000000..2b2ebdbdd --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderCreditCardTransactionDetail : Entity + { + + [DataMember(Name="AuthNbr", EmitDefaultValue=false)] + public StringValue? AuthNbr { get; set; } + + [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] + public StringValue? ExtProfileId { get; set; } + + [DataMember(Name="NeedValidation", EmitDefaultValue=false)] + public BooleanValue? NeedValidation { get; set; } + + [DataMember(Name="TranDate", EmitDefaultValue=false)] + public DateTimeValue? TranDate { get; set; } + + [DataMember(Name="TranNbr", EmitDefaultValue=false)] + public StringValue? TranNbr { get; set; } + + [DataMember(Name="TranType", EmitDefaultValue=false)] + public StringValue? TranType { get; set; } + + [DataMember(Name="CardType", EmitDefaultValue=false)] + public StringValue? CardType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs new file mode 100644 index 000000000..d74a8cdde --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs @@ -0,0 +1,201 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="AlternateID", EmitDefaultValue=false)] + public StringValue? AlternateID { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="AutoCreateIssue", EmitDefaultValue=false)] + public BooleanValue? AutoCreateIssue { get; set; } + + [DataMember(Name="AverageCost", EmitDefaultValue=false)] + public DecimalValue? AverageCost { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] + public BooleanValue? CalculateDiscountsOnImport { get; set; } + + [DataMember(Name="Commissionable", EmitDefaultValue=false)] + public BooleanValue? Commissionable { get; set; } + + [DataMember(Name="Completed", EmitDefaultValue=false)] + public BooleanValue? Completed { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CustomerOrderNbr", EmitDefaultValue=false)] + public StringValue? CustomerOrderNbr { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountedUnitPrice", EmitDefaultValue=false)] + public DecimalValue? DiscountedUnitPrice { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="ExtendedPrice", EmitDefaultValue=false)] + public DecimalValue? ExtendedPrice { get; set; } + + [DataMember(Name="FreeItem", EmitDefaultValue=false)] + public BooleanValue? FreeItem { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="InvoiceLineNbr", EmitDefaultValue=false)] + public IntValue? InvoiceLineNbr { get; set; } + + [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] + public StringValue? InvoiceNbr { get; set; } + + [DataMember(Name="InvoiceType", EmitDefaultValue=false)] + public StringValue? InvoiceType { get; set; } + + [DataMember(Name="LastModifiedDate", EmitDefaultValue=false)] + public StringValue? LastModifiedDate { get; set; } + + [DataMember(Name="LineDescription", EmitDefaultValue=false)] + public StringValue? LineDescription { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LineType", EmitDefaultValue=false)] + public StringValue? LineType { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="MarkForPO", EmitDefaultValue=false)] + public BooleanValue? MarkForPO { get; set; } + + [DataMember(Name="OpenQty", EmitDefaultValue=false)] + public DecimalValue? OpenQty { get; set; } + + [DataMember(Name="Operation", EmitDefaultValue=false)] + public StringValue? Operation { get; set; } + + [DataMember(Name="OrderQty", EmitDefaultValue=false)] + public DecimalValue? OrderQty { get; set; } + + [DataMember(Name="OvershipThreshold", EmitDefaultValue=false)] + public DecimalValue? OvershipThreshold { get; set; } + + [DataMember(Name="POSource", EmitDefaultValue=false)] + public StringValue? POSource { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="PurchaseWarehouse", EmitDefaultValue=false)] + public StringValue? PurchaseWarehouse { get; set; } + + [DataMember(Name="PurchasingDetails", EmitDefaultValue=false)] + public List? PurchasingDetails { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="QtyOnShipments", EmitDefaultValue=false)] + public DecimalValue? QtyOnShipments { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="RequestedOn", EmitDefaultValue=false)] + public DateTimeValue? RequestedOn { get; set; } + + [DataMember(Name="SalespersonID", EmitDefaultValue=false)] + public StringValue? SalespersonID { get; set; } + + [DataMember(Name="SchedOrderDate", EmitDefaultValue=false)] + public DateTimeValue? SchedOrderDate { get; set; } + + [DataMember(Name="ShipOn", EmitDefaultValue=false)] + public DateTimeValue? ShipOn { get; set; } + + [DataMember(Name="ShippingRule", EmitDefaultValue=false)] + public StringValue? ShippingRule { get; set; } + + [DataMember(Name="ShipToLocation", EmitDefaultValue=false)] + public StringValue? ShipToLocation { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="UnbilledAmount", EmitDefaultValue=false)] + public DecimalValue? UnbilledAmount { get; set; } + + [DataMember(Name="UndershipThreshold", EmitDefaultValue=false)] + public DecimalValue? UndershipThreshold { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + [DataMember(Name="AssociatedOrderLineNbr", EmitDefaultValue=false)] + public IntValue? AssociatedOrderLineNbr { get; set; } + + [DataMember(Name="GiftMessage", EmitDefaultValue=false)] + public StringValue? GiftMessage { get; set; } + + [DataMember(Name="ManualPrice", EmitDefaultValue=false)] + public BooleanValue? ManualPrice { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs new file mode 100644 index 000000000..8a9235de2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs @@ -0,0 +1,78 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderDetailAllocation : Entity + { + + [DataMember(Name="Allocated", EmitDefaultValue=false)] + public BooleanValue? Allocated { get; set; } + + [DataMember(Name="AllocWarehouseID", EmitDefaultValue=false)] + public StringValue? AllocWarehouseID { get; set; } + + [DataMember(Name="Completed", EmitDefaultValue=false)] + public BooleanValue? Completed { get; set; } + + [DataMember(Name="CustomerOrderNbr", EmitDefaultValue=false)] + public StringValue? CustomerOrderNbr { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="QtyOnShipments", EmitDefaultValue=false)] + public DecimalValue? QtyOnShipments { get; set; } + + [DataMember(Name="QtyReceived", EmitDefaultValue=false)] + public DecimalValue? QtyReceived { get; set; } + + [DataMember(Name="RelatedDocument", EmitDefaultValue=false)] + public StringValue? RelatedDocument { get; set; } + + [DataMember(Name="SchedOrderDate", EmitDefaultValue=false)] + public DateTimeValue? SchedOrderDate { get; set; } + + [DataMember(Name="ShipOn", EmitDefaultValue=false)] + public DateTimeValue? ShipOn { get; set; } + + [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] + public IntValue? SplitLineNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs new file mode 100644 index 000000000..8f43e3583 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderPayment : Entity + { + + [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] + public DateTimeValue? ApplicationDate { get; set; } + + [DataMember(Name="AppliedToOrder", EmitDefaultValue=false)] + public DecimalValue? AppliedToOrder { get; set; } + + [DataMember(Name="Authorize", EmitDefaultValue=false)] + public BooleanValue? Authorize { get; set; } + + [DataMember(Name="Balance", EmitDefaultValue=false)] + public DecimalValue? Balance { get; set; } + + [DataMember(Name="CardAccountNbr", EmitDefaultValue=false)] + public StringValue? CardAccountNbr { get; set; } + + [DataMember(Name="Capture", EmitDefaultValue=false)] + public BooleanValue? Capture { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="CreditCardTransactionInfo", EmitDefaultValue=false)] + public List? CreditCardTransactionInfo { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocType", EmitDefaultValue=false)] + public StringValue? DocType { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OrigTransactionNbr", EmitDefaultValue=false)] + public StringValue? OrigTransactionNbr { get; set; } + + [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] + public DecimalValue? PaymentAmount { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="ProcessingCenterID", EmitDefaultValue=false)] + public StringValue? ProcessingCenterID { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Refund", EmitDefaultValue=false)] + public BooleanValue? Refund { get; set; } + + [DataMember(Name="SaveCard", EmitDefaultValue=false)] + public BooleanValue? SaveCard { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TransferredtoInvoice", EmitDefaultValue=false)] + public DecimalValue? TransferredtoInvoice { get; set; } + + [DataMember(Name="ValidateCCRefundOrigTransaction", EmitDefaultValue=false)] + public BooleanValue? ValidateCCRefundOrigTransaction { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs new file mode 100644 index 000000000..0ffa2e510 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrderShipment : Entity + { + + [DataMember(Name="InventoryDocType", EmitDefaultValue=false)] + public StringValue? InventoryDocType { get; set; } + + [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] + public StringValue? InventoryRefNbr { get; set; } + + [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] + public StringValue? InvoiceNbr { get; set; } + + [DataMember(Name="InvoiceType", EmitDefaultValue=false)] + public StringValue? InvoiceType { get; set; } + + [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] + public DateTimeValue? ShipmentDate { get; set; } + + [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] + public StringValue? ShipmentNbr { get; set; } + + [DataMember(Name="ShipmentType", EmitDefaultValue=false)] + public StringValue? ShipmentType { get; set; } + + [DataMember(Name="ShippedQty", EmitDefaultValue=false)] + public DecimalValue? ShippedQty { get; set; } + + [DataMember(Name="ShippedVolume", EmitDefaultValue=false)] + public DecimalValue? ShippedVolume { get; set; } + + [DataMember(Name="ShippedWeight", EmitDefaultValue=false)] + public DecimalValue? ShippedWeight { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="InventoryNoteID", EmitDefaultValue=false)] + public GuidValue? InventoryNoteID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OrderNoteID", EmitDefaultValue=false)] + public GuidValue? OrderNoteID { get; set; } + + [DataMember(Name="ShippingNoteID", EmitDefaultValue=false)] + public GuidValue? ShippingNoteID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs new file mode 100644 index 000000000..8ac48a573 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesOrdersDiscountDetails : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountableAmount { get; set; } + + [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] + public DecimalValue? DiscountableQty { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="ExternalDiscountCode", EmitDefaultValue=false)] + public StringValue? ExternalDiscountCode { get; set; } + + [DataMember(Name="FreeItem", EmitDefaultValue=false)] + public StringValue? FreeItem { get; set; } + + [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] + public DecimalValue? FreeItemQty { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="SequenceID", EmitDefaultValue=false)] + public StringValue? SequenceID { get; set; } + + [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] + public BooleanValue? SkipDiscount { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs new file mode 100644 index 000000000..8edf442c5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesPersonDetail : Entity + { + + [DataMember(Name="CommissionableAmount", EmitDefaultValue=false)] + public DecimalValue? CommissionableAmount { get; set; } + + [DataMember(Name="CommissionAmount", EmitDefaultValue=false)] + public DecimalValue? CommissionAmount { get; set; } + + [DataMember(Name="CommissionPercent", EmitDefaultValue=false)] + public DecimalValue? CommissionPercent { get; set; } + + [DataMember(Name="SalespersonID", EmitDefaultValue=false)] + public StringValue? SalespersonID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs new file mode 100644 index 000000000..caed4fdd9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesPriceDetail : Entity + { + + [DataMember(Name="BreakQty", EmitDefaultValue=false)] + public DecimalValue? BreakQty { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Price", EmitDefaultValue=false)] + public DecimalValue? Price { get; set; } + + [DataMember(Name="PriceCode", EmitDefaultValue=false)] + public StringValue? PriceCode { get; set; } + + [DataMember(Name="PriceType", EmitDefaultValue=false)] + public StringValue? PriceType { get; set; } + + [DataMember(Name="Promotion", EmitDefaultValue=false)] + public BooleanValue? Promotion { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="Tax", EmitDefaultValue=false)] + public StringValue? Tax { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] + public StringValue? TaxCalculationMode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs new file mode 100644 index 000000000..011bc4404 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesPriceWorksheet : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OverwriteOverlappingPrices", EmitDefaultValue=false)] + public BooleanValue? OverwriteOverlappingPrices { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="SalesPrices", EmitDefaultValue=false)] + public List? SalesPrices { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs new file mode 100644 index 000000000..40ba439b2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesPricesInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="EffectiveAsOf", EmitDefaultValue=false)] + public DateTimeValue? EffectiveAsOf { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="ItemClassID", EmitDefaultValue=false)] + public StringValue? ItemClassID { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="PriceCode", EmitDefaultValue=false)] + public StringValue? PriceCode { get; set; } + + [DataMember(Name="PriceManager", EmitDefaultValue=false)] + public StringValue? PriceManager { get; set; } + + [DataMember(Name="PriceManagerIsMe", EmitDefaultValue=false)] + public BooleanValue? PriceManagerIsMe { get; set; } + + [DataMember(Name="PriceType", EmitDefaultValue=false)] + public StringValue? PriceType { get; set; } + + [DataMember(Name="PriceWorkgroup", EmitDefaultValue=false)] + public StringValue? PriceWorkgroup { get; set; } + + [DataMember(Name="PriceWorkgroupIsMine", EmitDefaultValue=false)] + public BooleanValue? PriceWorkgroupIsMine { get; set; } + + [DataMember(Name="SalesPriceDetails", EmitDefaultValue=false)] + public List? SalesPriceDetails { get; set; } + + [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] + public StringValue? TaxCalculationMode { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs new file mode 100644 index 000000000..b0d11048c --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SalesPricesWorksheetDetail : Entity + { + + [DataMember(Name="BreakQty", EmitDefaultValue=false)] + public DecimalValue? BreakQty { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineID", EmitDefaultValue=false)] + public IntValue? LineID { get; set; } + + [DataMember(Name="PendingPrice", EmitDefaultValue=false)] + public DecimalValue? PendingPrice { get; set; } + + [DataMember(Name="PriceCode", EmitDefaultValue=false)] + public StringValue? PriceCode { get; set; } + + [DataMember(Name="PriceType", EmitDefaultValue=false)] + public StringValue? PriceType { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="SourcePrice", EmitDefaultValue=false)] + public DecimalValue? SourcePrice { get; set; } + + [DataMember(Name="Tax", EmitDefaultValue=false)] + public StringValue? Tax { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs new file mode 100644 index 000000000..bfba71fe2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Salesperson : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="DefaultCommission", EmitDefaultValue=false)] + public DecimalValue? DefaultCommission { get; set; } + + [DataMember(Name="IsActive", EmitDefaultValue=false)] + public BooleanValue? IsActive { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="SalespersonID", EmitDefaultValue=false)] + public StringValue? SalespersonID { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs new file mode 100644 index 000000000..ea17b83ef --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ServiceOrder : Entity, ITopLevelEntity + { + + [DataMember(Name="Address", EmitDefaultValue=false)] + public SrvOrdAddress? Address { get; set; } + + [DataMember(Name="AppointmentDuration", EmitDefaultValue=false)] + public StringValue? AppointmentDuration { get; set; } + + [DataMember(Name="Appointments", EmitDefaultValue=false)] + public List? Appointments { get; set; } + + [DataMember(Name="AppointmentsNeeded", EmitDefaultValue=false)] + public BooleanValue? AppointmentsNeeded { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BillableTotal", EmitDefaultValue=false)] + public DecimalValue? BillableTotal { get; set; } + + [DataMember(Name="BranchLocation", EmitDefaultValue=false)] + public StringValue? BranchLocation { get; set; } + + [DataMember(Name="Contact", EmitDefaultValue=false)] + public SrvOrdContact? Contact { get; set; } + + [DataMember(Name="ContractInfo", EmitDefaultValue=false)] + public SrvOrdContractInfo? ContractInfo { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="Customer", EmitDefaultValue=false)] + public StringValue? Customer { get; set; } + + [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] + public StringValue? CustomerOrder { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="DefaultProjectTask", EmitDefaultValue=false)] + public StringValue? DefaultProjectTask { get; set; } + + [DataMember(Name="DefaultStaff", EmitDefaultValue=false)] + public List? DefaultStaff { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="EstimatedDuration", EmitDefaultValue=false)] + public StringValue? EstimatedDuration { get; set; } + + [DataMember(Name="ExternalReference", EmitDefaultValue=false)] + public StringValue? ExternalReference { get; set; } + + [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] + public SrvOrdFinancialDetails? FinancialDetails { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="OtherInformation", EmitDefaultValue=false)] + public SrvOrdOtherInformation? OtherInformation { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + [DataMember(Name="Prepayments", EmitDefaultValue=false)] + public List? Prepayments { get; set; } + + [DataMember(Name="Priority", EmitDefaultValue=false)] + public StringValue? Priority { get; set; } + + [DataMember(Name="Problem", EmitDefaultValue=false)] + public StringValue? Problem { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] + public StringValue? ServiceOrderNbr { get; set; } + + [DataMember(Name="ServiceOrderTotal", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderTotal { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="Severity", EmitDefaultValue=false)] + public StringValue? Severity { get; set; } + + [DataMember(Name="SLA", EmitDefaultValue=false)] + public DateTimeValue? SLA { get; set; } + + [DataMember(Name="SLATime", EmitDefaultValue=false)] + public DateTimeValue? SLATime { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Supervisor", EmitDefaultValue=false)] + public StringValue? Supervisor { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="Totals", EmitDefaultValue=false)] + public SrvOrdTotals? Totals { get; set; } + + [DataMember(Name="WaitingforPurchasedItems", EmitDefaultValue=false)] + public BooleanValue? WaitingforPurchasedItems { get; set; } + + [DataMember(Name="WorkflowStage", EmitDefaultValue=false)] + public StringValue? WorkflowStage { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs new file mode 100644 index 000000000..95303f301 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SettingsForPR : Entity + { + + [DataMember(Name="ExportScenario", EmitDefaultValue=false)] + public StringValue? ExportScenario { get; set; } + + [DataMember(Name="PRProcessing", EmitDefaultValue=false)] + public StringValue? PRProcessing { get; set; } + + [DataMember(Name="Report", EmitDefaultValue=false)] + public StringValue? Report { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs new file mode 100644 index 000000000..784a7a011 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipToSettings : Entity + { + + [DataMember(Name="ShipToAddress", EmitDefaultValue=false)] + public Address? ShipToAddress { get; set; } + + [DataMember(Name="ShipToAddressOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToAddressOverride { get; set; } + + [DataMember(Name="ShipToContact", EmitDefaultValue=false)] + public DocContact? ShipToContact { get; set; } + + [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToContactOverride { get; set; } + + [DataMember(Name="Validated", EmitDefaultValue=false)] + public BooleanValue? Validated { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs new file mode 100644 index 000000000..e5252221d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipVia : Entity, ITopLevelEntity + { + + [DataMember(Name="CalculationMethod", EmitDefaultValue=false)] + public StringValue? CalculationMethod { get; set; } + + [DataMember(Name="Calendar", EmitDefaultValue=false)] + public StringValue? Calendar { get; set; } + + [DataMember(Name="CarrierID", EmitDefaultValue=false)] + public StringValue? CarrierID { get; set; } + + [DataMember(Name="CommonCarrier", EmitDefaultValue=false)] + public BooleanValue? CommonCarrier { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="FreightExpenseAccount", EmitDefaultValue=false)] + public StringValue? FreightExpenseAccount { get; set; } + + [DataMember(Name="FreightExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? FreightExpenseSubaccount { get; set; } + + [DataMember(Name="FreightRates", EmitDefaultValue=false)] + public List? FreightRates { get; set; } + + [DataMember(Name="FreightSalesAccount", EmitDefaultValue=false)] + public StringValue? FreightSalesAccount { get; set; } + + [DataMember(Name="FreightSalesSubaccount", EmitDefaultValue=false)] + public StringValue? FreightSalesSubaccount { get; set; } + + [DataMember(Name="Packages", EmitDefaultValue=false)] + public List? Packages { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs new file mode 100644 index 000000000..a815c7cdf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipViaFreightRate : Entity + { + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="Rate", EmitDefaultValue=false)] + public DecimalValue? Rate { get; set; } + + [DataMember(Name="Volume", EmitDefaultValue=false)] + public DecimalValue? Volume { get; set; } + + [DataMember(Name="Weight", EmitDefaultValue=false)] + public DecimalValue? Weight { get; set; } + + [DataMember(Name="ZoneID", EmitDefaultValue=false)] + public StringValue? ZoneID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs new file mode 100644 index 000000000..6165442ec --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs @@ -0,0 +1,163 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Shipment : Entity, ITopLevelEntity + { + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="ControlQty", EmitDefaultValue=false)] + public DecimalValue? ControlQty { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrencyRateTypeID { get; set; } + + [DataMember(Name="CurrencyViewState", EmitDefaultValue=false)] + public BooleanValue? CurrencyViewState { get; set; } + + [DataMember(Name="CustomerID", EmitDefaultValue=false)] + public StringValue? CustomerID { get; set; } + + [DataMember(Name="CreateNewShipmentForEveryOrder", EmitDefaultValue=false)] + public BooleanValue? CreateNewShipmentForEveryOrder { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="FOBPoint", EmitDefaultValue=false)] + public StringValue? FOBPoint { get; set; } + + [DataMember(Name="OverrideFreightPrice", EmitDefaultValue=false)] + public BooleanValue? OverrideFreightPrice { get; set; } + + [DataMember(Name="FreightPrice", EmitDefaultValue=false)] + public DecimalValue? FreightPrice { get; set; } + + [DataMember(Name="FreightCost", EmitDefaultValue=false)] + public DecimalValue? FreightCost { get; set; } + + [DataMember(Name="FreightCurrencyID", EmitDefaultValue=false)] + public StringValue? FreightCurrencyID { get; set; } + + [DataMember(Name="GroundCollect", EmitDefaultValue=false)] + public BooleanValue? GroundCollect { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="Insurance", EmitDefaultValue=false)] + public BooleanValue? Insurance { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="Operation", EmitDefaultValue=false)] + public StringValue? Operation { get; set; } + + [DataMember(Name="Orders", EmitDefaultValue=false)] + public List? Orders { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="PackageCount", EmitDefaultValue=false)] + public IntValue? PackageCount { get; set; } + + [DataMember(Name="Packages", EmitDefaultValue=false)] + public List? Packages { get; set; } + + [DataMember(Name="PackageWeight", EmitDefaultValue=false)] + public DecimalValue? PackageWeight { get; set; } + + [DataMember(Name="Picked", EmitDefaultValue=false)] + public BooleanValue? Picked { get; set; } + + [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? ReciprocalRate { get; set; } + + [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] + public BooleanValue? ResidentialDelivery { get; set; } + + [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] + public BooleanValue? SaturdayDelivery { get; set; } + + [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] + public DateTimeValue? ShipmentDate { get; set; } + + [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] + public StringValue? ShipmentNbr { get; set; } + + [DataMember(Name="ShippedQty", EmitDefaultValue=false)] + public DecimalValue? ShippedQty { get; set; } + + [DataMember(Name="ShippedVolume", EmitDefaultValue=false)] + public DecimalValue? ShippedVolume { get; set; } + + [DataMember(Name="ShippedWeight", EmitDefaultValue=false)] + public DecimalValue? ShippedWeight { get; set; } + + [DataMember(Name="ShippingSettings", EmitDefaultValue=false)] + public ShipToSettings? ShippingSettings { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShippingZoneID", EmitDefaultValue=false)] + public StringValue? ShippingZoneID { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="ToWarehouseID", EmitDefaultValue=false)] + public StringValue? ToWarehouseID { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UseCustomersAccount", EmitDefaultValue=false)] + public BooleanValue? UseCustomersAccount { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] + public StringValue? WorkgroupID { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs new file mode 100644 index 000000000..d21936d74 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipmentDetail : Entity + { + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="FreeItem", EmitDefaultValue=false)] + public BooleanValue? FreeItem { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="OpenQty", EmitDefaultValue=false)] + public DecimalValue? OpenQty { get; set; } + + [DataMember(Name="OrderedQty", EmitDefaultValue=false)] + public DecimalValue? OrderedQty { get; set; } + + [DataMember(Name="OrderLineNbr", EmitDefaultValue=false)] + public IntValue? OrderLineNbr { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="OriginalQty", EmitDefaultValue=false)] + public DecimalValue? OriginalQty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="ShippedQty", EmitDefaultValue=false)] + public DecimalValue? ShippedQty { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs new file mode 100644 index 000000000..09bb38d8f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipmentDetailAllocation : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] + public IntValue? SplitLineNbr { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs new file mode 100644 index 000000000..ad6ac2e9b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipmentOrderDetail : Entity + { + + [DataMember(Name="InventoryDocType", EmitDefaultValue=false)] + public StringValue? InventoryDocType { get; set; } + + [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] + public StringValue? InventoryRefNbr { get; set; } + + [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] + public StringValue? InvoiceNbr { get; set; } + + [DataMember(Name="InvoiceType", EmitDefaultValue=false)] + public StringValue? InvoiceType { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] + public StringValue? ShipmentNbr { get; set; } + + [DataMember(Name="ShipmentType", EmitDefaultValue=false)] + public StringValue? ShipmentType { get; set; } + + [DataMember(Name="ShippedQty", EmitDefaultValue=false)] + public DecimalValue? ShippedQty { get; set; } + + [DataMember(Name="ShippedVolume", EmitDefaultValue=false)] + public DecimalValue? ShippedVolume { get; set; } + + [DataMember(Name="ShippedWeight", EmitDefaultValue=false)] + public DecimalValue? ShippedWeight { get; set; } + + [DataMember(Name="OrderNoteID", EmitDefaultValue=false)] + public GuidValue? OrderNoteID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs new file mode 100644 index 000000000..ae3c033ca --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipmentPackage : Entity + { + + [DataMember(Name="BoxID", EmitDefaultValue=false)] + public StringValue? BoxID { get; set; } + + [DataMember(Name="CODAmount", EmitDefaultValue=false)] + public DecimalValue? CODAmount { get; set; } + + [DataMember(Name="Confirmed", EmitDefaultValue=false)] + public BooleanValue? Confirmed { get; set; } + + [DataMember(Name="CustomRefNbr1", EmitDefaultValue=false)] + public StringValue? CustomRefNbr1 { get; set; } + + [DataMember(Name="CustomRefNbr2", EmitDefaultValue=false)] + public StringValue? CustomRefNbr2 { get; set; } + + [DataMember(Name="DeclaredValue", EmitDefaultValue=false)] + public DecimalValue? DeclaredValue { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="TrackingNbr", EmitDefaultValue=false)] + public StringValue? TrackingNbr { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Weight", EmitDefaultValue=false)] + public DecimalValue? Weight { get; set; } + + [DataMember(Name="Length", EmitDefaultValue=false)] + public DecimalValue? Length { get; set; } + + [DataMember(Name="Width", EmitDefaultValue=false)] + public DecimalValue? Width { get; set; } + + [DataMember(Name="Height", EmitDefaultValue=false)] + public DecimalValue? Height { get; set; } + + [DataMember(Name="PackageContents", EmitDefaultValue=false)] + public List? PackageContents { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs new file mode 100644 index 000000000..5141f6c65 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShipmentPackageDetail : Entity + { + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="OrigOrderNbr", EmitDefaultValue=false)] + public StringValue? OrigOrderNbr { get; set; } + + [DataMember(Name="OrigOrderType", EmitDefaultValue=false)] + public StringValue? OrigOrderType { get; set; } + + [DataMember(Name="Quantity", EmitDefaultValue=false)] + public DecimalValue? Quantity { get; set; } + + [DataMember(Name="ShipmentSplitLineNbr", EmitDefaultValue=false)] + public IntValue? ShipmentSplitLineNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs new file mode 100644 index 000000000..8f287f751 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShippingBox : Entity, ITopLevelEntity + { + + [DataMember(Name="ActiveByDefault", EmitDefaultValue=false)] + public BooleanValue? ActiveByDefault { get; set; } + + [DataMember(Name="BoxID", EmitDefaultValue=false)] + public StringValue? BoxID { get; set; } + + [DataMember(Name="BoxWeight", EmitDefaultValue=false)] + public DecimalValue? BoxWeight { get; set; } + + [DataMember(Name="CarriersPackage", EmitDefaultValue=false)] + public StringValue? CarriersPackage { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Height", EmitDefaultValue=false)] + public DecimalValue? Height { get; set; } + + [DataMember(Name="Length", EmitDefaultValue=false)] + public DecimalValue? Length { get; set; } + + [DataMember(Name="MaxVolume", EmitDefaultValue=false)] + public DecimalValue? MaxVolume { get; set; } + + [DataMember(Name="MaxWeight", EmitDefaultValue=false)] + public DecimalValue? MaxWeight { get; set; } + + [DataMember(Name="VolumeUOM", EmitDefaultValue=false)] + public StringValue? VolumeUOM { get; set; } + + [DataMember(Name="WeightUOM", EmitDefaultValue=false)] + public StringValue? WeightUOM { get; set; } + + [DataMember(Name="Width", EmitDefaultValue=false)] + public DecimalValue? Width { get; set; } + + [DataMember(Name="LinearUOM", EmitDefaultValue=false)] + public StringValue? LinearUOM { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs new file mode 100644 index 000000000..7d8017e00 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShippingInstructions : Entity + { + + [DataMember(Name="ShippingDestinationType", EmitDefaultValue=false)] + public StringValue? ShippingDestinationType { get; set; } + + [DataMember(Name="ShippingLocation", EmitDefaultValue=false)] + public StringValue? ShippingLocation { get; set; } + + [DataMember(Name="ShipTo", EmitDefaultValue=false)] + public StringValue? ShipTo { get; set; } + + [DataMember(Name="ShipToAddress", EmitDefaultValue=false)] + public Address? ShipToAddress { get; set; } + + [DataMember(Name="ShipToAddressOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToAddressOverride { get; set; } + + [DataMember(Name="ShipToAddressValidated", EmitDefaultValue=false)] + public BooleanValue? ShipToAddressValidated { get; set; } + + [DataMember(Name="ShipToContact", EmitDefaultValue=false)] + public DocContact? ShipToContact { get; set; } + + [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] + public BooleanValue? ShipToContactOverride { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs new file mode 100644 index 000000000..72c65bea1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShippingSettings : Entity + { + + [DataMember(Name="CancelByDate", EmitDefaultValue=false)] + public DateTimeValue? CancelByDate { get; set; } + + [DataMember(Name="Canceled", EmitDefaultValue=false)] + public BooleanValue? Canceled { get; set; } + + [DataMember(Name="FOBPoint", EmitDefaultValue=false)] + public StringValue? FOBPoint { get; set; } + + [DataMember(Name="GroundCollect", EmitDefaultValue=false)] + public BooleanValue? GroundCollect { get; set; } + + [DataMember(Name="Insurance", EmitDefaultValue=false)] + public BooleanValue? Insurance { get; set; } + + [DataMember(Name="PreferredWarehouseID", EmitDefaultValue=false)] + public StringValue? PreferredWarehouseID { get; set; } + + [DataMember(Name="Priority", EmitDefaultValue=false)] + public ShortValue? Priority { get; set; } + + [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] + public BooleanValue? ResidentialDelivery { get; set; } + + [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] + public BooleanValue? SaturdayDelivery { get; set; } + + [DataMember(Name="ScheduledShipmentDate", EmitDefaultValue=false)] + public DateTimeValue? ScheduledShipmentDate { get; set; } + + [DataMember(Name="ShippingRule", EmitDefaultValue=false)] + public StringValue? ShippingRule { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShippingZone", EmitDefaultValue=false)] + public StringValue? ShippingZone { get; set; } + + [DataMember(Name="ShipSeparately", EmitDefaultValue=false)] + public BooleanValue? ShipSeparately { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="ShopForRates", EmitDefaultValue=false)] + public ShopForRates? ShopForRates { get; set; } + + [DataMember(Name="UseCustomersAccount", EmitDefaultValue=false)] + public BooleanValue? UseCustomersAccount { get; set; } + + [DataMember(Name="FreightPrice", EmitDefaultValue=false)] + public DecimalValue? FreightPrice { get; set; } + + [DataMember(Name="FreightCost", EmitDefaultValue=false)] + public DecimalValue? FreightCost { get; set; } + + [DataMember(Name="FreightCostIsuptodate", EmitDefaultValue=false)] + public BooleanValue? FreightCostIsuptodate { get; set; } + + [DataMember(Name="FreightTaxCategory", EmitDefaultValue=false)] + public StringValue? FreightTaxCategory { get; set; } + + [DataMember(Name="OrderVolume", EmitDefaultValue=false)] + public DecimalValue? OrderVolume { get; set; } + + [DataMember(Name="OrderWeight", EmitDefaultValue=false)] + public DecimalValue? OrderWeight { get; set; } + + [DataMember(Name="OverrideFreightPrice", EmitDefaultValue=false)] + public BooleanValue? OverrideFreightPrice { get; set; } + + [DataMember(Name="PackageWeight", EmitDefaultValue=false)] + public DecimalValue? PackageWeight { get; set; } + + [DataMember(Name="PremiumFreight", EmitDefaultValue=false)] + public DecimalValue? PremiumFreight { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs new file mode 100644 index 000000000..3646e2e41 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShippingTerm : Entity, ITopLevelEntity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="TermID", EmitDefaultValue=false)] + public StringValue? TermID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs new file mode 100644 index 000000000..9ddc5c961 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShippingTermDetail : Entity + { + + [DataMember(Name="BreakAmount", EmitDefaultValue=false)] + public DecimalValue? BreakAmount { get; set; } + + [DataMember(Name="FreightCost", EmitDefaultValue=false)] + public DecimalValue? FreightCost { get; set; } + + [DataMember(Name="InvoiceAmount", EmitDefaultValue=false)] + public DecimalValue? InvoiceAmount { get; set; } + + [DataMember(Name="LineHandling", EmitDefaultValue=false)] + public DecimalValue? LineHandling { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="ShippingandHandling", EmitDefaultValue=false)] + public DecimalValue? ShippingandHandling { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs new file mode 100644 index 000000000..7b58dac12 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShippingZones : Entity, ITopLevelEntity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ZoneID", EmitDefaultValue=false)] + public StringValue? ZoneID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs new file mode 100644 index 000000000..aa2f5876f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShopForRates : Entity + { + + [DataMember(Name="IsManualPackage", EmitDefaultValue=false)] + public BooleanValue? IsManualPackage { get; set; } + + [DataMember(Name="OrderWeight", EmitDefaultValue=false)] + public DecimalValue? OrderWeight { get; set; } + + [DataMember(Name="PackageWeight", EmitDefaultValue=false)] + public DecimalValue? PackageWeight { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs new file mode 100644 index 000000000..b5282a110 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class ShopifyStore : Entity, ITopLevelEntity + { + + [DataMember(Name="AccessToken", EmitDefaultValue=false)] + public StringValue? AccessToken { get; set; } + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="APIKey", EmitDefaultValue=false)] + public StringValue? APIKey { get; set; } + + [DataMember(Name="APIPassword", EmitDefaultValue=false)] + public StringValue? APIPassword { get; set; } + + [DataMember(Name="Connector", EmitDefaultValue=false)] + public StringValue? Connector { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="SharedSecret", EmitDefaultValue=false)] + public StringValue? SharedSecret { get; set; } + + [DataMember(Name="StoreAdminURL", EmitDefaultValue=false)] + public StringValue? StoreAdminURL { get; set; } + + [DataMember(Name="StoreName", EmitDefaultValue=false)] + public StringValue? StoreName { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs new file mode 100644 index 000000000..ecaa6394e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs @@ -0,0 +1,27 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SolutionFile : Entity + { + [DataMember(Name = "Comment", EmitDefaultValue = false)] + public StringValue? Comment { get; set; } + + [DataMember(Name = "Name", EmitDefaultValue = false)] + public StringValue? Name { get; set; } + + [DataMember(Name = "FileType", EmitDefaultValue = false)] + public StringValue? FileType { get; set; } + + [DataMember(Name = "Initials", EmitDefaultValue = false)] + public StringValue? Initials { get; set; } + + [DataMember(Name = "Main", EmitDefaultValue = false)] + public BooleanValue? Main { get; set; } + + [DataMember(Name = "LineNbr", EmitDefaultValue = false)] + public IntValue? LineNbr { get; set; } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs new file mode 100644 index 000000000..448e513b8 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs @@ -0,0 +1,61 @@ +using System.Collections.Generic; +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SolutionSubmission : Entity, ITopLevelEntity + { + [DataMember(Name = "AcumaticaBuild", EmitDefaultValue = false)] + public StringValue? AcumaticaBuild { get; set; } + + [DataMember(Name = "AcumaticaVersion", EmitDefaultValue = false)] + public StringValue? AcumaticaVersion { get; set; } + + [DataMember(Name = "ISVSolutionCode", EmitDefaultValue = false)] + public StringValue? ISVSolutionCode { get; set; } + + [DataMember(Name = "Contact", EmitDefaultValue = false)] + public StringValue? Contact { get; set; } + + [DataMember(Name = "BusinessAccount", EmitDefaultValue = false)] + public StringValue? BusinessAccount { get; set; } + + [DataMember(Name = "RelatedCase", EmitDefaultValue = false)] + public StringValue? RelatedCase { get; set; } + + [DataMember(Name = "SolutionVersion", EmitDefaultValue = false)] + public StringValue? SolutionVersion { get; set; } + + [DataMember(Name = "Status", EmitDefaultValue = false)] + public StringValue? Status { get; set; } + + [DataMember(Name = "ValidationDateTime", EmitDefaultValue = false)] + public DateTimeValue? ValidationDateTime { get; set; } + + [DataMember(Name = "CreatedDateTime", EmitDefaultValue = false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name = "LastModifiedDateTime", EmitDefaultValue = false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name = "CreatedBy", EmitDefaultValue = false)] + public StringValue? CreatedBy { get; set; } + + [DataMember(Name = "LastModifiedBy", EmitDefaultValue = false)] + public StringValue? LastModifiedBy { get; set; } + + [DataMember(Name = "ContactEmail", EmitDefaultValue = false)] + public StringValue? ContactEmail { get; set; } + + [DataMember(Name = "SolutionFiles", EmitDefaultValue = false)] + public List? SolutionFiles { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs new file mode 100644 index 000000000..6bff1f262 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdAddress : Entity + { + + [DataMember(Name="AddressLine1", EmitDefaultValue=false)] + public StringValue? AddressLine1 { get; set; } + + [DataMember(Name="AddressLine2", EmitDefaultValue=false)] + public StringValue? AddressLine2 { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="PostalCode", EmitDefaultValue=false)] + public StringValue? PostalCode { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs new file mode 100644 index 000000000..5967e87f3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdAppointments : Entity + { + + [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] + public StringValue? AppointmentNbr { get; set; } + + [DataMember(Name="Confirmed", EmitDefaultValue=false)] + public BooleanValue? Confirmed { get; set; } + + [DataMember(Name="ScheduledEndDate", EmitDefaultValue=false)] + public DateTimeValue? ScheduledEndDate { get; set; } + + [DataMember(Name="ScheduledEndTime", EmitDefaultValue=false)] + public DateTimeValue? ScheduledEndTime { get; set; } + + [DataMember(Name="ScheduledStartDate", EmitDefaultValue=false)] + public DateTimeValue? ScheduledStartDate { get; set; } + + [DataMember(Name="ScheduledStartTime", EmitDefaultValue=false)] + public DateTimeValue? ScheduledStartTime { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs new file mode 100644 index 000000000..9a3d7672d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdAttributes : Entity + { + + [DataMember(Name="Attribute", EmitDefaultValue=false)] + public StringValue? Attribute { get; set; } + + [DataMember(Name="RefNoteID", EmitDefaultValue=false)] + public GuidValue? RefNoteID { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs new file mode 100644 index 000000000..69c3f4c2a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdContact : Entity + { + + [DataMember(Name="Attention", EmitDefaultValue=false)] + public StringValue? Attention { get; set; } + + [DataMember(Name="CompanyName", EmitDefaultValue=false)] + public StringValue? CompanyName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="Phone1", EmitDefaultValue=false)] + public StringValue? Phone1 { get; set; } + + [DataMember(Name="Phone1Type", EmitDefaultValue=false)] + public StringValue? Phone1Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs new file mode 100644 index 000000000..20717b488 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdContractInfo : Entity + { + + [DataMember(Name="ContractPeriod", EmitDefaultValue=false)] + public StringValue? ContractPeriod { get; set; } + + [DataMember(Name="ServiceContract", EmitDefaultValue=false)] + public StringValue? ServiceContract { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs new file mode 100644 index 000000000..a17ee862a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdDefaultStaff : Entity + { + + [DataMember(Name="Comment", EmitDefaultValue=false)] + public StringValue? Comment { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="ServiceLineRef", EmitDefaultValue=false)] + public StringValue? ServiceLineRef { get; set; } + + [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] + public StringValue? ServiceOrderNbr { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="StaffMemberID", EmitDefaultValue=false)] + public StringValue? StaffMemberID { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs new file mode 100644 index 000000000..f6fccdeae --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs @@ -0,0 +1,192 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdDetails : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="AppointmentAmount", EmitDefaultValue=false)] + public DecimalValue? AppointmentAmount { get; set; } + + [DataMember(Name="AppointmentCount", EmitDefaultValue=false)] + public IntValue? AppointmentCount { get; set; } + + [DataMember(Name="AppointmentDuration", EmitDefaultValue=false)] + public StringValue? AppointmentDuration { get; set; } + + [DataMember(Name="AppointmentEstimatedDuration", EmitDefaultValue=false)] + public StringValue? AppointmentEstimatedDuration { get; set; } + + [DataMember(Name="AppointmentQty", EmitDefaultValue=false)] + public DecimalValue? AppointmentQty { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillingRule", EmitDefaultValue=false)] + public StringValue? BillingRule { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="ComponentID", EmitDefaultValue=false)] + public StringValue? ComponentID { get; set; } + + [DataMember(Name="ComponentLineRef", EmitDefaultValue=false)] + public StringValue? ComponentLineRef { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CoveredQty", EmitDefaultValue=false)] + public DecimalValue? CoveredQty { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] + public DecimalValue? DiscountPercent { get; set; } + + [DataMember(Name="EquipmentAction", EmitDefaultValue=false)] + public StringValue? EquipmentAction { get; set; } + + [DataMember(Name="EquipmentActionComment", EmitDefaultValue=false)] + public StringValue? EquipmentActionComment { get; set; } + + [DataMember(Name="EstimatedAmount", EmitDefaultValue=false)] + public DecimalValue? EstimatedAmount { get; set; } + + [DataMember(Name="EstimatedDuration", EmitDefaultValue=false)] + public StringValue? EstimatedDuration { get; set; } + + [DataMember(Name="EstimatedQty", EmitDefaultValue=false)] + public DecimalValue? EstimatedQty { get; set; } + + [DataMember(Name="ExtPrice", EmitDefaultValue=false)] + public DecimalValue? ExtPrice { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastReference", EmitDefaultValue=false)] + public StringValue? LastReference { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LineRef", EmitDefaultValue=false)] + public StringValue? LineRef { get; set; } + + [DataMember(Name="LineStatus", EmitDefaultValue=false)] + public StringValue? LineStatus { get; set; } + + [DataMember(Name="LineType", EmitDefaultValue=false)] + public StringValue? LineType { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="ManualPrice", EmitDefaultValue=false)] + public BooleanValue? ManualPrice { get; set; } + + [DataMember(Name="MarkforPO", EmitDefaultValue=false)] + public BooleanValue? MarkforPO { get; set; } + + [DataMember(Name="ModelEquipmentLineRef", EmitDefaultValue=false)] + public StringValue? ModelEquipmentLineRef { get; set; } + + [DataMember(Name="OverageQty", EmitDefaultValue=false)] + public DecimalValue? OverageQty { get; set; } + + [DataMember(Name="OverageUnitPrice", EmitDefaultValue=false)] + public DecimalValue? OverageUnitPrice { get; set; } + + [DataMember(Name="POCompleted", EmitDefaultValue=false)] + public BooleanValue? POCompleted { get; set; } + + [DataMember(Name="PONbr", EmitDefaultValue=false)] + public StringValue? PONbr { get; set; } + + [DataMember(Name="POStatus", EmitDefaultValue=false)] + public StringValue? POStatus { get; set; } + + [DataMember(Name="PrepaidItem", EmitDefaultValue=false)] + public BooleanValue? PrepaidItem { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ServiceContractItem", EmitDefaultValue=false)] + public BooleanValue? ServiceContractItem { get; set; } + + [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] + public StringValue? ServiceOrderNbr { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="SortOrder", EmitDefaultValue=false)] + public IntValue? SortOrder { get; set; } + + [DataMember(Name="StaffMemberID", EmitDefaultValue=false)] + public StringValue? StaffMemberID { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="TargetEquipmentID", EmitDefaultValue=false)] + public StringValue? TargetEquipmentID { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorLocationID", EmitDefaultValue=false)] + public StringValue? VendorLocationID { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + [DataMember(Name="Warranty", EmitDefaultValue=false)] + public BooleanValue? Warranty { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs new file mode 100644 index 000000000..663080a3b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdFinancialDetails : Entity + { + + [DataMember(Name="BillingCustomer", EmitDefaultValue=false)] + public StringValue? BillingCustomer { get; set; } + + [DataMember(Name="BillingCycle", EmitDefaultValue=false)] + public StringValue? BillingCycle { get; set; } + + [DataMember(Name="BillingLocation", EmitDefaultValue=false)] + public StringValue? BillingLocation { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="Commissionable", EmitDefaultValue=false)] + public BooleanValue? Commissionable { get; set; } + + [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] + public StringValue? CustomerTaxZone { get; set; } + + [DataMember(Name="RunBillingFor", EmitDefaultValue=false)] + public StringValue? RunBillingFor { get; set; } + + [DataMember(Name="Salesperson", EmitDefaultValue=false)] + public StringValue? Salesperson { get; set; } + + [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] + public StringValue? TaxCalculationMode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs new file mode 100644 index 000000000..1be205a23 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdOtherInformation : Entity + { + + [DataMember(Name="BatchNumber", EmitDefaultValue=false)] + public StringValue? BatchNumber { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DocumentType", EmitDefaultValue=false)] + public StringValue? DocumentType { get; set; } + + [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] + public StringValue? InvoiceNbr { get; set; } + + [DataMember(Name="IssueReferenceNbr", EmitDefaultValue=false)] + public StringValue? IssueReferenceNbr { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs new file mode 100644 index 000000000..5aa5c9f78 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdPrepayments : Entity + { + + [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] + public DateTimeValue? ApplicationDate { get; set; } + + [DataMember(Name="AppliedtoOrders", EmitDefaultValue=false)] + public DecimalValue? AppliedtoOrders { get; set; } + + [DataMember(Name="AvailableBalance", EmitDefaultValue=false)] + public DecimalValue? AvailableBalance { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public IntValue? CashAccount { get; set; } + + [DataMember(Name="Currency", EmitDefaultValue=false)] + public StringValue? Currency { get; set; } + + [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] + public DecimalValue? PaymentAmount { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaymentRef", EmitDefaultValue=false)] + public StringValue? PaymentRef { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="SourceAppointmentNbr", EmitDefaultValue=false)] + public StringValue? SourceAppointmentNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Type", EmitDefaultValue=false)] + public StringValue? Type { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs new file mode 100644 index 000000000..114ede535 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdTaxDetails : Entity + { + + [DataMember(Name="IncludeinVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeinVATExemptTotal { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] + public StringValue? ServiceOrderNbr { get; set; } + + [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] + public StringValue? ServiceOrderType { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs new file mode 100644 index 000000000..b370a078d --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SrvOrdTotals : Entity + { + + [DataMember(Name="AppointmentTotal", EmitDefaultValue=false)] + public DecimalValue? AppointmentTotal { get; set; } + + [DataMember(Name="BillableTotal", EmitDefaultValue=false)] + public DecimalValue? BillableTotal { get; set; } + + [DataMember(Name="EstimatedTotal", EmitDefaultValue=false)] + public DecimalValue? EstimatedTotal { get; set; } + + [DataMember(Name="LineTotal", EmitDefaultValue=false)] + public DecimalValue? LineTotal { get; set; } + + [DataMember(Name="PrepaymentApplied", EmitDefaultValue=false)] + public DecimalValue? PrepaymentApplied { get; set; } + + [DataMember(Name="PrepaymentReceived", EmitDefaultValue=false)] + public DecimalValue? PrepaymentReceived { get; set; } + + [DataMember(Name="PrepaymentRemaining", EmitDefaultValue=false)] + public DecimalValue? PrepaymentRemaining { get; set; } + + [DataMember(Name="ServiceOrderBillableUnpaidBalance", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderBillableUnpaidBalance { get; set; } + + [DataMember(Name="ServiceOrderTotal", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderTotal { get; set; } + + [DataMember(Name="ServiceOrderUnpaidBalance", EmitDefaultValue=false)] + public DecimalValue? ServiceOrderUnpaidBalance { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] + public DecimalValue? VATExemptTotal { get; set; } + + [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] + public DecimalValue? VATTaxableTotal { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs new file mode 100644 index 000000000..8af69b566 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs @@ -0,0 +1,295 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StockItem : Entity, ITopLevelEntity + { + + [DataMember(Name="ABCCode", EmitDefaultValue=false)] + public StringValue? ABCCode { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="AutoIncrementalValue", EmitDefaultValue=false)] + public StringValue? AutoIncrementalValue { get; set; } + + [DataMember(Name="AverageCost", EmitDefaultValue=false)] + public DecimalValue? AverageCost { get; set; } + + [DataMember(Name="BaseUOM", EmitDefaultValue=false)] + public StringValue? BaseUOM { get; set; } + + [DataMember(Name="Boxes", EmitDefaultValue=false)] + public List? Boxes { get; set; } + + [DataMember(Name="Categories", EmitDefaultValue=false)] + public List? Categories { get; set; } + + [DataMember(Name="COGSAccount", EmitDefaultValue=false)] + public StringValue? COGSAccount { get; set; } + + [DataMember(Name="COGSSubaccount", EmitDefaultValue=false)] + public StringValue? COGSSubaccount { get; set; } + + [DataMember(Name="Content", EmitDefaultValue=false)] + public StringValue? Content { get; set; } + + [DataMember(Name="CountryOfOrigin", EmitDefaultValue=false)] + public StringValue? CountryOfOrigin { get; set; } + + [DataMember(Name="CrossReferences", EmitDefaultValue=false)] + public List? CrossReferences { get; set; } + + [DataMember(Name="CurrentStdCost", EmitDefaultValue=false)] + public DecimalValue? CurrentStdCost { get; set; } + + [DataMember(Name="DefaultIssueLocationID", EmitDefaultValue=false)] + public StringValue? DefaultIssueLocationID { get; set; } + + [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] + public DecimalValue? DefaultPrice { get; set; } + + [DataMember(Name="DefaultReceiptLocationID", EmitDefaultValue=false)] + public StringValue? DefaultReceiptLocationID { get; set; } + + [DataMember(Name="DefaultSubitem", EmitDefaultValue=false)] + public StringValue? DefaultSubitem { get; set; } + + [DataMember(Name="DefaultWarehouseID", EmitDefaultValue=false)] + public StringValue? DefaultWarehouseID { get; set; } + + [DataMember(Name="DeferralAccount", EmitDefaultValue=false)] + public StringValue? DeferralAccount { get; set; } + + [DataMember(Name="DeferralSubaccount", EmitDefaultValue=false)] + public StringValue? DeferralSubaccount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DimensionVolume", EmitDefaultValue=false)] + public DecimalValue? DimensionVolume { get; set; } + + [DataMember(Name="DimensionWeight", EmitDefaultValue=false)] + public DecimalValue? DimensionWeight { get; set; } + + [DataMember(Name="DiscountAccount", EmitDefaultValue=false)] + public StringValue? DiscountAccount { get; set; } + + [DataMember(Name="DiscountSubaccount", EmitDefaultValue=false)] + public StringValue? DiscountSubaccount { get; set; } + + [DataMember(Name="ImageUrl", EmitDefaultValue=false)] + public StringValue? ImageUrl { get; set; } + + [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] + public StringValue? InventoryAccount { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] + public StringValue? InventorySubaccount { get; set; } + + [DataMember(Name="IsAKit", EmitDefaultValue=false)] + public BooleanValue? IsAKit { get; set; } + + [DataMember(Name="ItemClass", EmitDefaultValue=false)] + public StringValue? ItemClass { get; set; } + + [DataMember(Name="ItemStatus", EmitDefaultValue=false)] + public StringValue? ItemStatus { get; set; } + + [DataMember(Name="ItemType", EmitDefaultValue=false)] + public StringValue? ItemType { get; set; } + + [DataMember(Name="LandedCostVarianceAccount", EmitDefaultValue=false)] + public StringValue? LandedCostVarianceAccount { get; set; } + + [DataMember(Name="LandedCostVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? LandedCostVarianceSubaccount { get; set; } + + [DataMember(Name="LastCost", EmitDefaultValue=false)] + public DecimalValue? LastCost { get; set; } + + [DataMember(Name="LastModified", EmitDefaultValue=false)] + public DateTimeValue? LastModified { get; set; } + + [DataMember(Name="LastStdCost", EmitDefaultValue=false)] + public DecimalValue? LastStdCost { get; set; } + + [DataMember(Name="LotSerialClass", EmitDefaultValue=false)] + public StringValue? LotSerialClass { get; set; } + + [DataMember(Name="Markup", EmitDefaultValue=false)] + public DecimalValue? Markup { get; set; } + + [DataMember(Name="MaxCost", EmitDefaultValue=false)] + public DecimalValue? MaxCost { get; set; } + + [DataMember(Name="MinCost", EmitDefaultValue=false)] + public DecimalValue? MinCost { get; set; } + + [DataMember(Name="MinMarkup", EmitDefaultValue=false)] + public DecimalValue? MinMarkup { get; set; } + + [DataMember(Name="MSRP", EmitDefaultValue=false)] + public DecimalValue? MSRP { get; set; } + + [DataMember(Name="PackagingOption", EmitDefaultValue=false)] + public StringValue? PackagingOption { get; set; } + + [DataMember(Name="PackSeparately", EmitDefaultValue=false)] + public BooleanValue? PackSeparately { get; set; } + + [DataMember(Name="PendingStdCost", EmitDefaultValue=false)] + public DecimalValue? PendingStdCost { get; set; } + + [DataMember(Name="POAccrualAccount", EmitDefaultValue=false)] + public StringValue? POAccrualAccount { get; set; } + + [DataMember(Name="POAccrualSubaccount", EmitDefaultValue=false)] + public StringValue? POAccrualSubaccount { get; set; } + + [DataMember(Name="PostingClass", EmitDefaultValue=false)] + public StringValue? PostingClass { get; set; } + + [DataMember(Name="PriceClass", EmitDefaultValue=false)] + public StringValue? PriceClass { get; set; } + + [DataMember(Name="PriceManager", EmitDefaultValue=false)] + public StringValue? PriceManager { get; set; } + + [DataMember(Name="PriceWorkgroup", EmitDefaultValue=false)] + public StringValue? PriceWorkgroup { get; set; } + + [DataMember(Name="ProductManager", EmitDefaultValue=false)] + public StringValue? ProductManager { get; set; } + + [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] + public StringValue? ProductWorkgroup { get; set; } + + [DataMember(Name="PurchasePriceVarianceAccount", EmitDefaultValue=false)] + public StringValue? PurchasePriceVarianceAccount { get; set; } + + [DataMember(Name="PurchasePriceVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? PurchasePriceVarianceSubaccount { get; set; } + + [DataMember(Name="PurchaseUOM", EmitDefaultValue=false)] + public StringValue? PurchaseUOM { get; set; } + + [DataMember(Name="ReasonCodeSubaccount", EmitDefaultValue=false)] + public StringValue? ReasonCodeSubaccount { get; set; } + + [DataMember(Name="ReplenishmentParameters", EmitDefaultValue=false)] + public List? ReplenishmentParameters { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="SalesUOM", EmitDefaultValue=false)] + public StringValue? SalesUOM { get; set; } + + [DataMember(Name="StandardCostRevaluationAccount", EmitDefaultValue=false)] + public StringValue? StandardCostRevaluationAccount { get; set; } + + [DataMember(Name="StandardCostRevaluationSubaccount", EmitDefaultValue=false)] + public StringValue? StandardCostRevaluationSubaccount { get; set; } + + [DataMember(Name="StandardCostVarianceAccount", EmitDefaultValue=false)] + public StringValue? StandardCostVarianceAccount { get; set; } + + [DataMember(Name="StandardCostVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? StandardCostVarianceSubaccount { get; set; } + + [DataMember(Name="SubjectToCommission", EmitDefaultValue=false)] + public BooleanValue? SubjectToCommission { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TariffCode", EmitDefaultValue=false)] + public StringValue? TariffCode { get; set; } + + [DataMember(Name="UOMConversions", EmitDefaultValue=false)] + public List? UOMConversions { get; set; } + + [DataMember(Name="UseOnEntry", EmitDefaultValue=false)] + public BooleanValue? UseOnEntry { get; set; } + + [DataMember(Name="ValuationMethod", EmitDefaultValue=false)] + public StringValue? ValuationMethod { get; set; } + + [DataMember(Name="VendorDetails", EmitDefaultValue=false)] + public List? VendorDetails { get; set; } + + [DataMember(Name="VolumeUOM", EmitDefaultValue=false)] + public StringValue? VolumeUOM { get; set; } + + [DataMember(Name="WarehouseDetails", EmitDefaultValue=false)] + public List? WarehouseDetails { get; set; } + + [DataMember(Name="WeightUOM", EmitDefaultValue=false)] + public StringValue? WeightUOM { get; set; } + + [DataMember(Name="CurySpecificMSRP", EmitDefaultValue=false)] + public DecimalValue? CurySpecificMSRP { get; set; } + + [DataMember(Name="CurySpecificPrice", EmitDefaultValue=false)] + public DecimalValue? CurySpecificPrice { get; set; } + + [DataMember(Name="Availability", EmitDefaultValue=false)] + public StringValue? Availability { get; set; } + + [DataMember(Name="CustomURL", EmitDefaultValue=false)] + public StringValue? CustomURL { get; set; } + + [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] + public BooleanValue? ExportToExternal { get; set; } + + [DataMember(Name="FileURLs", EmitDefaultValue=false)] + public List? FileURLs { get; set; } + + [DataMember(Name="MetaDescription", EmitDefaultValue=false)] + public StringValue? MetaDescription { get; set; } + + [DataMember(Name="MetaKeywords", EmitDefaultValue=false)] + public StringValue? MetaKeywords { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="PageTitle", EmitDefaultValue=false)] + public StringValue? PageTitle { get; set; } + + [DataMember(Name="SearchKeywords", EmitDefaultValue=false)] + public StringValue? SearchKeywords { get; set; } + + [DataMember(Name="TemplateItemID", EmitDefaultValue=false)] + public StringValue? TemplateItemID { get; set; } + + [DataMember(Name="Visibility", EmitDefaultValue=false)] + public StringValue? Visibility { get; set; } + + [DataMember(Name="NotAvailable", EmitDefaultValue=false)] + public StringValue? NotAvailable { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs new file mode 100644 index 000000000..e34d5ce46 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StockItemVendorDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AddLeadTimeDays", EmitDefaultValue=false)] + public ShortValue? AddLeadTimeDays { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + [DataMember(Name="EOQ", EmitDefaultValue=false)] + public DecimalValue? EOQ { get; set; } + + [DataMember(Name="LastVendorPrice", EmitDefaultValue=false)] + public DecimalValue? LastVendorPrice { get; set; } + + [DataMember(Name="LeadTimeDays", EmitDefaultValue=false)] + public ShortValue? LeadTimeDays { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="LotSize", EmitDefaultValue=false)] + public DecimalValue? LotSize { get; set; } + + [DataMember(Name="MaxOrderQty", EmitDefaultValue=false)] + public DecimalValue? MaxOrderQty { get; set; } + + [DataMember(Name="MinOrderFrequencyInDays", EmitDefaultValue=false)] + public IntValue? MinOrderFrequencyInDays { get; set; } + + [DataMember(Name="MinOrderQty", EmitDefaultValue=false)] + public DecimalValue? MinOrderQty { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + [DataMember(Name="PurchaseUnit", EmitDefaultValue=false)] + public StringValue? PurchaseUnit { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorName", EmitDefaultValue=false)] + public StringValue? VendorName { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs new file mode 100644 index 000000000..42755abeb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs @@ -0,0 +1,87 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StockItemWarehouseDetail : Entity + { + + [DataMember(Name="DailyDemandForecast", EmitDefaultValue=false)] + public DecimalValue? DailyDemandForecast { get; set; } + + [DataMember(Name="DailyDemandForecastErrorSTDEV", EmitDefaultValue=false)] + public DecimalValue? DailyDemandForecastErrorSTDEV { get; set; } + + [DataMember(Name="DefaultIssueLocationID", EmitDefaultValue=false)] + public StringValue? DefaultIssueLocationID { get; set; } + + [DataMember(Name="DefaultReceiptLocationID", EmitDefaultValue=false)] + public StringValue? DefaultReceiptLocationID { get; set; } + + [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] + public StringValue? InventoryAccount { get; set; } + + [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] + public StringValue? InventorySubaccount { get; set; } + + [DataMember(Name="IsDefault", EmitDefaultValue=false)] + public BooleanValue? IsDefault { get; set; } + + [DataMember(Name="LastForecastDate", EmitDefaultValue=false)] + public DateTimeValue? LastForecastDate { get; set; } + + [DataMember(Name="Override", EmitDefaultValue=false)] + public BooleanValue? Override { get; set; } + + [DataMember(Name="OverridePreferredVendor", EmitDefaultValue=false)] + public BooleanValue? OverridePreferredVendor { get; set; } + + [DataMember(Name="OverrideReplenishmentSettings", EmitDefaultValue=false)] + public BooleanValue? OverrideReplenishmentSettings { get; set; } + + [DataMember(Name="OverrideStdCost", EmitDefaultValue=false)] + public BooleanValue? OverrideStdCost { get; set; } + + [DataMember(Name="PreferredVendor", EmitDefaultValue=false)] + public StringValue? PreferredVendor { get; set; } + + [DataMember(Name="PriceOverride", EmitDefaultValue=false)] + public BooleanValue? PriceOverride { get; set; } + + [DataMember(Name="ProductManager", EmitDefaultValue=false)] + public StringValue? ProductManager { get; set; } + + [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] + public StringValue? ProductWorkgroup { get; set; } + + [DataMember(Name="QtyOnHand", EmitDefaultValue=false)] + public DecimalValue? QtyOnHand { get; set; } + + [DataMember(Name="ReplenishmentSource", EmitDefaultValue=false)] + public StringValue? ReplenishmentSource { get; set; } + + [DataMember(Name="ReplenishmentWarehouse", EmitDefaultValue=false)] + public StringValue? ReplenishmentWarehouse { get; set; } + + [DataMember(Name="Seasonality", EmitDefaultValue=false)] + public StringValue? Seasonality { get; set; } + + [DataMember(Name="ServiceLevel", EmitDefaultValue=false)] + public DecimalValue? ServiceLevel { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs new file mode 100644 index 000000000..f463df2c1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StorageDetail : Entity + { + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="QtyAvailable", EmitDefaultValue=false)] + public DecimalValue? QtyAvailable { get; set; } + + [DataMember(Name="QtyAvailableforIssue", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableforIssue { get; set; } + + [DataMember(Name="QtyHardAvailable", EmitDefaultValue=false)] + public DecimalValue? QtyHardAvailable { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + [DataMember(Name="LastModifiedDateofWarehouseQty", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateofWarehouseQty { get; set; } + + [DataMember(Name="QtyOnHand", EmitDefaultValue=false)] + public DecimalValue? QtyOnHand { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs new file mode 100644 index 000000000..094f6e8a0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StorageDetailByLocation : Entity + { + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="QtyAvailableinLocation", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableinLocation { get; set; } + + [DataMember(Name="QtyAvailableforIssueinLocation", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableforIssueinLocation { get; set; } + + [DataMember(Name="QtyAvailableforShippinginLocation", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableforShippinginLocation { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LastModifiedDateofLocationQty", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateofLocationQty { get; set; } + + [DataMember(Name="QtyOnHandinLocation", EmitDefaultValue=false)] + public DecimalValue? QtyOnHandinLocation { get; set; } + + [DataMember(Name="QtyAvailableinWarehouse", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableinWarehouse { get; set; } + + [DataMember(Name="QtyAvailableforIssueinWarehouse", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableforIssueinWarehouse { get; set; } + + [DataMember(Name="QtyAvailableforShippinginWarehouse", EmitDefaultValue=false)] + public DecimalValue? QtyAvailableforShippinginWarehouse { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + [DataMember(Name="LastModifiedDateofWarehouseQty", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateofWarehouseQty { get; set; } + + [DataMember(Name="QtyOnHandinWarehouse", EmitDefaultValue=false)] + public DecimalValue? QtyOnHandinWarehouse { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs new file mode 100644 index 000000000..10440b582 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StorageDetailsByLocationInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="SplitByLocation", EmitDefaultValue=false)] + public BooleanValue? SplitByLocation { get; set; } + + [DataMember(Name="StorageDetailsByLocation", EmitDefaultValue=false)] + public List? StorageDetailsByLocation { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs new file mode 100644 index 000000000..a76ab6654 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class StorageDetailsInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="StorageDetails", EmitDefaultValue=false)] + public List? StorageDetails { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs new file mode 100644 index 000000000..ac8615af3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Subaccount : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Secured", EmitDefaultValue=false)] + public BooleanValue? Secured { get; set; } + + [DataMember(Name="SubaccountCD", EmitDefaultValue=false)] + public StringValue? SubaccountCD { get; set; } + + [DataMember(Name="SubaccountID", EmitDefaultValue=false)] + public IntValue? SubaccountID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs new file mode 100644 index 000000000..9fd930387 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs @@ -0,0 +1,127 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Subcontract : Entity, ITopLevelEntity + { + + [DataMember(Name="SubcontractNbr", EmitDefaultValue=false)] + public StringValue? SubcontractNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="Location", EmitDefaultValue=false)] + public StringValue? Location { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] + public StringValue? BaseCurrencyID { get; set; } + + [DataMember(Name="CurrencyEffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? CurrencyEffectiveDate { get; set; } + + [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyRate { get; set; } + + [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] + public StringValue? CurrencyRateTypeID { get; set; } + + [DataMember(Name="CurrencyReciprocalRate", EmitDefaultValue=false)] + public DecimalValue? CurrencyReciprocalRate { get; set; } + + [DataMember(Name="VendorRef", EmitDefaultValue=false)] + public StringValue? VendorRef { get; set; } + + [DataMember(Name="LineTotal", EmitDefaultValue=false)] + public DecimalValue? LineTotal { get; set; } + + [DataMember(Name="DiscountTotal", EmitDefaultValue=false)] + public DecimalValue? DiscountTotal { get; set; } + + [DataMember(Name="RetainageTotal", EmitDefaultValue=false)] + public DecimalValue? RetainageTotal { get; set; } + + [DataMember(Name="SubcontractTotal", EmitDefaultValue=false)] + public DecimalValue? SubcontractTotal { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="ControlTotal", EmitDefaultValue=false)] + public DecimalValue? ControlTotal { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="VendorTaxZone", EmitDefaultValue=false)] + public StringValue? VendorTaxZone { get; set; } + + [DataMember(Name="ApplyRetainage", EmitDefaultValue=false)] + public BooleanValue? ApplyRetainage { get; set; } + + [DataMember(Name="RetainagePct", EmitDefaultValue=false)] + public DecimalValue? RetainagePct { get; set; } + + [DataMember(Name="DoNotEmail", EmitDefaultValue=false)] + public BooleanValue? DoNotEmail { get; set; } + + [DataMember(Name="DoNotPrint", EmitDefaultValue=false)] + public BooleanValue? DoNotPrint { get; set; } + + [DataMember(Name="Emailed", EmitDefaultValue=false)] + public BooleanValue? Emailed { get; set; } + + [DataMember(Name="Printed", EmitDefaultValue=false)] + public BooleanValue? Printed { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="TaxDetails", EmitDefaultValue=false)] + public List? TaxDetails { get; set; } + + [DataMember(Name="VendorAddressInfo", EmitDefaultValue=false)] + public SubcontractVendorAddressInfo? VendorAddressInfo { get; set; } + + [DataMember(Name="VendorContactInfo", EmitDefaultValue=false)] + public SubcontractVendorContactInfo? VendorContactInfo { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs new file mode 100644 index 000000000..f1308fb40 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs @@ -0,0 +1,120 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SubcontractDetail : Entity + { + + [DataMember(Name="Account", EmitDefaultValue=false)] + public StringValue? Account { get; set; } + + [DataMember(Name="AlternateID", EmitDefaultValue=false)] + public StringValue? AlternateID { get; set; } + + [DataMember(Name="Amount", EmitDefaultValue=false)] + public DecimalValue? Amount { get; set; } + + [DataMember(Name="BranchID", EmitDefaultValue=false)] + public StringValue? BranchID { get; set; } + + [DataMember(Name="Canceled", EmitDefaultValue=false)] + public BooleanValue? Canceled { get; set; } + + [DataMember(Name="Closed", EmitDefaultValue=false)] + public BooleanValue? Closed { get; set; } + + [DataMember(Name="Completed", EmitDefaultValue=false)] + public BooleanValue? Completed { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] + public DecimalValue? DiscountAmount { get; set; } + + [DataMember(Name="DiscountCode", EmitDefaultValue=false)] + public StringValue? DiscountCode { get; set; } + + [DataMember(Name="DiscountPct", EmitDefaultValue=false)] + public DecimalValue? DiscountPct { get; set; } + + [DataMember(Name="DiscountSequence", EmitDefaultValue=false)] + public StringValue? DiscountSequence { get; set; } + + [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] + public DecimalValue? ExtendedCost { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineDescription", EmitDefaultValue=false)] + public StringValue? LineDescription { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="ManualCost", EmitDefaultValue=false)] + public BooleanValue? ManualCost { get; set; } + + [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] + public BooleanValue? ManualDiscount { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderQty", EmitDefaultValue=false)] + public DecimalValue? OrderQty { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="PrepaidAmount", EmitDefaultValue=false)] + public DecimalValue? PrepaidAmount { get; set; } + + [DataMember(Name="PrepaidQty", EmitDefaultValue=false)] + public DecimalValue? PrepaidQty { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="Task", EmitDefaultValue=false)] + public StringValue? Task { get; set; } + + [DataMember(Name="Requested", EmitDefaultValue=false)] + public DateTimeValue? Requested { get; set; } + + [DataMember(Name="RetainageAmount", EmitDefaultValue=false)] + public DecimalValue? RetainageAmount { get; set; } + + [DataMember(Name="RetainagePct", EmitDefaultValue=false)] + public DecimalValue? RetainagePct { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Subaccount", EmitDefaultValue=false)] + public StringValue? Subaccount { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="UnitCost", EmitDefaultValue=false)] + public DecimalValue? UnitCost { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs new file mode 100644 index 000000000..4dcc29bf3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SubcontractTaxDetail : Entity + { + + [DataMember(Name="RetainedTax", EmitDefaultValue=false)] + public DecimalValue? RetainedTax { get; set; } + + [DataMember(Name="RetainedTaxable", EmitDefaultValue=false)] + public DecimalValue? RetainedTaxable { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs new file mode 100644 index 000000000..9885a27f9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SubcontractVendorAddressInfo : Entity + { + + [DataMember(Name="AddressLine1", EmitDefaultValue=false)] + public StringValue? AddressLine1 { get; set; } + + [DataMember(Name="AddressLine2", EmitDefaultValue=false)] + public StringValue? AddressLine2 { get; set; } + + [DataMember(Name="City", EmitDefaultValue=false)] + public StringValue? City { get; set; } + + [DataMember(Name="Country", EmitDefaultValue=false)] + public StringValue? Country { get; set; } + + [DataMember(Name="VendorAddressOverride", EmitDefaultValue=false)] + public BooleanValue? VendorAddressOverride { get; set; } + + [DataMember(Name="PostalCode", EmitDefaultValue=false)] + public StringValue? PostalCode { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs new file mode 100644 index 000000000..ca32c8ea3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class SubcontractVendorContactInfo : Entity + { + + [DataMember(Name="AccountName", EmitDefaultValue=false)] + public StringValue? AccountName { get; set; } + + [DataMember(Name="Email", EmitDefaultValue=false)] + public StringValue? Email { get; set; } + + [DataMember(Name="JobTitle", EmitDefaultValue=false)] + public StringValue? JobTitle { get; set; } + + [DataMember(Name="VendorContactOverride", EmitDefaultValue=false)] + public BooleanValue? VendorContactOverride { get; set; } + + [DataMember(Name="Phone", EmitDefaultValue=false)] + public StringValue? Phone { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs new file mode 100644 index 000000000..eca986d98 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Task : Entity, ITopLevelEntity + { + + [DataMember(Name="Body", EmitDefaultValue=false)] + public StringValue? Body { get; set; } + + [DataMember(Name="Category", EmitDefaultValue=false)] + public StringValue? Category { get; set; } + + [DataMember(Name="CompletedAt", EmitDefaultValue=false)] + public DateTimeValue? CompletedAt { get; set; } + + [DataMember(Name="CompletionPercentage", EmitDefaultValue=false)] + public IntValue? CompletionPercentage { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="Internal", EmitDefaultValue=false)] + public BooleanValue? Internal { get; set; } + + [DataMember(Name="NoteID", EmitDefaultValue=false)] + public GuidValue? NoteID { get; set; } + + [DataMember(Name="Owner", EmitDefaultValue=false)] + public StringValue? Owner { get; set; } + + [DataMember(Name="Parent", EmitDefaultValue=false)] + public GuidValue? Parent { get; set; } + + [DataMember(Name="ParentSummary", EmitDefaultValue=false)] + public StringValue? ParentSummary { get; set; } + + [DataMember(Name="Priority", EmitDefaultValue=false)] + public StringValue? Priority { get; set; } + + [DataMember(Name="RelatedActivities", EmitDefaultValue=false)] + public List? RelatedActivities { get; set; } + + [DataMember(Name="RelatedTasks", EmitDefaultValue=false)] + public List? RelatedTasks { get; set; } + + [DataMember(Name="Reminder", EmitDefaultValue=false)] + public ReminderDetail? Reminder { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Summary", EmitDefaultValue=false)] + public StringValue? Summary { get; set; } + + [DataMember(Name="TimeActivity", EmitDefaultValue=false)] + public TaskTimeActivity? TimeActivity { get; set; } + + [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] + public StringValue? WorkgroupID { get; set; } + + [DataMember(Name="CreatedByID", EmitDefaultValue=false)] + public StringValue? CreatedByID { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] + public StringValue? RelatedEntityType { get; set; } + + [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] + public GuidValue? RelatedEntityNoteID { get; set; } + + [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] + public StringValue? RelatedEntityDescription { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs new file mode 100644 index 000000000..2c0eaf51f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaskRelatedTask : Entity + { + + [DataMember(Name="CompletedAt", EmitDefaultValue=false)] + public DateTimeValue? CompletedAt { get; set; } + + [DataMember(Name="DueDate", EmitDefaultValue=false)] + public DateTimeValue? DueDate { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="Subject", EmitDefaultValue=false)] + public StringValue? Subject { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs new file mode 100644 index 000000000..c5346ac33 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaskTimeActivity : Entity + { + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public StringValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Overtime", EmitDefaultValue=false)] + public StringValue? Overtime { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs new file mode 100644 index 000000000..9cc45130b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Tax : Entity, ITopLevelEntity + { + + [DataMember(Name="CalculateOn", EmitDefaultValue=false)] + public StringValue? CalculateOn { get; set; } + + [DataMember(Name="CashDiscount", EmitDefaultValue=false)] + public StringValue? CashDiscount { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="DeductibleVAT", EmitDefaultValue=false)] + public BooleanValue? DeductibleVAT { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EnterFromTaxBill", EmitDefaultValue=false)] + public BooleanValue? EnterFromTaxBill { get; set; } + + [DataMember(Name="ExcludeFromTaxonTaxCalculation", EmitDefaultValue=false)] + public BooleanValue? ExcludeFromTaxonTaxCalculation { get; set; } + + [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeInVATExemptTotal { get; set; } + + [DataMember(Name="IncludeInVATTaxableTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeInVATTaxableTotal { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="NotValidAfter", EmitDefaultValue=false)] + public DateTimeValue? NotValidAfter { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxAgency", EmitDefaultValue=false)] + public StringValue? TaxAgency { get; set; } + + [DataMember(Name="TaxClaimableAccount", EmitDefaultValue=false)] + public StringValue? TaxClaimableAccount { get; set; } + + [DataMember(Name="TaxClaimableSubaccount", EmitDefaultValue=false)] + public StringValue? TaxClaimableSubaccount { get; set; } + + [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] + public StringValue? TaxExpenseAccount { get; set; } + + [DataMember(Name="TaxExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? TaxExpenseSubaccount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxPayableAccount", EmitDefaultValue=false)] + public StringValue? TaxPayableAccount { get; set; } + + [DataMember(Name="TaxPayableSubaccount", EmitDefaultValue=false)] + public StringValue? TaxPayableSubaccount { get; set; } + + [DataMember(Name="TaxSchedule", EmitDefaultValue=false)] + public List? TaxSchedule { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + [DataMember(Name="Zones", EmitDefaultValue=false)] + public List? Zones { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs new file mode 100644 index 000000000..fe2cc8885 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxAndReportingCA : Entity + { + + [DataMember(Name="ReportingType", EmitDefaultValue=false)] + public StringValue? ReportingType { get; set; } + + [DataMember(Name="SupplementalIncome", EmitDefaultValue=false)] + public BooleanValue? SupplementalIncome { get; set; } + + [DataMember(Name="TaxDetailsCA", EmitDefaultValue=false)] + public List? TaxDetailsCA { get; set; } + + [DataMember(Name="WageType", EmitDefaultValue=false)] + public StringValue? WageType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs new file mode 100644 index 000000000..d7e0082ba --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxAndReportingUS : Entity + { + + [DataMember(Name="ReportingType", EmitDefaultValue=false)] + public StringValue? ReportingType { get; set; } + + [DataMember(Name="SubjecttoTaxes", EmitDefaultValue=false)] + public StringValue? SubjecttoTaxes { get; set; } + + [DataMember(Name="TaxDetailsUS", EmitDefaultValue=false)] + public List? TaxDetailsUS { get; set; } + + [DataMember(Name="WageType", EmitDefaultValue=false)] + public StringValue? WageType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs new file mode 100644 index 000000000..7fcc7cabc --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxCategory : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="ExcludeListedTaxes", EmitDefaultValue=false)] + public BooleanValue? ExcludeListedTaxes { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="TaxCategoryID", EmitDefaultValue=false)] + public StringValue? TaxCategoryID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs new file mode 100644 index 000000000..d8a5d151e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxCategoryTaxDetail : Entity + { + + [DataMember(Name="CalculateOn", EmitDefaultValue=false)] + public StringValue? CalculateOn { get; set; } + + [DataMember(Name="CashDiscount", EmitDefaultValue=false)] + public StringValue? CashDiscount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs new file mode 100644 index 000000000..4c94a00b5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxCodeSetting : Entity + { + + [DataMember(Name="AdditionalInformation", EmitDefaultValue=false)] + public StringValue? AdditionalInformation { get; set; } + + [DataMember(Name="CompanyNotes", EmitDefaultValue=false)] + public StringValue? CompanyNotes { get; set; } + + [DataMember(Name="FormBox", EmitDefaultValue=false)] + public StringValue? FormBox { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="UseDefault", EmitDefaultValue=false)] + public BooleanValue? UseDefault { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs new file mode 100644 index 000000000..3f3addc66 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxDetail : Entity + { + + [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] + public StringValue? CustomerTaxZone { get; set; } + + [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] + public BooleanValue? IncludeInVATExemptTotal { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="OrderNbr", EmitDefaultValue=false)] + public StringValue? OrderNbr { get; set; } + + [DataMember(Name="OrderType", EmitDefaultValue=false)] + public StringValue? OrderType { get; set; } + + [DataMember(Name="PendingVAT", EmitDefaultValue=false)] + public BooleanValue? PendingVAT { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] + public BooleanValue? ReverseVAT { get; set; } + + [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] + public BooleanValue? StatisticalVAT { get; set; } + + [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] + public DecimalValue? TaxableAmount { get; set; } + + [DataMember(Name="TaxAmount", EmitDefaultValue=false)] + public DecimalValue? TaxAmount { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + [DataMember(Name="TaxType", EmitDefaultValue=false)] + public StringValue? TaxType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs new file mode 100644 index 000000000..7c9f64cb2 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxReportingSettings : Entity, ITopLevelEntity + { + + [DataMember(Name="ReportingGroups", EmitDefaultValue=false)] + public List? ReportingGroups { get; set; } + + [DataMember(Name="TaxAgency", EmitDefaultValue=false)] + public StringValue? TaxAgency { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs new file mode 100644 index 000000000..23be1f6cb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxScheduleDetail : Entity + { + + [DataMember(Name="DeductibleTaxRate", EmitDefaultValue=false)] + public DecimalValue? DeductibleTaxRate { get; set; } + + [DataMember(Name="MaxTaxableAmount", EmitDefaultValue=false)] + public DecimalValue? MaxTaxableAmount { get; set; } + + [DataMember(Name="MinTaxableAmount", EmitDefaultValue=false)] + public DecimalValue? MinTaxableAmount { get; set; } + + [DataMember(Name="ReportingGroup", EmitDefaultValue=false)] + public StringValue? ReportingGroup { get; set; } + + [DataMember(Name="RevisionID", EmitDefaultValue=false)] + public IntValue? RevisionID { get; set; } + + [DataMember(Name="StartDate", EmitDefaultValue=false)] + public DateTimeValue? StartDate { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxRate", EmitDefaultValue=false)] + public DecimalValue? TaxRate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs new file mode 100644 index 000000000..bf51454f0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxSettingDetail : Entity + { + + [DataMember(Name="AdditionalInformation", EmitDefaultValue=false)] + public StringValue? AdditionalInformation { get; set; } + + [DataMember(Name="CompanyNotes", EmitDefaultValue=false)] + public StringValue? CompanyNotes { get; set; } + + [DataMember(Name="FormBox", EmitDefaultValue=false)] + public StringValue? FormBox { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Name", EmitDefaultValue=false)] + public StringValue? Name { get; set; } + + [DataMember(Name="Required", EmitDefaultValue=false)] + public BooleanValue? Required { get; set; } + + [DataMember(Name="Setting", EmitDefaultValue=false)] + public StringValue? Setting { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="UseDefault", EmitDefaultValue=false)] + public BooleanValue? UseDefault { get; set; } + + [DataMember(Name="UsedforGovernmentReporting", EmitDefaultValue=false)] + public BooleanValue? UsedforGovernmentReporting { get; set; } + + [DataMember(Name="UsedforTaxCalculation", EmitDefaultValue=false)] + public BooleanValue? UsedforTaxCalculation { get; set; } + + [DataMember(Name="Value", EmitDefaultValue=false)] + public StringValue? Value { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs new file mode 100644 index 000000000..7bfe0e8af --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxSettingsCA : Entity + { + + [DataMember(Name="CodeType", EmitDefaultValue=false)] + public StringValue? CodeType { get; set; } + + [DataMember(Name="TaxDetailsCA", EmitDefaultValue=false)] + public List? TaxDetailsCA { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs new file mode 100644 index 000000000..ac1040ea3 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxSettingsUS : Entity + { + + [DataMember(Name="AllowSupplementalElection", EmitDefaultValue=false)] + public BooleanValue? AllowSupplementalElection { get; set; } + + [DataMember(Name="CodeType", EmitDefaultValue=false)] + public StringValue? CodeType { get; set; } + + [DataMember(Name="ImpactonTaxableWage", EmitDefaultValue=false)] + public StringValue? ImpactonTaxableWage { get; set; } + + [DataMember(Name="TaxDetailsUS", EmitDefaultValue=false)] + public List? TaxDetailsUS { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs new file mode 100644 index 000000000..7b14b276e --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxZone : Entity, ITopLevelEntity + { + + [DataMember(Name="ApplicableTaxes", EmitDefaultValue=false)] + public List? ApplicableTaxes { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="TaxZoneID", EmitDefaultValue=false)] + public StringValue? TaxZoneID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs new file mode 100644 index 000000000..7d82f0d19 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxZoneApplicableTaxDetail : Entity + { + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs new file mode 100644 index 000000000..d572a4277 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxZoneDetail : Entity + { + + [DataMember(Name="DefaultTaxCategory", EmitDefaultValue=false)] + public StringValue? DefaultTaxCategory { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="TaxID", EmitDefaultValue=false)] + public StringValue? TaxID { get; set; } + + [DataMember(Name="TaxZoneID", EmitDefaultValue=false)] + public StringValue? TaxZoneID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs new file mode 100644 index 000000000..e4de6f8f9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxesDecreasingApplWage : Entity + { + + [DataMember(Name="EmployeeTaxesDecreasingApplWageDetails", EmitDefaultValue=false)] + public List? EmployeeTaxesDecreasingApplWageDetails { get; set; } + + [DataMember(Name="InclusionType", EmitDefaultValue=false)] + public StringValue? InclusionType { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs new file mode 100644 index 000000000..e5a4ade13 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TaxesDecreasingApplWageDetail : Entity + { + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="TaxCode", EmitDefaultValue=false)] + public StringValue? TaxCode { get; set; } + + [DataMember(Name="TaxName", EmitDefaultValue=false)] + public StringValue? TaxName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs new file mode 100644 index 000000000..8cd7cd902 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs @@ -0,0 +1,37 @@ +using System.Runtime.Serialization; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + + [DataContract] + public class TechnicalValidationSetup : Entity, ITopLevelEntity + { + [DataMember(Name = "ErrorCaseClassID", EmitDefaultValue = false)] + public StringValue? ErrorCaseClassID { get; set; } + + [DataMember(Name = "GracePeriod", EmitDefaultValue = false)] + public IntValue? GracePeriod { get; set; } + + [DataMember(Name = "ISVCaseClassID", EmitDefaultValue = false)] + public StringValue? ISVCaseClassID { get; set; } + + [DataMember(Name = "ISVSupportedVersion", EmitDefaultValue = false)] + public StringValue? ISVSupportedVersion { get; set; } + + [DataMember(Name = "ServiceURL", EmitDefaultValue = false)] + public StringValue? ServiceURL { get; set; } + + [DataMember(Name = "VARCaseClassID", EmitDefaultValue = false)] + public StringValue? VARCaseClassID { get; set; } + + [DataMember(Name = "VARSupportedVersion", EmitDefaultValue = false)] + public StringValue? VARSupportedVersion { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs new file mode 100644 index 000000000..52469b20a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TemplateItemVendorDetail : Entity + { + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorName", EmitDefaultValue=false)] + public StringValue? VendorName { get; set; } + + [DataMember(Name="Default", EmitDefaultValue=false)] + public BooleanValue? Default { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs new file mode 100644 index 000000000..70d4d50d1 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TemplateItems : Entity, ITopLevelEntity + { + + [DataMember(Name="SalesUOM", EmitDefaultValue=false)] + public StringValue? SalesUOM { get; set; } + + [DataMember(Name="CurySpecificMSRP", EmitDefaultValue=false)] + public DecimalValue? CurySpecificMSRP { get; set; } + + [DataMember(Name="CurySpecificPrice", EmitDefaultValue=false)] + public DecimalValue? CurySpecificPrice { get; set; } + + [DataMember(Name="ItemClass", EmitDefaultValue=false)] + public StringValue? ItemClass { get; set; } + + [DataMember(Name="Availability", EmitDefaultValue=false)] + public StringValue? Availability { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="BaseUOM", EmitDefaultValue=false)] + public StringValue? BaseUOM { get; set; } + + [DataMember(Name="Categories", EmitDefaultValue=false)] + public List? Categories { get; set; } + + [DataMember(Name="Content", EmitDefaultValue=false)] + public StringValue? Content { get; set; } + + [DataMember(Name="CurrentStdCost", EmitDefaultValue=false)] + public DecimalValue? CurrentStdCost { get; set; } + + [DataMember(Name="CustomURL", EmitDefaultValue=false)] + public StringValue? CustomURL { get; set; } + + [DataMember(Name="DefaultIssueLocationID", EmitDefaultValue=false)] + public StringValue? DefaultIssueLocationID { get; set; } + + [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] + public DecimalValue? DefaultPrice { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DimensionWeight", EmitDefaultValue=false)] + public DecimalValue? DimensionWeight { get; set; } + + [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] + public BooleanValue? ExportToExternal { get; set; } + + [DataMember(Name="FileURLs", EmitDefaultValue=false)] + public List? FileURLs { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="IsStockItem", EmitDefaultValue=false)] + public BooleanValue? IsStockItem { get; set; } + + [DataMember(Name="ItemStatus", EmitDefaultValue=false)] + public StringValue? ItemStatus { get; set; } + + [DataMember(Name="LastModified", EmitDefaultValue=false)] + public DateTimeValue? LastModified { get; set; } + + [DataMember(Name="Matrix", EmitDefaultValue=false)] + public List? Matrix { get; set; } + + [DataMember(Name="MetaDescription", EmitDefaultValue=false)] + public StringValue? MetaDescription { get; set; } + + [DataMember(Name="MSRP", EmitDefaultValue=false)] + public DecimalValue? MSRP { get; set; } + + [DataMember(Name="PageTitle", EmitDefaultValue=false)] + public StringValue? PageTitle { get; set; } + + [DataMember(Name="SearchKeywords", EmitDefaultValue=false)] + public StringValue? SearchKeywords { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="Visibility", EmitDefaultValue=false)] + public StringValue? Visibility { get; set; } + + [DataMember(Name="WeightUOM", EmitDefaultValue=false)] + public StringValue? WeightUOM { get; set; } + + [DataMember(Name="MetaKeywords", EmitDefaultValue=false)] + public StringValue? MetaKeywords { get; set; } + + [DataMember(Name="RequireShipment", EmitDefaultValue=false)] + public BooleanValue? RequireShipment { get; set; } + + [DataMember(Name="NotAvailable", EmitDefaultValue=false)] + public StringValue? NotAvailable { get; set; } + + [DataMember(Name="VendorDetails", EmitDefaultValue=false)] + public List? VendorDetails { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs new file mode 100644 index 000000000..f06d7eac9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TimeActivity : Entity + { + + [DataMember(Name="Approver", EmitDefaultValue=false)] + public StringValue? Approver { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public StringValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="EarningType", EmitDefaultValue=false)] + public StringValue? EarningType { get; set; } + + [DataMember(Name="Overtime", EmitDefaultValue=false)] + public StringValue? Overtime { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Released", EmitDefaultValue=false)] + public BooleanValue? Released { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + [DataMember(Name="TrackTime", EmitDefaultValue=false)] + public BooleanValue? TrackTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs new file mode 100644 index 000000000..c7b6cca7a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs @@ -0,0 +1,90 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TimeAndMaterial : Entity + { + + [DataMember(Name="AmountToInvoice", EmitDefaultValue=false)] + public DecimalValue? AmountToInvoice { get; set; } + + [DataMember(Name="BilledAmount", EmitDefaultValue=false)] + public DecimalValue? BilledAmount { get; set; } + + [DataMember(Name="BilledQty", EmitDefaultValue=false)] + public DecimalValue? BilledQty { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="DeferralCode", EmitDefaultValue=false)] + public StringValue? DeferralCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EmployeeID", EmitDefaultValue=false)] + public StringValue? EmployeeID { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="MaxAvailableAmount", EmitDefaultValue=false)] + public DecimalValue? MaxAvailableAmount { get; set; } + + [DataMember(Name="MaxLimitAmount", EmitDefaultValue=false)] + public DecimalValue? MaxLimitAmount { get; set; } + + [DataMember(Name="OverLimitAmount", EmitDefaultValue=false)] + public DecimalValue? OverLimitAmount { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="QtyToInvoice", EmitDefaultValue=false)] + public DecimalValue? QtyToInvoice { get; set; } + + [DataMember(Name="Retainage", EmitDefaultValue=false)] + public DecimalValue? Retainage { get; set; } + + [DataMember(Name="RetainageAmount", EmitDefaultValue=false)] + public DecimalValue? RetainageAmount { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxCategory", EmitDefaultValue=false)] + public StringValue? TaxCategory { get; set; } + + [DataMember(Name="UnitPrice", EmitDefaultValue=false)] + public DecimalValue? UnitPrice { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs new file mode 100644 index 000000000..dd988f94f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs @@ -0,0 +1,91 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TimeEntry : Entity, ITopLevelEntity + { + + [DataMember(Name="ApprovalStatus", EmitDefaultValue=false)] + public StringValue? ApprovalStatus { get; set; } + + [DataMember(Name="Approver", EmitDefaultValue=false)] + public StringValue? Approver { get; set; } + + [DataMember(Name="Billable", EmitDefaultValue=false)] + public BooleanValue? Billable { get; set; } + + [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] + public StringValue? BillableOvertime { get; set; } + + [DataMember(Name="BillableTime", EmitDefaultValue=false)] + public StringValue? BillableTime { get; set; } + + [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] + public BooleanValue? CertifiedJob { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="CostRate", EmitDefaultValue=false)] + public DecimalValue? CostRate { get; set; } + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="EarningType", EmitDefaultValue=false)] + public StringValue? EarningType { get; set; } + + [DataMember(Name="Employee", EmitDefaultValue=false)] + public StringValue? Employee { get; set; } + + [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] + public StringValue? ExternalRefNbr { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Overtime", EmitDefaultValue=false)] + public StringValue? Overtime { get; set; } + + [DataMember(Name="ProjectID", EmitDefaultValue=false)] + public StringValue? ProjectID { get; set; } + + [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] + public StringValue? ProjectTaskID { get; set; } + + [DataMember(Name="Summary", EmitDefaultValue=false)] + public StringValue? Summary { get; set; } + + [DataMember(Name="Time", EmitDefaultValue=false)] + public DateTimeValue? Time { get; set; } + + [DataMember(Name="TimeEntryID", EmitDefaultValue=false)] + public GuidValue? TimeEntryID { get; set; } + + [DataMember(Name="TimeSpent", EmitDefaultValue=false)] + public StringValue? TimeSpent { get; set; } + + [DataMember(Name="UnionLocal", EmitDefaultValue=false)] + public StringValue? UnionLocal { get; set; } + + [DataMember(Name="WCCCode", EmitDefaultValue=false)] + public StringValue? WCCCode { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs new file mode 100644 index 000000000..5b48f98bf --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Totals : Entity + { + + [DataMember(Name="DiscountTotal", EmitDefaultValue=false)] + public DecimalValue? DiscountTotal { get; set; } + + [DataMember(Name="LineTotalAmount", EmitDefaultValue=false)] + public DecimalValue? LineTotalAmount { get; set; } + + [DataMember(Name="MiscTotalAmount", EmitDefaultValue=false)] + public DecimalValue? MiscTotalAmount { get; set; } + + [DataMember(Name="TaxTotal", EmitDefaultValue=false)] + public DecimalValue? TaxTotal { get; set; } + + [DataMember(Name="UnbilledAmount", EmitDefaultValue=false)] + public DecimalValue? UnbilledAmount { get; set; } + + [DataMember(Name="UnbilledQty", EmitDefaultValue=false)] + public DecimalValue? UnbilledQty { get; set; } + + [DataMember(Name="UnpaidBalance", EmitDefaultValue=false)] + public DecimalValue? UnpaidBalance { get; set; } + + [DataMember(Name="Freight", EmitDefaultValue=false)] + public DecimalValue? Freight { get; set; } + + [DataMember(Name="FreightCost", EmitDefaultValue=false)] + public DecimalValue? FreightCost { get; set; } + + [DataMember(Name="FreightCostIsuptodate", EmitDefaultValue=false)] + public BooleanValue? FreightCostIsuptodate { get; set; } + + [DataMember(Name="FreightTaxCategory", EmitDefaultValue=false)] + public StringValue? FreightTaxCategory { get; set; } + + [DataMember(Name="OrderVolume", EmitDefaultValue=false)] + public DecimalValue? OrderVolume { get; set; } + + [DataMember(Name="OrderWeight", EmitDefaultValue=false)] + public DecimalValue? OrderWeight { get; set; } + + [DataMember(Name="PackageWeight", EmitDefaultValue=false)] + public DecimalValue? PackageWeight { get; set; } + + [DataMember(Name="PremiumFreight", EmitDefaultValue=false)] + public DecimalValue? PremiumFreight { get; set; } + + [DataMember(Name="OverrideFreightAmount", EmitDefaultValue=false)] + public BooleanValue? OverrideFreightAmount { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs new file mode 100644 index 000000000..9d5ce3127 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TransferOrder : Entity, ITopLevelEntity + { + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="Details", EmitDefaultValue=false)] + public List? Details { get; set; } + + [DataMember(Name="ExternalRef", EmitDefaultValue=false)] + public StringValue? ExternalRef { get; set; } + + [DataMember(Name="FromWarehouseID", EmitDefaultValue=false)] + public StringValue? FromWarehouseID { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="PostPeriod", EmitDefaultValue=false)] + public StringValue? PostPeriod { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TotalQty", EmitDefaultValue=false)] + public DecimalValue? TotalQty { get; set; } + + [DataMember(Name="ToWarehouseID", EmitDefaultValue=false)] + public StringValue? ToWarehouseID { get; set; } + + [DataMember(Name="TransferType", EmitDefaultValue=false)] + public StringValue? TransferType { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs new file mode 100644 index 000000000..96d37ec75 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TransferOrderDetail : Entity + { + + [DataMember(Name="Allocations", EmitDefaultValue=false)] + public List? Allocations { get; set; } + + [DataMember(Name="CostCode", EmitDefaultValue=false)] + public StringValue? CostCode { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="FromLocationID", EmitDefaultValue=false)] + public StringValue? FromLocationID { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="ReasonCode", EmitDefaultValue=false)] + public StringValue? ReasonCode { get; set; } + + [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] + public StringValue? SpecialOrderNbr { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + [DataMember(Name="ToLocationID", EmitDefaultValue=false)] + public StringValue? ToLocationID { get; set; } + + [DataMember(Name="ToCostCode", EmitDefaultValue=false)] + public StringValue? ToCostCode { get; set; } + + [DataMember(Name="ToCostLayerType", EmitDefaultValue=false)] + public StringValue? ToCostLayerType { get; set; } + + [DataMember(Name="ToProject", EmitDefaultValue=false)] + public StringValue? ToProject { get; set; } + + [DataMember(Name="ToProjectTask", EmitDefaultValue=false)] + public StringValue? ToProjectTask { get; set; } + + [DataMember(Name="ToSpecialOrderNbr", EmitDefaultValue=false)] + public StringValue? ToSpecialOrderNbr { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs new file mode 100644 index 000000000..75c0ca923 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class TransferOrderDetailAllocation : Entity + { + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] + public StringValue? LotSerialNbr { get; set; } + + [DataMember(Name="Qty", EmitDefaultValue=false)] + public DecimalValue? Qty { get; set; } + + [DataMember(Name="SplitLineNumber", EmitDefaultValue=false)] + public IntValue? SplitLineNumber { get; set; } + + [DataMember(Name="Subitem", EmitDefaultValue=false)] + public StringValue? Subitem { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs new file mode 100644 index 000000000..16552f29f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UnionDeductionOrBenefitDetail : Entity + { + + [DataMember(Name="ContributionAmount", EmitDefaultValue=false)] + public DecimalValue? ContributionAmount { get; set; } + + [DataMember(Name="ContributionCalculationMethod", EmitDefaultValue=false)] + public StringValue? ContributionCalculationMethod { get; set; } + + [DataMember(Name="ContributionPercent", EmitDefaultValue=false)] + public DecimalValue? ContributionPercent { get; set; } + + [DataMember(Name="ContributionType", EmitDefaultValue=false)] + public StringValue? ContributionType { get; set; } + + [DataMember(Name="DeductionAmount", EmitDefaultValue=false)] + public DecimalValue? DeductionAmount { get; set; } + + [DataMember(Name="DeductionAndBenefitCode", EmitDefaultValue=false)] + public StringValue? DeductionAndBenefitCode { get; set; } + + [DataMember(Name="DeductionCalculationMethod", EmitDefaultValue=false)] + public StringValue? DeductionCalculationMethod { get; set; } + + [DataMember(Name="DeductionPercent", EmitDefaultValue=false)] + public DecimalValue? DeductionPercent { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs new file mode 100644 index 000000000..af46c225a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UnionEarningRateDetail : Entity + { + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="WageRate", EmitDefaultValue=false)] + public DecimalValue? WageRate { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs new file mode 100644 index 000000000..4a5e1d040 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UnionLocal : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] + public StringValue? UnionLocalID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs new file mode 100644 index 000000000..d280139eb --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class UnitsOfMeasure : Entity, ITopLevelEntity + { + + [DataMember(Name="ConversionFactor", EmitDefaultValue=false)] + public DecimalValue? ConversionFactor { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="FromUOM", EmitDefaultValue=false)] + public StringValue? FromUOM { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="MultiplyOrDivide", EmitDefaultValue=false)] + public StringValue? MultiplyOrDivide { get; set; } + + [DataMember(Name="ToUOM", EmitDefaultValue=false)] + public StringValue? ToUOM { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs new file mode 100644 index 000000000..19450ae6b --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs @@ -0,0 +1,187 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Vendor : Entity, ITopLevelEntity + { + + [DataMember(Name="AccountRef", EmitDefaultValue=false)] + public StringValue? AccountRef { get; set; } + + [DataMember(Name="APAccount", EmitDefaultValue=false)] + public StringValue? APAccount { get; set; } + + [DataMember(Name="APSubaccount", EmitDefaultValue=false)] + public StringValue? APSubaccount { get; set; } + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="CashAccount", EmitDefaultValue=false)] + public StringValue? CashAccount { get; set; } + + [DataMember(Name="Contacts", EmitDefaultValue=false)] + public List? Contacts { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="CurrencyRateType", EmitDefaultValue=false)] + public StringValue? CurrencyRateType { get; set; } + + [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] + public BooleanValue? EnableCurrencyOverride { get; set; } + + [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] + public BooleanValue? EnableRateOverride { get; set; } + + [DataMember(Name="F1099Box", EmitDefaultValue=false)] + public StringValue? F1099Box { get; set; } + + [DataMember(Name="F1099Vendor", EmitDefaultValue=false)] + public BooleanValue? F1099Vendor { get; set; } + + [DataMember(Name="FATCA", EmitDefaultValue=false)] + public BooleanValue? FATCA { get; set; } + + [DataMember(Name="FOBPoint", EmitDefaultValue=false)] + public StringValue? FOBPoint { get; set; } + + [DataMember(Name="ForeignEntity", EmitDefaultValue=false)] + public BooleanValue? ForeignEntity { get; set; } + + [DataMember(Name="LandedCostVendor", EmitDefaultValue=false)] + public BooleanValue? LandedCostVendor { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LeadTimedays", EmitDefaultValue=false)] + public ShortValue? LeadTimedays { get; set; } + + [DataMember(Name="LegalName", EmitDefaultValue=false)] + public StringValue? LegalName { get; set; } + + [DataMember(Name="LocationName", EmitDefaultValue=false)] + public StringValue? LocationName { get; set; } + + [DataMember(Name="MainContact", EmitDefaultValue=false)] + public Contact? MainContact { get; set; } + + [DataMember(Name="MaxReceipt", EmitDefaultValue=false)] + public DecimalValue? MaxReceipt { get; set; } + + [DataMember(Name="MinReceipt", EmitDefaultValue=false)] + public DecimalValue? MinReceipt { get; set; } + + [DataMember(Name="ParentAccount", EmitDefaultValue=false)] + public StringValue? ParentAccount { get; set; } + + [DataMember(Name="PaymentBy", EmitDefaultValue=false)] + public StringValue? PaymentBy { get; set; } + + [DataMember(Name="PaymentInstructions", EmitDefaultValue=false)] + public List? PaymentInstructions { get; set; } + + [DataMember(Name="PaymentLeadTimedays", EmitDefaultValue=false)] + public ShortValue? PaymentLeadTimedays { get; set; } + + [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] + public StringValue? PaymentMethod { get; set; } + + [DataMember(Name="PaySeparately", EmitDefaultValue=false)] + public BooleanValue? PaySeparately { get; set; } + + [DataMember(Name="PrimaryContact", EmitDefaultValue=false)] + public Contact? PrimaryContact { get; set; } + + [DataMember(Name="PrintOrders", EmitDefaultValue=false)] + public BooleanValue? PrintOrders { get; set; } + + [DataMember(Name="ReceiptAction", EmitDefaultValue=false)] + public StringValue? ReceiptAction { get; set; } + + [DataMember(Name="ReceivingBranch", EmitDefaultValue=false)] + public StringValue? ReceivingBranch { get; set; } + + [DataMember(Name="RemittanceAddressOverride", EmitDefaultValue=false)] + public BooleanValue? RemittanceAddressOverride { get; set; } + + [DataMember(Name="RemittanceContact", EmitDefaultValue=false)] + public Contact? RemittanceContact { get; set; } + + [DataMember(Name="RemittanceContactOverride", EmitDefaultValue=false)] + public BooleanValue? RemittanceContactOverride { get; set; } + + [DataMember(Name="SendOrdersbyEmail", EmitDefaultValue=false)] + public BooleanValue? SendOrdersbyEmail { get; set; } + + [DataMember(Name="ShippingContactOverride", EmitDefaultValue=false)] + public BooleanValue? ShippingContactOverride { get; set; } + + [DataMember(Name="ShippingAddressOverride", EmitDefaultValue=false)] + public BooleanValue? ShippingAddressOverride { get; set; } + + [DataMember(Name="ShippingContact", EmitDefaultValue=false)] + public Contact? ShippingContact { get; set; } + + [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] + public StringValue? ShippingTerms { get; set; } + + [DataMember(Name="ShipVia", EmitDefaultValue=false)] + public StringValue? ShipVia { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] + public StringValue? TaxCalculationMode { get; set; } + + [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] + public StringValue? TaxRegistrationID { get; set; } + + [DataMember(Name="TaxZone", EmitDefaultValue=false)] + public StringValue? TaxZone { get; set; } + + [DataMember(Name="Terms", EmitDefaultValue=false)] + public StringValue? Terms { get; set; } + + [DataMember(Name="ThresholdReceipt", EmitDefaultValue=false)] + public DecimalValue? ThresholdReceipt { get; set; } + + [DataMember(Name="VendorClass", EmitDefaultValue=false)] + public StringValue? VendorClass { get; set; } + + [DataMember(Name="VendorID", EmitDefaultValue=false)] + public StringValue? VendorID { get; set; } + + [DataMember(Name="VendorIsLaborUnion", EmitDefaultValue=false)] + public BooleanValue? VendorIsLaborUnion { get; set; } + + [DataMember(Name="VendorIsTaxAgency", EmitDefaultValue=false)] + public BooleanValue? VendorIsTaxAgency { get; set; } + + [DataMember(Name="VendorName", EmitDefaultValue=false)] + public StringValue? VendorName { get; set; } + + [DataMember(Name="Warehouse", EmitDefaultValue=false)] + public StringValue? Warehouse { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs new file mode 100644 index 000000000..f1e7de8c4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VendorClass : Entity, ITopLevelEntity + { + + [DataMember(Name="Attributes", EmitDefaultValue=false)] + public List? Attributes { get; set; } + + [DataMember(Name="ClassID", EmitDefaultValue=false)] + public StringValue? ClassID { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs new file mode 100644 index 000000000..55d551168 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VendorPriceDetail : Entity + { + + [DataMember(Name="BreakQty", EmitDefaultValue=false)] + public DecimalValue? BreakQty { get; set; } + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Price", EmitDefaultValue=false)] + public DecimalValue? Price { get; set; } + + [DataMember(Name="Promotional", EmitDefaultValue=false)] + public BooleanValue? Promotional { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + [DataMember(Name="VendorName", EmitDefaultValue=false)] + public StringValue? VendorName { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs new file mode 100644 index 000000000..def359011 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VendorPriceWorksheet : Entity, ITopLevelEntity + { + + [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] + public DateTimeValue? CreatedDateTime { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] + public DateTimeValue? ExpirationDate { get; set; } + + [DataMember(Name="Hold", EmitDefaultValue=false)] + public BooleanValue? Hold { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="OverwriteOverlappingPrices", EmitDefaultValue=false)] + public BooleanValue? OverwriteOverlappingPrices { get; set; } + + [DataMember(Name="Promotional", EmitDefaultValue=false)] + public BooleanValue? Promotional { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="Status", EmitDefaultValue=false)] + public StringValue? Status { get; set; } + + [DataMember(Name="VendorSalesPrices", EmitDefaultValue=false)] + public List? VendorSalesPrices { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs new file mode 100644 index 000000000..fc218338f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VendorPriceWorksheetDetail : Entity + { + + [DataMember(Name="BreakQty", EmitDefaultValue=false)] + public DecimalValue? BreakQty { get; set; } + + [DataMember(Name="CurrencyID", EmitDefaultValue=false)] + public StringValue? CurrencyID { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="LineID", EmitDefaultValue=false)] + public IntValue? LineID { get; set; } + + [DataMember(Name="PendingPrice", EmitDefaultValue=false)] + public DecimalValue? PendingPrice { get; set; } + + [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] + public StringValue? ReferenceNbr { get; set; } + + [DataMember(Name="SourcePrice", EmitDefaultValue=false)] + public DecimalValue? SourcePrice { get; set; } + + [DataMember(Name="Tax", EmitDefaultValue=false)] + public StringValue? Tax { get; set; } + + [DataMember(Name="UOM", EmitDefaultValue=false)] + public StringValue? UOM { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs new file mode 100644 index 000000000..6dcc9fb18 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VendorPricesInquiry : Entity, ITopLevelEntity + { + + [DataMember(Name="InventoryID", EmitDefaultValue=false)] + public StringValue? InventoryID { get; set; } + + [DataMember(Name="ItemClass", EmitDefaultValue=false)] + public StringValue? ItemClass { get; set; } + + [DataMember(Name="ProductManager", EmitDefaultValue=false)] + public StringValue? ProductManager { get; set; } + + [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] + public StringValue? ProductWorkgroup { get; set; } + + [DataMember(Name="Vendor", EmitDefaultValue=false)] + public StringValue? Vendor { get; set; } + + [DataMember(Name="VendorPriceDetails", EmitDefaultValue=false)] + public List? VendorPriceDetails { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs new file mode 100644 index 000000000..dc99d6a5f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class VisibilitySettings : Entity + { + + [DataMember(Name="AP", EmitDefaultValue=false)] + public BooleanValue? AP { get; set; } + + [DataMember(Name="AR", EmitDefaultValue=false)] + public BooleanValue? AR { get; set; } + + [DataMember(Name="CA", EmitDefaultValue=false)] + public BooleanValue? CA { get; set; } + + [DataMember(Name="CRM", EmitDefaultValue=false)] + public BooleanValue? CRM { get; set; } + + [DataMember(Name="Expenses", EmitDefaultValue=false)] + public BooleanValue? Expenses { get; set; } + + [DataMember(Name="GL", EmitDefaultValue=false)] + public BooleanValue? GL { get; set; } + + [DataMember(Name="IN", EmitDefaultValue=false)] + public BooleanValue? IN { get; set; } + + [DataMember(Name="PO", EmitDefaultValue=false)] + public BooleanValue? PO { get; set; } + + [DataMember(Name="SO", EmitDefaultValue=false)] + public BooleanValue? SO { get; set; } + + [DataMember(Name="TimeEntries", EmitDefaultValue=false)] + public BooleanValue? TimeEntries { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs new file mode 100644 index 000000000..de42f47b4 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCode : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="wcccode", EmitDefaultValue=false)] + public StringValue? wcccode { get; set; } + + [DataMember(Name="WCCCodeCostCodeSources", EmitDefaultValue=false)] + public List? WCCCodeCostCodeSources { get; set; } + + [DataMember(Name="WCCCodeLaborItemSources", EmitDefaultValue=false)] + public List? WCCCodeLaborItemSources { get; set; } + + [DataMember(Name="WCCCodeMaxInsurableWages", EmitDefaultValue=false)] + public List? WCCCodeMaxInsurableWages { get; set; } + + [DataMember(Name="WCCCodeProjectSources", EmitDefaultValue=false)] + public List? WCCCodeProjectSources { get; set; } + + [DataMember(Name="WCCCodeRates", EmitDefaultValue=false)] + public List? WCCCodeRates { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs new file mode 100644 index 000000000..f0f6399a0 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeCostCodeSource : Entity + { + + [DataMember(Name="CostCodeFrom", EmitDefaultValue=false)] + public StringValue? CostCodeFrom { get; set; } + + [DataMember(Name="CostCodeTo", EmitDefaultValue=false)] + public StringValue? CostCodeTo { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] + public StringValue? WorkCodeID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs new file mode 100644 index 000000000..b7a6c5bb5 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeLaborItemSource : Entity + { + + [DataMember(Name="LaborItem", EmitDefaultValue=false)] + public StringValue? LaborItem { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] + public StringValue? WorkCodeID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs new file mode 100644 index 000000000..49de59b3a --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeMaxInsurableWage : Entity + { + + [DataMember(Name="DeductionandBenefitCode", EmitDefaultValue=false)] + public StringValue? DeductionandBenefitCode { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="Wage", EmitDefaultValue=false)] + public DecimalValue? Wage { get; set; } + + [DataMember(Name="WCCode", EmitDefaultValue=false)] + public StringValue? WCCode { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs new file mode 100644 index 000000000..a808e1658 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeMaxInsurableWageDetail : Entity + { + + [DataMember(Name="DeductionandBenefitCode", EmitDefaultValue=false)] + public StringValue? DeductionandBenefitCode { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="Wage", EmitDefaultValue=false)] + public DecimalValue? Wage { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs new file mode 100644 index 000000000..1475161c9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeProjectSource : Entity + { + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="LineNbr", EmitDefaultValue=false)] + public IntValue? LineNbr { get; set; } + + [DataMember(Name="Project", EmitDefaultValue=false)] + public StringValue? Project { get; set; } + + [DataMember(Name="ProjectTask", EmitDefaultValue=false)] + public StringValue? ProjectTask { get; set; } + + [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] + public StringValue? WorkCodeID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs new file mode 100644 index 000000000..c7dd12511 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeRate : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="BenefitCalculationMethod", EmitDefaultValue=false)] + public StringValue? BenefitCalculationMethod { get; set; } + + [DataMember(Name="BenefitRate", EmitDefaultValue=false)] + public DecimalValue? BenefitRate { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="DeductionCalculationMethod", EmitDefaultValue=false)] + public StringValue? DeductionCalculationMethod { get; set; } + + [DataMember(Name="DeductionCode", EmitDefaultValue=false)] + public StringValue? DeductionCode { get; set; } + + [DataMember(Name="DeductionRate", EmitDefaultValue=false)] + public DecimalValue? DeductionRate { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="RecordID", EmitDefaultValue=false)] + public IntValue? RecordID { get; set; } + + [DataMember(Name="State", EmitDefaultValue=false)] + public StringValue? State { get; set; } + + [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] + public StringValue? WorkCodeID { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs new file mode 100644 index 000000000..59459db2f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WCCCodeRateDetail : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public GuidValue? Active { get; set; } + + [DataMember(Name="BenefitRate", EmitDefaultValue=false)] + public DecimalValue? BenefitRate { get; set; } + + [DataMember(Name="Branch", EmitDefaultValue=false)] + public StringValue? Branch { get; set; } + + [DataMember(Name="DeductionRate", EmitDefaultValue=false)] + public DecimalValue? DeductionRate { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] + public DateTimeValue? EffectiveDate { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="WCCCode", EmitDefaultValue=false)] + public StringValue? WCCCode { get; set; } + + [DataMember(Name="WCCCodeMaxInsurableWages", EmitDefaultValue=false)] + public List? WCCCodeMaxInsurableWages { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs new file mode 100644 index 000000000..736150e29 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs @@ -0,0 +1,127 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class Warehouse : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="COGSExpenseAccount", EmitDefaultValue=false)] + public StringValue? COGSExpenseAccount { get; set; } + + [DataMember(Name="COGSExpenseSubaccount", EmitDefaultValue=false)] + public StringValue? COGSExpenseSubaccount { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="DiscountAccount", EmitDefaultValue=false)] + public StringValue? DiscountAccount { get; set; } + + [DataMember(Name="DiscountSubaccount", EmitDefaultValue=false)] + public StringValue? DiscountSubaccount { get; set; } + + [DataMember(Name="DropShipLocationID", EmitDefaultValue=false)] + public StringValue? DropShipLocationID { get; set; } + + [DataMember(Name="FreightChargeAccount", EmitDefaultValue=false)] + public StringValue? FreightChargeAccount { get; set; } + + [DataMember(Name="FreightChargeSubaccount", EmitDefaultValue=false)] + public StringValue? FreightChargeSubaccount { get; set; } + + [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] + public StringValue? InventoryAccount { get; set; } + + [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] + public StringValue? InventorySubaccount { get; set; } + + [DataMember(Name="LandedCostVarianceAccount", EmitDefaultValue=false)] + public StringValue? LandedCostVarianceAccount { get; set; } + + [DataMember(Name="LandedCostVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? LandedCostVarianceSubaccount { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="Locations", EmitDefaultValue=false)] + public List? Locations { get; set; } + + [DataMember(Name="MiscChargeAccount", EmitDefaultValue=false)] + public StringValue? MiscChargeAccount { get; set; } + + [DataMember(Name="MiscChargeSubaccount", EmitDefaultValue=false)] + public StringValue? MiscChargeSubaccount { get; set; } + + [DataMember(Name="NonStockPickingLocationID", EmitDefaultValue=false)] + public StringValue? NonStockPickingLocationID { get; set; } + + [DataMember(Name="OverrideInventoryAccountSubaccount", EmitDefaultValue=false)] + public BooleanValue? OverrideInventoryAccountSubaccount { get; set; } + + [DataMember(Name="POAccrualAccount", EmitDefaultValue=false)] + public StringValue? POAccrualAccount { get; set; } + + [DataMember(Name="POAccrualSubaccount", EmitDefaultValue=false)] + public StringValue? POAccrualSubaccount { get; set; } + + [DataMember(Name="PurchasePriceVarianceAccount", EmitDefaultValue=false)] + public StringValue? PurchasePriceVarianceAccount { get; set; } + + [DataMember(Name="PurchasePriceVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? PurchasePriceVarianceSubaccount { get; set; } + + [DataMember(Name="ReasonCodeSubaccount", EmitDefaultValue=false)] + public StringValue? ReasonCodeSubaccount { get; set; } + + [DataMember(Name="ReceivingLocationID", EmitDefaultValue=false)] + public StringValue? ReceivingLocationID { get; set; } + + [DataMember(Name="RMALocationID", EmitDefaultValue=false)] + public StringValue? RMALocationID { get; set; } + + [DataMember(Name="SalesAccount", EmitDefaultValue=false)] + public StringValue? SalesAccount { get; set; } + + [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] + public StringValue? SalesSubaccount { get; set; } + + [DataMember(Name="ShippingLocationID", EmitDefaultValue=false)] + public StringValue? ShippingLocationID { get; set; } + + [DataMember(Name="StandardCostRevaluationAccount", EmitDefaultValue=false)] + public StringValue? StandardCostRevaluationAccount { get; set; } + + [DataMember(Name="StandardCostRevaluationSubaccount", EmitDefaultValue=false)] + public StringValue? StandardCostRevaluationSubaccount { get; set; } + + [DataMember(Name="StandardCostVarianceAccount", EmitDefaultValue=false)] + public StringValue? StandardCostVarianceAccount { get; set; } + + [DataMember(Name="StandardCostVarianceSubaccount", EmitDefaultValue=false)] + public StringValue? StandardCostVarianceSubaccount { get; set; } + + [DataMember(Name="UseItemDefaultLocationForPicking", EmitDefaultValue=false)] + public BooleanValue? UseItemDefaultLocationForPicking { get; set; } + + [DataMember(Name="WarehouseID", EmitDefaultValue=false)] + public StringValue? WarehouseID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs new file mode 100644 index 000000000..2d8d6acde --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WarehouseLocation : Entity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AssemblyAllowed", EmitDefaultValue=false)] + public BooleanValue? AssemblyAllowed { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="LocationID", EmitDefaultValue=false)] + public StringValue? LocationID { get; set; } + + [DataMember(Name="PickPriority", EmitDefaultValue=false)] + public ShortValue? PickPriority { get; set; } + + [DataMember(Name="ReceiptsAllowed", EmitDefaultValue=false)] + public BooleanValue? ReceiptsAllowed { get; set; } + + [DataMember(Name="SalesAllowed", EmitDefaultValue=false)] + public BooleanValue? SalesAllowed { get; set; } + + [DataMember(Name="TransfersAllowed", EmitDefaultValue=false)] + public BooleanValue? TransfersAllowed { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs new file mode 100644 index 000000000..4dafb77c9 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WorkCalendar : Entity, ITopLevelEntity + { + + [DataMember(Name="CalendarExceptions", EmitDefaultValue=false)] + public List? CalendarExceptions { get; set; } + + [DataMember(Name="CalendarSettings", EmitDefaultValue=false)] + public CalendarSettings? CalendarSettings { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="TimeZone", EmitDefaultValue=false)] + public StringValue? TimeZone { get; set; } + + [DataMember(Name="WorkCalendarID", EmitDefaultValue=false)] + public StringValue? WorkCalendarID { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs new file mode 100644 index 000000000..a3132b581 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WorkCalendarExceptionDetail : Entity + { + + [DataMember(Name="Date", EmitDefaultValue=false)] + public DateTimeValue? Date { get; set; } + + [DataMember(Name="DayOfWeek", EmitDefaultValue=false)] + public StringValue? DayOfWeek { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="EndTime", EmitDefaultValue=false)] + public DateTimeValue? EndTime { get; set; } + + [DataMember(Name="StartTime", EmitDefaultValue=false)] + public DateTimeValue? StartTime { get; set; } + + [DataMember(Name="UnpaidBreakTime", EmitDefaultValue=false)] + public StringValue? UnpaidBreakTime { get; set; } + + [DataMember(Name="WorkDay", EmitDefaultValue=false)] + public BooleanValue? WorkDay { get; set; } + + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs new file mode 100644 index 000000000..97e2faa0f --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WorkClassCompensationCode : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="CostCodeFrom", EmitDefaultValue=false)] + public StringValue? CostCodeFrom { get; set; } + + [DataMember(Name="CostCodeTo", EmitDefaultValue=false)] + public StringValue? CostCodeTo { get; set; } + + [DataMember(Name="Description", EmitDefaultValue=false)] + public StringValue? Description { get; set; } + + [DataMember(Name="WCCCode", EmitDefaultValue=false)] + public StringValue? WCCCode { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs new file mode 100644 index 000000000..d3d7e20b7 --- /dev/null +++ b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; + +using Newtonsoft.Json; + +using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.ContractBasedApi; +using Acumatica.RESTClient.ContractBasedApi.Model; + +namespace Acumatica.ISVCB_23_200_001.Model +{ + [DataContract] + public class WorkLocation : Entity, ITopLevelEntity + { + + [DataMember(Name="Active", EmitDefaultValue=false)] + public BooleanValue? Active { get; set; } + + [DataMember(Name="AddressInfo", EmitDefaultValue=false)] + public Address? AddressInfo { get; set; } + + [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] + public DateTimeValue? LastModifiedDateTime { get; set; } + + [DataMember(Name="UseAddressfromBranchID", EmitDefaultValue=false)] + public StringValue? UseAddressfromBranchID { get; set; } + + [DataMember(Name="WorkLocationID", EmitDefaultValue=false)] + public StringValue? WorkLocationID { get; set; } + + [DataMember(Name="WorkLocationName", EmitDefaultValue=false)] + public StringValue? WorkLocationName { get; set; } + + public virtual string GetEndpointPath() + { + return "entity/ISVCB/23.200.001"; + } + } +} \ No newline at end of file diff --git a/Loggers/ConsoleRequestLogger.cs b/Loggers/ConsoleRequestLogger.cs index 299692411..84bc0bb8b 100644 --- a/Loggers/ConsoleRequestLogger.cs +++ b/Loggers/ConsoleRequestLogger.cs @@ -38,6 +38,7 @@ public static void LogRequest(HttpRequestMessage request) Console.WriteLine(DateTime.Now.ToString()); Console.WriteLine("Request"); Console.WriteLine("\tMethod: " + request.Method); + Console.WriteLine("\tHeaders: " + request.Headers); Console.WriteLine("\tURL: " + request.RequestUri); string body = request.Content?.ReadAsStringAsync().Result; From 19f0edbea95838deb2bf9986048e7177c9d63775 Mon Sep 17 00:00:00 2001 From: Evgeny Afanasiev Date: Tue, 10 Feb 2026 16:18:14 +0300 Subject: [PATCH 3/5] Revert "Fix spaces" This reverts commit f2be6547f1f93d42a4219476d09697d1f619e209. --- Acumatica REST API Client.sln | 7 - .../OAuthAuthCodeExample.cs | 2 +- .../OAuthHybridExample.cs | 196 ------------ .../Program.cs | 98 +++--- Acumatica.RESTClient/AuthApi/AuthApi.cs | 49 ++- Acumatica.RESTClient/Client/ApiClient.cs | 28 +- .../Acumatica.ISVCB_23.200.001.csproj | 34 -- .../Api/AccountApi.cs | 13 - .../Api/AccountDetailsForPeriodInquiryApi.cs | 13 - .../Api/AccountGroupApi.cs | 13 - .../Api/AccountSummaryInquiryApi.cs | 13 - .../Api/ActivityApi.cs | 13 - .../Api/AppointmentApi.cs | 13 - .../Api/AttributeDefinitionApi.cs | 13 - .../Api/BaseEndpointApi.cs | 24 -- .../Api/BigCommerceStoresApi.cs | 13 - .../Acumatica.ISVCB_23.200.001/Api/BillApi.cs | 13 - .../Api/BudgetApi.cs | 13 - .../Api/BusinessAccountApi.cs | 13 - .../Api/CarrierApi.cs | 13 - .../Acumatica.ISVCB_23.200.001/Api/CaseApi.cs | 13 - .../Api/CashSaleApi.cs | 13 - .../Api/ChangeOrderApi.cs | 13 - .../Api/ChangeOrderClassApi.cs | 13 - .../Api/CheckApi.cs | 13 - .../Api/CompaniesStructureApi.cs | 13 - .../Api/CompanyFinancialPeriodApi.cs | 13 - .../Api/ContactApi.cs | 13 - .../Api/ContractUsageApi.cs | 13 - .../Api/CostCodeApi.cs | 13 - .../Api/CurrencyApi.cs | 13 - .../Api/CustomerApi.cs | 13 - .../Api/CustomerClassApi.cs | 13 - .../Api/CustomerLocationApi.cs | 13 - .../Api/CustomerPaymentMethodApi.cs | 13 - .../Api/CustomerPriceClassApi.cs | 13 - .../Api/DeductionBenefitCodeApi.cs | 13 - .../Api/DiscountApi.cs | 13 - .../Api/DiscountCodeApi.cs | 13 - .../Api/EarningTypeCodeApi.cs | 13 - .../Api/EducatedResourcesApi.cs | 13 - .../Api/EmailApi.cs | 13 - .../Api/EmailProcessingApi.cs | 13 - .../Api/EmployeeApi.cs | 13 - .../Api/EmployeePayrollClassApi.cs | 13 - .../Api/EmployeePayrollSettingsApi.cs | 13 - .../Api/EventApi.cs | 13 - .../Api/ExpenseClaimApi.cs | 13 - .../Api/ExpenseReceiptApi.cs | 13 - .../Api/ExternalCommitmentApi.cs | 13 - .../Api/FOBPointApi.cs | 13 - .../Api/FinancialPeriodApi.cs | 13 - .../Api/FinancialYearApi.cs | 13 - .../Api/ISVContactsApi.cs | 13 - .../Api/ISVSolutionApi.cs | 13 - .../Api/InventoryAdjustmentApi.cs | 13 - .../Api/InventoryAllocationInquiryApi.cs | 13 - .../Api/InventoryIssueApi.cs | 13 - .../Api/InventoryQuantityAvailableApi.cs | 13 - .../Api/InventoryReceiptApi.cs | 13 - .../Api/InventorySummaryInquiryApi.cs | 13 - .../Api/InvoiceApi.cs | 13 - .../Api/ItemClassApi.cs | 13 - .../Api/ItemSalesCategoryApi.cs | 13 - .../Api/ItemWarehouseApi.cs | 13 - .../Api/JournalTransactionApi.cs | 13 - .../Api/KitAssemblyApi.cs | 13 - .../Api/KitSpecificationApi.cs | 13 - .../Api/LaborCostRateApi.cs | 13 - .../Acumatica.ISVCB_23.200.001/Api/LeadApi.cs | 13 - .../Api/LedgerApi.cs | 13 - .../Api/LotSerialClassApi.cs | 13 - .../Api/NonStockItemApi.cs | 13 - .../Api/OpportunityApi.cs | 13 - .../Api/PTOBankApi.cs | 13 - .../Api/PayGroupApi.cs | 13 - .../Api/PayPeriodApi.cs | 13 - .../Api/PaymentApi.cs | 13 - .../Api/PaymentMethodApi.cs | 13 - .../Api/PayrollBatchApi.cs | 13 - .../Api/PayrollUnionLocalApi.cs | 13 - .../Api/PayrollWCCCodeApi.cs | 13 - .../Api/PhysicalInventoryCountApi.cs | 13 - .../Api/PhysicalInventoryReviewApi.cs | 13 - .../Api/ProFormaInvoiceApi.cs | 13 - .../Api/ProjectApi.cs | 13 - .../Api/ProjectBudgetApi.cs | 13 - .../Api/ProjectTaskApi.cs | 13 - .../Api/ProjectTemplateApi.cs | 13 - .../Api/ProjectTemplateTaskApi.cs | 13 - .../Api/ProjectTransactionApi.cs | 13 - .../Api/PurchaseOrderApi.cs | 13 - .../Api/PurchaseReceiptApi.cs | 13 - .../Api/SalesInvoiceApi.cs | 13 - .../Api/SalesOrderApi.cs | 13 - .../Api/SalesPriceWorksheetApi.cs | 13 - .../Api/SalesPricesInquiryApi.cs | 13 - .../Api/SalespersonApi.cs | 13 - .../Api/ServiceOrderApi.cs | 13 - .../Api/ShipViaApi.cs | 13 - .../Api/ShipmentApi.cs | 13 - .../Api/ShippingBoxApi.cs | 13 - .../Api/ShippingTermApi.cs | 13 - .../Api/ShippingZonesApi.cs | 13 - .../Api/ShopifyStoreApi.cs | 13 - .../Api/StockItemApi.cs | 13 - .../Api/StorageDetailsByLocationInquiryApi.cs | 13 - .../Api/StorageDetailsInquiryApi.cs | 13 - .../Api/SubaccountApi.cs | 13 - .../Api/SubcontractApi.cs | 13 - .../Acumatica.ISVCB_23.200.001/Api/TaskApi.cs | 13 - .../Acumatica.ISVCB_23.200.001/Api/TaxApi.cs | 13 - .../Api/TaxCategoryApi.cs | 13 - .../Api/TaxReportingSettingsApi.cs | 13 - .../Api/TaxZoneApi.cs | 13 - .../Api/TemplateItemsApi.cs | 13 - .../Api/TimeEntryApi.cs | 13 - .../Api/TransferOrderApi.cs | 13 - .../Api/UnionLocalApi.cs | 13 - .../Api/UnitsOfMeasureApi.cs | 13 - .../Api/VendorApi.cs | 13 - .../Api/VendorClassApi.cs | 13 - .../Api/VendorPriceWorksheetApi.cs | 13 - .../Api/VendorPricesInquiryApi.cs | 13 - .../Api/WarehouseApi.cs | 13 - .../Api/WorkCalendarApi.cs | 13 - .../Api/WorkClassCompensationCodeApi.cs | 13 - .../Api/WorkLocationApi.cs | 13 - .../Model/ACAInfoDetail.cs | 24 -- .../Model/ACAInformation.cs | 24 -- .../Model/Account.cs | 79 ----- .../Model/AccountDetailsForPeriodInquiry.cs | 40 --- .../AccountDetailsForPeriodInquiryDetail.cs | 84 ----- .../Model/AccountGroup.cs | 49 --- .../Model/AccountSummaryInquiry.cs | 40 --- .../Model/AccountSummaryRow.cs | 78 ----- .../CardOperationParameters.cs | 33 -- .../ChangeBusinessAccountIDParameters.cs | 21 -- .../ChangeCostCodeIDParameters.cs | 21 -- .../ChangeEmployeeIDParameters.cs | 21 -- .../ChangeProjectIDParameters.cs | 21 -- .../Model/ActionParameters/CloseParameters.cs | 21 -- .../ConvertLeadToBAccountParameters.cs | 43 --- .../ConvertLeadToContactParameters.cs | 39 --- .../ConvertLeadToOpportunityParameters.cs | 51 --- .../CreateAccountFromContactParameters.cs | 25 -- .../CreateAccountFromOpportunityParameters.cs | 47 --- ...ateContactFromBusinessAccountParameters.cs | 37 --- .../CreateContactFromCustomerParameters.cs | 37 --- .../CreateContactFromOpportunityParameters.cs | 39 --- .../CreateContactFromVendorParameters.cs | 37 --- .../CreateOpportunitySalesOrderParameters.cs | 23 -- .../ActionParameters/LinkCaseParameters.cs | 12 - .../ReleaseRetainageParameters.cs | 25 -- .../SalesOrderCreateReceiptParameters.cs | 23 -- .../SalesOrderCreateShipmentParameters.cs | 23 -- .../ActionParameters/SetResultParameters.cs | 12 - .../UpdateDiscountsParameters.cs | 21 -- .../VoidCardPaymentParameters.cs | 31 -- .../Model/Actions/AcceptInvitationEvent.cs | 19 -- .../Model/Actions/ActivateProject.cs | 19 -- .../Model/Actions/ActivateProjectTask.cs | 19 -- .../Model/Actions/ActivateProjectTemplate.cs | 19 -- .../Model/Actions/AllowBilling.cs | 19 -- .../Model/Actions/AppRecalcExternalTax.cs | 19 -- .../Model/Actions/ApproveChangeOrder.cs | 19 -- .../Model/Actions/ApproveExpenseClaim.cs | 19 -- .../Model/Actions/ApproveExpenseReceipt.cs | 19 -- .../Model/Actions/ApproveProFormaInvoice.cs | 19 -- .../Model/Actions/ApproveProject.cs | 19 -- .../Model/Actions/ArchiveEmail.cs | 19 -- .../Model/Actions/AssignCase.cs | 19 -- .../Model/Actions/AutoRecalculateDiscounts.cs | 19 -- .../Model/Actions/CancelActivityEvent.cs | 19 -- .../Model/Actions/CancelActivityTask.cs | 19 -- .../Model/Actions/CancelAppointment.cs | 19 -- .../Model/Actions/CancelOrder.cs | 19 -- .../Model/Actions/CancelPhysicalInventory.cs | 19 -- .../Model/Actions/CancelProject.cs | 19 -- .../Model/Actions/CancelProjectTask.cs | 19 -- .../Model/Actions/CancelSalesOrder.cs | 19 -- .../Model/Actions/CancelSendingEmail.cs | 19 -- .../Model/Actions/CaptureCreditCardPayment.cs | 19 -- .../Model/Actions/CardOperation.cs | 55 ---- .../Model/Actions/ChangeBusinessAccountID.cs | 25 -- .../Model/Actions/ChangeCostCodeID.cs | 25 -- .../Model/Actions/ChangeEmployeeID.cs | 25 -- .../Model/Actions/ChangeProjectID.cs | 25 -- .../CheckForBusinessAccountDuplicates.cs | 19 -- .../Actions/CheckForContactDuplicates.cs | 19 -- .../Model/Actions/CheckLeadForDuplicates.cs | 19 -- .../Model/Actions/ClaimExpenseReceipt.cs | 19 -- .../Model/Actions/Close.cs | 25 -- .../Model/Actions/CloseAppointment.cs | 19 -- .../Model/Actions/CloseOrder.cs | 19 -- .../Model/Actions/CompleteActivity.cs | 19 -- .../Model/Actions/CompleteAppointment.cs | 19 -- .../Model/Actions/CompleteEvent.cs | 19 -- .../Model/Actions/CompleteOrder.cs | 19 -- .../Actions/CompletePhysicalInventory.cs | 19 -- .../Model/Actions/CompleteProject.cs | 19 -- .../Model/Actions/CompleteProjectTask.cs | 19 -- .../Model/Actions/CompleteTask.cs | 19 -- .../Model/Actions/CompleteTimeEntry.cs | 19 -- .../Model/Actions/ConfirmShipment.cs | 19 -- .../ConvertBusinessAccountToCustomer.cs | 19 -- .../Model/Actions/ConvertLeadToBAccount.cs | 80 ----- .../Model/Actions/ConvertLeadToContact.cs | 70 ----- .../Model/Actions/ConvertLeadToOpportunity.cs | 100 ------ .../Model/Actions/CorrectShipment.cs | 19 -- .../Model/Actions/CreateAPBill.cs | 19 -- .../Model/Actions/CreateAccountFromContact.cs | 35 --- .../Actions/CreateAccountFromOpportunity.cs | 90 ------ .../Model/Actions/CreateCaseFromEmail.cs | 19 -- .../CreateContactFromBusinessAccount.cs | 65 ---- .../Actions/CreateContactFromCustomer.cs | 65 ---- .../Model/Actions/CreateContactFromEmail.cs | 19 -- .../Actions/CreateContactFromOpportunity.cs | 70 ----- .../Model/Actions/CreateContactFromVendor.cs | 65 ---- .../Model/Actions/CreateEventFromEmail.cs | 19 -- .../Actions/CreateExpenseReceiptFromEmail.cs | 19 -- .../Model/Actions/CreateLeadFromEmail.cs | 19 -- .../Actions/CreateOpportunityFromEmail.cs | 19 -- .../Model/Actions/CreateOpportunityInvoice.cs | 19 -- .../Actions/CreateOpportunitySalesOrder.cs | 30 -- .../Model/Actions/CreateTaskFromEmail.cs | 19 -- .../Model/Actions/EmailChangeOrder.cs | 19 -- .../Model/Actions/EmailProFormaInvoice.cs | 19 -- .../Model/Actions/ExportCardEvent.cs | 19 -- .../FinishCountingPhysicalInventory.cs | 19 -- .../Model/Actions/HoldChangeOrder.cs | 19 -- .../Model/Actions/HoldProFormaInvoice.cs | 19 -- .../Model/Actions/HoldProject.cs | 19 -- .../Model/Actions/HoldProjectTask.cs | 19 -- .../Model/Actions/HoldProjectTemplate.cs | 19 -- .../Model/Actions/ImportEmployeeTaxes.cs | 19 -- .../Model/Actions/InviteAllEvent.cs | 19 -- .../Model/Actions/InviteEvent.cs | 19 -- .../Model/Actions/InvoiceAppointment.cs | 19 -- .../Model/Actions/InvoiceOrder.cs | 19 -- .../Model/Actions/LinkCase.cs | 26 -- .../Model/Actions/LockProjectBudget.cs | 19 -- .../Model/Actions/LockProjectCommitments.cs | 19 -- .../Model/Actions/LockSubmission.cs | 14 - .../Actions/MarkBusinessAccountAsValidated.cs | 19 -- .../Model/Actions/MarkContactAsValidated.cs | 19 -- .../Model/Actions/MarkLeadAsValidated.cs | 19 -- .../Model/Actions/Open.cs | 19 -- .../Model/Actions/OpenSalesOrder.cs | 19 -- .../Model/Actions/OpenTimeEntry.cs | 19 -- .../Model/Actions/PauseAppointment.cs | 19 -- .../Model/Actions/PrepareInvoice.cs | 19 -- .../Model/Actions/PrepareSalesInvoice.cs | 19 -- .../Actions/ProcessAllEmailProcessing.cs | 19 -- .../Model/Actions/ProcessEmail.cs | 19 -- .../Model/Actions/ProcessEmailProcessing.cs | 19 -- .../Model/Actions/PutOnHold.cs | 19 -- .../Model/Actions/PutOnHoldExpenseClaim.cs | 19 -- .../Model/Actions/PutOnHoldExpenseReceipt.cs | 19 -- .../Model/Actions/RecalcExternalTax.cs | 19 -- .../Model/Actions/RejectChangeOrder.cs | 19 -- .../Model/Actions/RejectExpenseClaim.cs | 19 -- .../Model/Actions/RejectExpenseReceipt.cs | 19 -- .../Model/Actions/RejectInvitationEvent.cs | 19 -- .../Model/Actions/RejectProFormaInvoice.cs | 19 -- .../Model/Actions/RejectProject.cs | 19 -- .../Model/Actions/ReleaseAdjustment.cs | 19 -- .../Model/Actions/ReleaseBatch.cs | 19 -- .../Model/Actions/ReleaseBill.cs | 19 -- .../Model/Actions/ReleaseCase.cs | 19 -- .../Model/Actions/ReleaseCashSale.cs | 19 -- .../Model/Actions/ReleaseChangeOrder.cs | 19 -- .../Model/Actions/ReleaseCheck.cs | 19 -- .../Model/Actions/ReleaseExpenseClaim.cs | 19 -- .../ReleaseFromCreditHoldSalesOrder.cs | 19 -- .../Model/Actions/ReleaseFromHold.cs | 19 -- .../Model/Actions/ReleaseInventoryIssue.cs | 19 -- .../Model/Actions/ReleaseInventoryReceipt.cs | 19 -- .../Model/Actions/ReleaseInvoice.cs | 19 -- .../Actions/ReleaseJournalTransaction.cs | 19 -- .../Model/Actions/ReleaseKitAssembly.cs | 19 -- .../Model/Actions/ReleasePayment.cs | 19 -- .../Model/Actions/ReleaseProFormaInvoice.cs | 19 -- .../Model/Actions/ReleasePurchaseReceipt.cs | 19 -- .../Model/Actions/ReleaseRetainage.cs | 35 --- .../Model/Actions/ReleaseSalesInvoice.cs | 19 -- .../Actions/ReleaseSalesPriceWorksheet.cs | 19 -- .../Model/Actions/ReleaseTransactions.cs | 19 -- .../Model/Actions/ReleaseTransferOrder.cs | 19 -- .../Actions/ReleaseVendorPriceWorksheet.cs | 19 -- .../Actions/RemoveChangeOrderFromHold.cs | 19 -- .../Actions/RemoveProFormaInvoiceFromHold.cs | 19 -- .../Model/Actions/ReopenAppointment.cs | 19 -- .../Model/Actions/ReopenOrder.cs | 19 -- .../Model/Actions/ReopenSalesOrder.cs | 19 -- .../Model/Actions/RestoreArchivedEmail.cs | 19 -- .../Model/Actions/RestoreDeletedEmail.cs | 19 -- .../Actions/ResumeAppointmentMenuActions.cs | 19 -- .../Model/Actions/ReverseBill.cs | 19 -- .../Model/Actions/ReverseChangeOrder.cs | 19 -- .../Model/Actions/RunProjectAllocation.cs | 19 -- .../Model/Actions/RunProjectBilling.cs | 19 -- .../Model/Actions/SalesOrderCreateReceipt.cs | 30 -- .../Model/Actions/SalesOrderCreateShipment.cs | 30 -- .../Model/Actions/SendEmail.cs | 19 -- .../Model/Actions/SetResult.cs | 26 -- .../Model/Actions/StartAppointment.cs | 19 -- .../Model/Actions/SubmitExpenseClaim.cs | 19 -- .../Model/Actions/SubmitExpenseReceipt.cs | 19 -- .../Model/Actions/SuspendProject.cs | 19 -- .../Actions/UncloseAppointmentMenuActions.cs | 19 -- .../Model/Actions/UncloseOrder.cs | 19 -- .../Model/Actions/UnlockProjectBudget.cs | 19 -- .../Model/Actions/UnlockProjectCommitments.cs | 19 -- .../Model/Actions/UpdateDiscounts.cs | 25 -- .../Model/Actions/UpdateIN.cs | 19 -- .../Actions/UpdateStandardCostNonStockItem.cs | 19 -- .../Actions/UpdateStandardCostStockItem.cs | 19 -- .../ValidateBusinessAccountAddresses.cs | 19 -- .../Model/Actions/ValidateContactAddress.cs | 19 -- .../Model/Actions/ValidateLeadAddress.cs | 19 -- .../Model/Actions/ValidateProjectBalance.cs | 19 -- .../Model/Actions/VoidCardPayment.cs | 50 --- .../Model/Actions/VoidCheck.cs | 19 -- .../Model/Actions/VoidPayment.cs | 19 -- .../Model/Activity.cs | 73 ----- .../Model/ActivityDetail.cs | 81 ----- .../Model/Address.cs | 39 --- .../Model/AppAttributes.cs | 30 -- .../Model/AppDetails.cs | 192 ------------ .../Model/AppFinancialSettings.cs | 45 --- .../Model/AppLogs.cs | 99 ------ .../Model/AppOtherInformation.cs | 51 --- .../Model/AppPrepayments.cs | 54 ---- .../Model/AppProfitability.cs | 69 ---- .../Model/AppResourceEquipment.cs | 33 -- .../Model/AppStaff.cs | 69 ---- .../Model/AppTaxDetails.cs | 54 ---- .../Model/AppTotals.cs | 66 ---- .../Model/ApplicableWage.cs | 33 -- .../Model/Appointment.cs | 169 ---------- .../Model/Approval.cs | 39 --- .../Model/Attribute.cs | 24 -- .../Model/AttributeDefinition.cs | 49 --- .../Model/AttributeDefinitionValue.cs | 30 -- .../Model/AttributeValue.cs | 36 --- .../Model/BCRoleAssignment.cs | 39 --- .../Model/BatchDeductionOrBenefitDetail.cs | 57 ---- .../Model/BatchEarningDetail.cs | 99 ------ .../Model/BatchOvertimeRules.cs | 24 -- .../Model/BatchOvertimeRulesDetail.cs | 54 ---- .../Model/BenefitIncreasingApplWage.cs | 24 -- .../Model/BenefitIncreasingApplWageDetail.cs | 27 -- .../Model/BigCommerceStores.cs | 55 ---- .../Acumatica.ISVCB_23.200.001/Model/Bill.cs | 97 ------ .../Model/BillApplicationDetail.cs | 33 -- .../Model/BillDetail.cs | 87 ------ .../Model/BillTaxDetail.cs | 30 -- .../Model/BillToSettings.cs | 33 -- .../Model/BoxStockItem.cs | 39 --- .../Model/Budget.cs | 49 --- .../Model/BudgetDetail.cs | 96 ------ .../Model/BusinessAccount.cs | 142 --------- .../Model/BusinessAccountCaseDetail.cs | 57 ---- .../BusinessAccountClassAttributeDetail.cs | 36 --- .../Model/BusinessAccountContact.cs | 48 --- .../Model/BusinessAccountContract.cs | 39 --- .../BusinessAccountDefaultLocationSetting.cs | 66 ---- .../Model/BusinessAccountLocation.cs | 51 --- .../Model/BusinessAccountMainContact.cs | 45 --- .../Model/BusinessAccountOpportunityDetail.cs | 54 ---- .../Model/BusinessAccountOrder.cs | 60 ---- ...BusinessAccountPaymentInstructionDetail.cs | 33 -- .../Model/BusinessAccountShippingContact.cs | 39 --- .../Model/CalendarSettings.cs | 102 ------ .../Model/CampaignDetail.cs | 30 -- .../Model/Carrier.cs | 61 ---- .../Model/CarrierCustomerAccount.cs | 39 --- .../Model/CarrierPluginParameter.cs | 27 -- .../Acumatica.ISVCB_23.200.001/Model/Case.cs | 142 --------- .../Model/CaseDetail.cs | 54 ---- .../Model/CaseRelatedCase.cs | 39 --- .../Model/CashSale.cs | 73 ----- .../Model/CashSaleDetail.cs | 54 ---- .../Model/CategoryStockItem.cs | 21 -- .../Model/ChangeOrder.cs | 100 ------ .../Model/ChangeOrderClass.cs | 46 --- .../Model/ChangeOrderCommitment.cs | 87 ------ .../Model/ChangeOrderCostBudget.cs | 108 ------- .../Model/ChangeOrderRevenueBudget.cs | 63 ---- .../Acumatica.ISVCB_23.200.001/Model/Check.cs | 70 ----- .../Model/CheckDetail.cs | 36 --- .../Model/CheckHistoryDetail.cs | 39 --- .../Model/Commissions.cs | 24 -- .../Model/CompaniesStructure.cs | 25 -- .../Model/CompaniesStructureDetail.cs | 45 --- .../Model/CompanyFinancialPeriod.cs | 37 --- .../Model/CompensationDetail.cs | 42 --- .../Model/Contact.cs | 229 -------------- .../Model/ContactDuplicateDetail.cs | 42 --- .../Model/ContactNotification.cs | 48 --- .../Model/ContactRoles.cs | 30 -- .../Model/ContactUserInfo.cs | 36 --- .../Model/ContractUsage.cs | 34 -- .../Model/ContractUsageTransactionDetail.cs | 57 ---- .../Model/CostCode.cs | 31 -- .../Model/CreditCardProcessingDetail.cs | 24 -- .../Model/CreditCardTransactionDetail.cs | 45 --- .../Model/CreditVerificationRules.cs | 39 --- .../Model/Currency.cs | 46 --- .../Model/Customer.cs | 214 ------------- .../Model/CustomerClass.cs | 205 ------------ .../Model/CustomerContact.cs | 27 -- .../Model/CustomerLocation.cs | 121 ------- .../Model/CustomerPaymentMethod.cs | 58 ---- .../Model/CustomerPaymentMethodDetail.cs | 24 -- .../Model/CustomerPriceClass.cs | 37 --- .../Model/CustomerSalesPerson.cs | 36 --- .../Model/DeductionBenefitCode.cs | 88 ------ .../Model/DeductionBenefitWCCCode.cs | 24 -- .../Model/DeductionDecreasingApplWage.cs | 24 -- .../DeductionDecreasingApplWageDetail.cs | 27 -- .../Model/DeductionOrBenefitCodeGLAccounts.cs | 36 --- .../Model/DeductionOrBenefitTaxDetailCA.cs | 30 -- .../Model/DeductionOrBenefitTaxDetailUS.cs | 27 -- .../Model/DeductionsAndBenefits.cs | 30 -- .../Model/DefaultTaskForGLAccount.cs | 24 -- .../Model/DirectDepositDetail.cs | 45 --- .../Model/Discount.cs | 79 ----- .../Model/DiscountBreakpointDetail.cs | 72 ----- .../Model/DiscountCode.cs | 40 --- .../Model/DiscountCustomerDetail.cs | 24 -- .../DiscountCustomerPriceClassesDetail.cs | 21 -- .../Model/DiscountItemDetail.cs | 24 -- .../Model/DiscountItemPriceClassesDetail.cs | 21 -- .../Model/DiscountWarehouseDetail.cs | 21 -- .../Model/DocContact.cs | 30 -- .../Model/DuplicateDetail.cs | 51 --- .../Model/EarningCodeGLAccounts.cs | 42 --- .../Model/EarningCodeProjectSettings.cs | 27 -- .../Model/EarningCodeTaxDetailCA.cs | 27 -- .../Model/EarningCodeTaxDetailUS.cs | 24 -- .../Model/EarningIncreasingApplWage.cs | 24 -- .../Model/EarningIncreasingApplWageDetail.cs | 30 -- .../Model/EarningTypeCode.cs | 64 ---- .../Model/EducatedResources.cs | 76 ----- .../Model/EducatedResourcesDetail.cs | 150 --------- .../Acumatica.ISVCB_23.200.001/Model/Email.cs | 97 ------ .../Model/EmailProcessing.cs | 43 --- .../Model/EmailProcessingRow.cs | 42 --- .../Model/Employee.cs | 52 --- .../Model/EmployeeClassPTOBankDefault.cs | 60 ---- .../Model/EmployeeClassWorkLocation.cs | 30 -- .../Model/EmployeeDeduction.cs | 42 --- .../Model/EmployeeDeductionOrBenefitDetail.cs | 75 ----- .../Model/EmployeeDelegate.cs | 36 --- .../Model/EmployeeFinancialSettings.cs | 57 ---- .../Model/EmployeeGLAccounts.cs | 72 ----- .../Model/EmployeeGeneralInfo.cs | 84 ----- .../Model/EmployeePaidTimeOff.cs | 24 -- .../Model/EmployeePaidTimeOffDetail.cs | 81 ----- .../Model/EmployeePaycheckEarningDetail.cs | 84 ----- .../Model/EmployeePaycheckEarnings.cs | 36 --- .../Model/EmployeePaycheckSummary.cs | 45 --- .../Model/EmployeePayrollClass.cs | 37 --- .../Model/EmployeePayrollClassDefaults.cs | 69 ---- .../Model/EmployeePayrollSettings.cs | 85 ----- .../Model/EmployeeSettings.cs | 66 ---- .../Model/EmployeeTaxDetail.cs | 33 -- .../Model/EmployeeWorkLocationDetail.cs | 30 -- .../Model/EmployeeWorkLocations.cs | 30 -- .../Model/EmployerContribution.cs | 51 --- .../Model/EmployerTaxesIncreasingApplWage.cs | 24 -- .../EmployerTaxesIncreasingApplWageDetail.cs | 30 -- .../Model/EmploymentDates.cs | 24 -- .../Model/EmploymentHistoryRecord.cs | 45 --- .../Model/EmploymentRecord.cs | 45 --- .../Acumatica.ISVCB_23.200.001/Model/Event.cs | 91 ------ .../Model/EventAttendee.cs | 42 --- .../Model/EventTimeActivity.cs | 30 -- .../Model/ExpenseClaim.cs | 88 ------ .../Model/ExpenseClaimAPDocument.cs | 33 -- .../Model/ExpenseClaimDetails.cs | 111 ------- .../Model/ExpenseClaimFinancialDetail.cs | 30 -- .../Model/ExpenseClaimTaxDetail.cs | 51 --- .../Model/ExpenseReceipt.cs | 55 ---- .../Model/ExpenseReceiptDetails.cs | 96 ------ .../Model/ExpenseReceiptTaxDetails.cs | 51 --- .../Model/ExternalCommitment.cs | 85 ----- .../Model/FOBPoint.cs | 28 -- .../Model/FinancialPeriod.cs | 43 --- .../Model/FinancialPeriodDetail.cs | 57 ---- .../Model/FinancialSettings.cs | 60 ---- .../Model/FinancialYear.cs | 70 ----- .../Model/FinancialYearPeriodDetail.cs | 30 -- .../Model/GarnishmentDetails.cs | 39 --- .../Model/ISVContacts.cs | 55 ---- .../Model/ISVContactsDetail.cs | 45 --- .../Model/ISVSolution.cs | 61 ---- .../Model/InventoryAdjustment.cs | 52 --- .../Model/InventoryAdjustmentDetail.cs | 72 ----- .../Model/InventoryAllocationInquiry.cs | 112 ------- .../Model/InventoryAllocationRow.cs | 42 --- .../Model/InventoryFileUrls.cs | 27 -- .../Model/InventoryIssue.cs | 61 ---- .../Model/InventoryIssueDetail.cs | 87 ------ .../Model/InventoryIssueDetailAllocation.cs | 42 --- .../Model/InventoryItemCrossReference.cs | 36 --- .../Model/InventoryItemUOMConversion.cs | 30 -- .../Model/InventoryQuantityAvailable.cs | 31 -- .../Model/InventoryQuantityAvailableDetail.cs | 27 -- .../Model/InventoryReceipt.cs | 61 ---- .../Model/InventoryReceiptDetail.cs | 75 ----- .../Model/InventoryReceiptDetailAllocation.cs | 42 --- .../Model/InventorySummaryInquiry.cs | 40 --- .../Model/InventorySummaryRow.cs | 54 ---- .../Model/Invoice.cs | 115 ------- .../Model/InvoiceApplicationsCreditMemo.cs | 45 --- .../Model/InvoiceApplicationsDefault.cs | 39 --- .../Model/InvoiceDetail.cs | 72 ----- .../Model/InvoiceDiscountDetail.cs | 60 ---- .../Model/InvoiceTaxDetail.cs | 30 -- .../Model/ItemClass.cs | 76 ----- .../Model/ItemClassAtrribute.cs | 27 -- .../Model/ItemPriceClassesDetails.cs | 21 -- .../Model/ItemSalesCategory.cs | 46 --- .../Model/ItemSalesCategoryMember.cs | 30 -- .../Model/ItemWarehouse.cs | 124 -------- .../Model/ItemsDetails.cs | 24 -- .../Model/JournalTransaction.cs | 61 ---- .../Model/JournalTransactionDetail.cs | 72 ----- .../Model/KitAssembly.cs | 79 ----- .../Model/KitAssemblyAllocation.cs | 42 --- .../Model/KitAssemblyNonStockComponent.cs | 39 --- .../Model/KitAssemblyStockComponent.cs | 48 --- .../KitAssemblyStockComponentAllocation.cs | 51 --- .../Model/KitNonStockComponent.cs | 36 --- .../Model/KitSpecification.cs | 46 --- .../Model/KitStockComponent.cs | 39 --- .../Model/LaborCostRate.cs | 46 --- .../Model/LaborRate.cs | 66 ---- .../Acumatica.ISVCB_23.200.001/Model/Lead.cs | 184 ----------- .../Model/Ledger.cs | 46 --- .../Model/LedgerBranches.cs | 30 -- .../Model/LedgerCompanies.cs | 30 -- .../Model/LotSerialClass.cs | 43 --- .../Model/LotSerialClassSegment.cs | 27 -- .../Model/MarketingListDetail.cs | 36 --- .../Model/MatrixItems.cs | 36 --- .../Model/NonStockItem.cs | 202 ------------ .../Model/NonStockItemSalesCategory.cs | 21 -- .../Model/NonStockItemVendorDetail.cs | 27 -- .../Model/Opportunity.cs | 148 --------- .../Model/OpportunityContact.cs | 66 ---- .../Model/OpportunityDetail.cs | 48 --- .../Model/OpportunityDiscount.cs | 54 ---- .../Model/OpportunityProduct.cs | 75 ----- .../Model/OpportunityTaxDetail.cs | 48 --- .../Model/OrderRisks.cs | 27 -- .../Model/PTOBank.cs | 82 ----- .../Model/PTOBankGLAccounts.cs | 36 --- .../Model/PayGroup.cs | 91 ------ .../Model/PayPeriod.cs | 43 --- .../Model/Payment.cs | 121 ------- .../Model/PaymentApplicationHistoryDetail.cs | 90 ------ .../Model/PaymentCharge.cs | 42 --- .../Model/PaymentDetail.cs | 45 --- .../Model/PaymentMethod.cs | 67 ---- .../PaymentMethodAllowedCashAccountDetail.cs | 66 ---- .../PaymentMethodProcessingCenterDetail.cs | 30 -- .../Model/PaymentOrderDetail.cs | 27 -- .../Model/PaymentPeriod.cs | 42 --- .../Model/PayrollBatch.cs | 76 ----- .../Model/PayrollUnionLocal.cs | 46 --- .../Model/PayrollWCCCode.cs | 28 -- .../Model/PhysicalInventoryCount.cs | 40 --- .../Model/PhysicalInventoryCountDetail.cs | 45 --- .../Model/PhysicalInventoryReview.cs | 55 ---- .../Model/PhysicalInventoryReviewDetail.cs | 63 ---- .../Model/ProFormaFinancialDetails.cs | 42 --- .../Model/ProFormaInvoice.cs | 97 ------ .../Model/ProFormaTaxDetail.cs | 36 --- .../Model/ProgressBilling.cs | 78 ----- .../Model/Project.cs | 103 ------ .../Model/ProjectActivity.cs | 54 ---- .../Model/ProjectAddress.cs | 39 --- .../Model/ProjectBalance.cs | 60 ---- .../ProjectBillingAndAllocationSettings.cs | 57 ---- .../Model/ProjectBudget.cs | 157 ---------- .../Model/ProjectEmployee.cs | 27 -- .../Model/ProjectEquipment.cs | 45 --- .../Model/ProjectGLAccount.cs | 39 --- .../Model/ProjectProFormaDetails.cs | 78 ----- .../Model/ProjectProperties.cs | 69 ---- .../Model/ProjectRetainage.cs | 45 --- .../Model/ProjectTask.cs | 64 ---- ...ProjectTaskBillingAndAllocationSettings.cs | 45 --- .../Model/ProjectTaskDefaultValues.cs | 39 --- .../Model/ProjectTaskProperties.cs | 39 --- .../Model/ProjectTaskToCRMLink.cs | 21 -- .../Model/ProjectTemplate.cs | 55 ---- .../Model/ProjectTemplateTask.cs | 49 --- .../Model/ProjectTemplateTaskProperties.cs | 30 -- .../Model/ProjectTransaction.cs | 58 ---- .../Model/ProjectTransactionDetail.cs | 120 ------- .../Model/ProjectUnionLocal.cs | 24 -- .../Model/PurchaseOrder.cs | 112 ------- .../Model/PurchaseOrderDetail.cs | 123 -------- .../Model/PurchaseOrderTaxDetail.cs | 36 --- .../Model/PurchaseReceipt.cs | 103 ------ .../Model/PurchaseReceiptDetail.cs | 120 ------- .../Model/PurchaseReceiptDetailAllocation.cs | 39 --- .../Model/PurchaseSettings.cs | 27 -- .../Model/PurchasingDetail.cs | 30 -- .../Model/RelationDetail.cs | 57 ---- .../Model/ReminderDetail.cs | 27 -- .../Model/ReplenishmentParameterStockItem.cs | 66 ---- .../Model/ReportingGroup.cs | 27 -- .../Model/RepositoryLines.cs | 63 ---- .../Model/SalesInvoice.cs | 121 ------- .../SalesInvoiceApplicationCreditMemo.cs | 51 --- .../Model/SalesInvoiceApplicationInvoice.cs | 63 ---- .../Model/SalesInvoiceCommissions.cs | 27 -- .../Model/SalesInvoiceDetail.cs | 108 ------- .../Model/SalesInvoiceDiscountDetails.cs | 63 ---- .../Model/SalesInvoiceFinancialDetails.cs | 27 -- .../Model/SalesInvoiceFreightDetail.cs | 48 --- .../Model/SalesInvoiceSalesPersonDetail.cs | 30 -- .../Model/SalesInvoiceTaxDetail.cs | 27 -- .../Model/SalesOrder.cs | 229 -------------- .../SalesOrderCreditCardTransactionDetail.cs | 39 --- .../Model/SalesOrderDetail.cs | 201 ------------ .../Model/SalesOrderDetailAllocation.cs | 78 ----- .../Model/SalesOrderPayment.cs | 96 ------ .../Model/SalesOrderShipment.cs | 63 ---- .../Model/SalesOrdersDiscountDetails.cs | 57 ---- .../Model/SalesPersonDetail.cs | 30 -- .../Model/SalesPriceDetail.cs | 72 ----- .../Model/SalesPriceWorksheet.cs | 52 --- .../Model/SalesPricesInquiry.cs | 58 ---- .../Model/SalesPricesWorksheetDetail.cs | 54 ---- .../Model/Salesperson.cs | 43 --- .../Model/ServiceOrder.cs | 148 --------- .../Model/SettingsForPR.cs | 27 -- .../Model/ShipToSettings.cs | 33 -- .../Model/ShipVia.cs | 58 ---- .../Model/ShipViaFreightRate.cs | 33 -- .../Model/Shipment.cs | 163 ---------- .../Model/ShipmentDetail.cs | 75 ----- .../Model/ShipmentDetailAllocation.cs | 51 --- .../Model/ShipmentOrderDetail.cs | 54 ---- .../Model/ShipmentPackage.cs | 69 ---- .../Model/ShipmentPackageDetail.cs | 42 --- .../Model/ShippingBox.cs | 61 ---- .../Model/ShippingInstructions.cs | 45 --- .../Model/ShippingSettings.cs | 96 ------ .../Model/ShippingTerm.cs | 31 -- .../Model/ShippingTermDetail.cs | 36 --- .../Model/ShippingZones.cs | 28 -- .../Model/ShopForRates.cs | 27 -- .../Model/ShopifyStore.cs | 49 --- .../Model/SolutionFile.cs | 27 -- .../Model/SolutionSubmission.cs | 61 ---- .../Model/SrvOrdAddress.cs | 36 --- .../Model/SrvOrdAppointments.cs | 42 --- .../Model/SrvOrdAttributes.cs | 30 -- .../Model/SrvOrdContact.cs | 33 -- .../Model/SrvOrdContractInfo.cs | 24 -- .../Model/SrvOrdDefaultStaff.cs | 45 --- .../Model/SrvOrdDetails.cs | 192 ------------ .../Model/SrvOrdFinancialDetails.cs | 45 --- .../Model/SrvOrdOtherInformation.cs | 36 --- .../Model/SrvOrdPrepayments.cs | 54 ---- .../Model/SrvOrdTaxDetails.cs | 54 ---- .../Model/SrvOrdTotals.cs | 57 ---- .../Model/StockItem.cs | 295 ------------------ .../Model/StockItemVendorDetail.cs | 75 ----- .../Model/StockItemWarehouseDetail.cs | 87 ------ .../Model/StorageDetail.cs | 39 --- .../Model/StorageDetailByLocation.cs | 57 ---- .../Model/StorageDetailsByLocationInquiry.cs | 31 -- .../Model/StorageDetailsInquiry.cs | 28 -- .../Model/Subaccount.cs | 37 --- .../Model/Subcontract.cs | 127 -------- .../Model/SubcontractDetail.cs | 120 ------- .../Model/SubcontractTaxDetail.cs | 39 --- .../Model/SubcontractVendorAddressInfo.cs | 39 --- .../Model/SubcontractVendorContactInfo.cs | 33 -- .../Acumatica.ISVCB_23.200.001/Model/Task.cs | 97 ------ .../Model/TaskRelatedTask.cs | 36 --- .../Model/TaskTimeActivity.cs | 39 --- .../Acumatica.ISVCB_23.200.001/Model/Tax.cs | 97 ------ .../Model/TaxAndReportingCA.cs | 30 -- .../Model/TaxAndReportingUS.cs | 30 -- .../Model/TaxCategory.cs | 43 --- .../Model/TaxCategoryTaxDetail.cs | 36 --- .../Model/TaxCodeSetting.cs | 39 --- .../Model/TaxDetail.cs | 60 ---- .../Model/TaxReportingSettings.cs | 28 -- .../Model/TaxScheduleDetail.cs | 42 --- .../Model/TaxSettingDetail.cs | 54 ---- .../Model/TaxSettingsCA.cs | 24 -- .../Model/TaxSettingsUS.cs | 30 -- .../Model/TaxZone.cs | 37 --- .../Model/TaxZoneApplicableTaxDetail.cs | 21 -- .../Model/TaxZoneDetail.cs | 30 -- .../Model/TaxesDecreasingApplWage.cs | 24 -- .../Model/TaxesDecreasingApplWageDetail.cs | 30 -- .../Model/TechnicalValidationSetup.cs | 37 --- .../Model/TemplateItemVendorDetail.cs | 27 -- .../Model/TemplateItems.cs | 121 ------- .../Model/TimeActivity.cs | 60 ---- .../Model/TimeAndMaterial.cs | 90 ------ .../Model/TimeEntry.cs | 91 ------ .../Model/Totals.cs | 66 ---- .../Model/TransferOrder.cs | 61 ---- .../Model/TransferOrderDetail.cs | 81 ----- .../Model/TransferOrderDetailAllocation.cs | 33 -- .../Model/UnionDeductionOrBenefitDetail.cs | 54 ---- .../Model/UnionEarningRateDetail.cs | 33 -- .../Model/UnionLocal.cs | 31 -- .../Model/UnitsOfMeasure.cs | 40 --- .../Model/Vendor.cs | 187 ----------- .../Model/VendorClass.cs | 37 --- .../Model/VendorPriceDetail.cs | 60 ---- .../Model/VendorPriceWorksheet.cs | 55 ---- .../Model/VendorPriceWorksheetDetail.cs | 51 --- .../Model/VendorPricesInquiry.cs | 40 --- .../Model/VisibilitySettings.cs | 48 --- .../Model/WCCCode.cs | 45 --- .../Model/WCCCodeCostCodeSource.cs | 33 -- .../Model/WCCCodeLaborItemSource.cs | 27 -- .../Model/WCCCodeMaxInsurableWage.cs | 36 --- .../Model/WCCCodeMaxInsurableWageDetail.cs | 27 -- .../Model/WCCCodeProjectSource.cs | 33 -- .../Model/WCCCodeRate.cs | 54 ---- .../Model/WCCCodeRateDetail.cs | 45 --- .../Model/Warehouse.cs | 127 -------- .../Model/WarehouseLocation.cs | 42 --- .../Model/WorkCalendar.cs | 37 --- .../Model/WorkCalendarExceptionDetail.cs | 39 --- .../Model/WorkClassCompensationCode.cs | 37 --- .../Model/WorkLocation.cs | 40 --- Loggers/ConsoleRequestLogger.cs | 1 - 744 files changed, 72 insertions(+), 30535 deletions(-) delete mode 100644 Acumatica REST API Console Application/OAuthHybridExample.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs delete mode 100644 Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs diff --git a/Acumatica REST API Client.sln b/Acumatica REST API Client.sln index bfeb2e07e..d3b46670e 100644 --- a/Acumatica REST API Client.sln +++ b/Acumatica REST API Client.sln @@ -61,8 +61,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acumatica.Default_25.200.00 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acumatica.MANUFACTURING_25.100.001", "Endpoints\Acumatica.MANUFACTURING_25.100.001\Acumatica.MANUFACTURING_25.100.001.csproj", "{000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Acumatica.ISVCB_23.200.001", "Endpoints\Acumatica.ISVCB_23.200.001\Acumatica.ISVCB_23.200.001.csproj", "{DD2F0B30-91FD-F055-6417-FFD155C33955}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -177,10 +175,6 @@ Global {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}.Debug|Any CPU.Build.0 = Debug|Any CPU {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}.Release|Any CPU.ActiveCfg = Release|Any CPU {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D}.Release|Any CPU.Build.0 = Release|Any CPU - {DD2F0B30-91FD-F055-6417-FFD155C33955}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DD2F0B30-91FD-F055-6417-FFD155C33955}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DD2F0B30-91FD-F055-6417-FFD155C33955}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DD2F0B30-91FD-F055-6417-FFD155C33955}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -207,7 +201,6 @@ Global {DF48A00D-EBFF-4FB6-8062-9172120A36C3} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} {68FFDFEA-F706-FB59-C767-F8A2ADBC7FCA} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} {000CB9F3-E5B5-1109-B11D-7FC66ED0F20D} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} - {DD2F0B30-91FD-F055-6417-FFD155C33955} = {F0B2BD45-79AE-43AF-B737-3018CD95C6E3} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {A3A45447-0EDA-45D2-94CE-C3BFFBFE2717} diff --git a/Acumatica REST API Console Application/OAuthAuthCodeExample.cs b/Acumatica REST API Console Application/OAuthAuthCodeExample.cs index d8c73b01b..65e88badd 100644 --- a/Acumatica REST API Console Application/OAuthAuthCodeExample.cs +++ b/Acumatica REST API Console Application/OAuthAuthCodeExample.cs @@ -29,7 +29,7 @@ public static void Example(string siteURL, string clientSecret, string clientID, clientID, clientSecret, redirectUrl, - OAuthScope.API | OAuthScope.OfflineAccess + OAuthScope.API //| OAuthScope.OfflineAccess ); OpenUrl(url); var code = ReadCodeFromRedirectURL(redirectUrl); diff --git a/Acumatica REST API Console Application/OAuthHybridExample.cs b/Acumatica REST API Console Application/OAuthHybridExample.cs deleted file mode 100644 index baac54249..000000000 --- a/Acumatica REST API Console Application/OAuthHybridExample.cs +++ /dev/null @@ -1,196 +0,0 @@ -using Acumatica.Default_24_200_001.Model; -using Acumatica.RESTClient.AuthApi.Model; -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.Loggers; -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Net; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using System.Web; -using static Acumatica.RESTClient.AuthApi.AuthApiExtensions; -using static Acumatica.RESTClient.ContractBasedApi.ApiClientExtensions; -using Task = System.Threading.Tasks.Task; - -namespace AcumaticaRestApiExample -{ - internal class OAuthHybridExample - { - public static void Example(string siteURL, string clientSecret, string clientID, string redirectUrl) - { - var client = new ApiClient(siteURL, - requestInterceptor: FileRequestLogger.LogRequest - // ,responseInterceptor: RequestLogger.LogResponse - , ignoreSslErrors: true // this is here to allow testing with self-signed certificates - ); - bool usePost = true; - var url = client.Authorize( - clientID, - clientSecret, - redirectUrl, - OAuthScope.API | OAuthScope.OfflineAccess | OAuthScope.OpenID, - ResponseType.IdToken,// | ResponseType.Token, - usePost, - Guid.NewGuid().ToString() - ); - OpenUrl(url); - //Listen(redirectUrl, 10, new CancellationToken()).ConfigureAwait(false).GetAwaiter().GetResult(); - - var code = ReadCodeFromRedirectURL(redirectUrl, usePost); - - client.ReceiveAccessTokenAuthCode( - clientID, - clientSecret, - redirectUrl, - code); - - foreach (var account in client.GetList(top: 5)) - { - Console.WriteLine(account.Description.Value); - } - client.TryLogout(); - - foreach (var soorder in client.GetList(top: 5)) - { - Console.WriteLine(soorder.Description.Value); - } - client.TryLogout(); - - } - - private static string ReadCodeFromRedirectURL(string url, bool usePost) - { - HttpListener listener = new HttpListener(); - listener.Prefixes.Add(url); - try - { - listener.Start(); - string purecode = string.Empty; - - HttpListenerContext context = listener.GetContext(); - HttpListenerRequest request = context.Request; - if(usePost){ - using (System.IO.Stream body = context.Request.InputStream) // here we have data - { - using (var reader = new System.IO.StreamReader(body, context.Request.ContentEncoding)) - { - var values = HttpUtility.ParseQueryString(reader.ReadToEnd()); - Console.WriteLine(); - Token token = new Token(); - - token.Access_token = values.Get("access_token"); - token.Expires_in = values.Get("expires_in"); - token.Token_type = values.Get("token_type"); - token.Scope = values.Get("scope"); - purecode = values.Get("code") ?? string.Empty; - } - } - } - else - { - var rawUrl = request.RawUrl; - const string codeParametrIdentifier = "?code="; - var codewithgarbage = rawUrl.Substring(rawUrl.IndexOf(codeParametrIdentifier) + codeParametrIdentifier.Length); - purecode = codewithgarbage.Substring(0, codewithgarbage.IndexOf("&")); - } - return purecode; - } - finally - { - listener.Stop(); - } - } - - //public static async Task Listen(string prefix, int maxConcurrentRequests, CancellationToken token) - //{ - // HttpListener listener = new HttpListener(); - // prefix = prefix.Substring(0, prefix.LastIndexOf("/") + 1); - // listener.Prefixes.Add(prefix); - // listener.Start(); - - // var requests = new HashSet(); - // for (int i = 0; i < maxConcurrentRequests; i++) - // requests.Add(listener.GetContextAsync()); - - // while (!token.IsCancellationRequested) - // { - // Task t = await Task.WhenAny(requests); - // requests.Remove(t); - - // if (t is Task) - // { - // var context = (t as Task).Result; - // requests.Add(ProcessRequestAsync(context)); - // //Console.WriteLine(context.Request.RawUrl); - // //context.Response.KeepAlive = false; - // requests.Add(listener.GetContextAsync()); - // context.Response.Close(); - // } - // } - //} - - //public static async Task ProcessRequestAsync(HttpListenerContext context) - //{ - // // context.Response.KeepAlive = false; - // context.Response.KeepAlive = false; - // Console.WriteLine(context.Request.RawUrl); - // Console.WriteLine(context.Request.QueryString); - // if (context.Request.HasEntityBody) - // { - - // using (System.IO.Stream body = context.Request.InputStream) // here we have data - // { - // using (var reader = new System.IO.StreamReader(body, context.Request.ContentEncoding)) - // { - // Console.WriteLine(reader.ReadToEnd()); - // } - // } - // } - // //Send response to the browser. - // HttpListenerResponse response = context.Response; - // string responseString = string.Format($"Authrization Success: {DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")}"); - // byte[] buffer = Encoding.UTF8.GetBytes(responseString); - // response.ContentLength64 = buffer.Length; - - // using (Stream responseOutput = response.OutputStream) - // { - // await responseOutput.WriteAsync(buffer, 0, buffer.Length); - // responseOutput.Close(); - // } - // context.Response.Close(); - //} - - private static void OpenUrl(string url) - { - try - { - Process.Start(url); - } - catch - { - // hack because of this: https://github.com/dotnet/corefx/issues/10361 - if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) - { - Process.Start(new ProcessStartInfo(url) { UseShellExecute = true }); - } - else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) - { - Process.Start("xdg-open", url); - } - else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) - { - Process.Start("open", url); - } - else - { - throw; - } - } - } - } -} diff --git a/Acumatica REST API Console Application/Program.cs b/Acumatica REST API Console Application/Program.cs index 5feda618d..419ac3ef2 100644 --- a/Acumatica REST API Console Application/Program.cs +++ b/Acumatica REST API Console Application/Program.cs @@ -6,10 +6,10 @@ namespace AcumaticaRestApiExample { class Program { - const string SiteURL = "https://localhost/26R1/"; + const string SiteURL = "https://localhost/25r200/"; const string Username = "admin"; const string Password = "123"; - const string Tenant = "Company"; + const string Tenant = null;//"Company"; const string Branch = null; const string Locale = null; # region Resource Owner Password Credentials flow @@ -17,68 +17,62 @@ class Program private const string ClientIDROPC = "7475716F-D402-EAB6-F8F8-893C9B1EEDF4@Company"; #endregion # region AuthorizationCode flow - private const string ClientSecretAC = "KzK82VVdqggy4PHaOHMTNw"; - private const string ClientIDAC = "2DC9435C-A596-959E-3E38-8EB84725F089@Company"; + private const string ClientSecretAC = "ZJ7sGGDZWOJyJzSpbRjrpg"; + private const string ClientIDAC = "9737F884-8405-42FB-7303-7F1DA7BE8CA7@Company"; #endregion const string RedirectUrl = "https://localhost/test/"; static async Task Main(string[] args) { - //Console.WriteLine("Report example"); - //Console.WriteLine("----------------------------------------"); - //RESTExample.TestReportDownload(SiteURL, Username, Password, Tenant, Branch, Locale); - - //Console.WriteLine("REST API example"); - //Console.WriteLine("----------------------------------------"); - //RESTExample.TestFullSOProcess(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("----------------------------------------"); - //RESTExample.TestFileUpload(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("----------------------------------------"); - //RESTExample.TestShipmentRetrieval(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("----------------------------------------"); - //RESTExample.CreateAndReleaseAPBill(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("----------------------------------------"); - //RESTExample.ReadStockItemsWithTranslations(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("----------------------------------------"); - //RESTExample.TryToCreateARInvoiceAndFail(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("\r\nReady to continue..."); - //Console.ReadLine(); + Console.WriteLine("Report example"); + Console.WriteLine("----------------------------------------"); + RESTExample.TestReportDownload(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("REST API (Extended Endpoint) example"); - //Console.WriteLine("----------------------------------------"); - //ExtendedEndpointExample.ExampleMethod(SiteURL, Username, Password, Tenant, Branch, Locale); - //Console.WriteLine("\r\nReady to continue..."); - //Console.ReadLine(); + Console.WriteLine("REST API example"); + Console.WriteLine("----------------------------------------"); + RESTExample.TestFullSOProcess(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("----------------------------------------"); + RESTExample.TestFileUpload(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("----------------------------------------"); + RESTExample.TestShipmentRetrieval(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("----------------------------------------"); + RESTExample.CreateAndReleaseAPBill(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("----------------------------------------"); + RESTExample.ReadStockItemsWithTranslations(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("----------------------------------------"); + RESTExample.TryToCreateARInvoiceAndFail(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("\r\nReady to continue..."); + Console.ReadLine(); - //Console.WriteLine("OData GI example"); - //Console.WriteLine("----------------------------------------"); - //ODataExample.ODataGetGI(SiteURL, Username, Password, Tenant); - //ODataExample.ODataGetGINewUrl(SiteURL, Username, Password, Tenant); - //Console.WriteLine("Ready to continue..."); - //Console.ReadLine(); + Console.WriteLine("REST API (Extended Endpoint) example"); + Console.WriteLine("----------------------------------------"); + ExtendedEndpointExample.ExampleMethod(SiteURL, Username, Password, Tenant, Branch, Locale); + Console.WriteLine("\r\nReady to continue..."); + Console.ReadLine(); - //Console.WriteLine("OData DAC example"); - //Console.WriteLine("----------------------------------------"); - //ODataExample.ODataGetDAC(SiteURL, Username, Password, Tenant); - //ODataExample.ODataGetDACNewUrl(SiteURL, Username, Password, Tenant); - //Console.WriteLine("Ready to continue..."); - //Console.ReadLine(); + Console.WriteLine("OData GI example"); + Console.WriteLine("----------------------------------------"); + ODataExample.ODataGetGI(SiteURL, Username, Password, Tenant); + ODataExample.ODataGetGINewUrl(SiteURL, Username, Password, Tenant); + Console.WriteLine("Ready to continue..."); + Console.ReadLine(); - //Console.WriteLine("OData OAuth 2.0 (Resource Owner Password Credentials flow) example"); - //Console.WriteLine("----------------------------------------"); - //ODataExample.OauthExample(SiteURL, Username, Password, ClientSecretROPC, ClientIDROPC, Tenant); - //Console.WriteLine("Ready to continue..."); - //Console.ReadLine(); + Console.WriteLine("OData DAC example"); + Console.WriteLine("----------------------------------------"); + ODataExample.ODataGetDAC(SiteURL, Username, Password, Tenant); + ODataExample.ODataGetDACNewUrl(SiteURL, Username, Password, Tenant); + Console.WriteLine("Ready to continue..."); + Console.ReadLine(); - //Console.WriteLine("OAuth 2.0 (Authorization Code flow)"); - //Console.WriteLine("----------------------------------------"); - //OAuthAuthCodeExample.Example(SiteURL, ClientSecretAC, ClientIDAC, RedirectUrl); - //Console.WriteLine("Ready to continue..."); - //Console.ReadLine(); + Console.WriteLine("OData OAuth 2.0 (Resource Owner Password Credentials flow) example"); + Console.WriteLine("----------------------------------------"); + ODataExample.OauthExample(SiteURL, Username, Password, ClientSecretROPC, ClientIDROPC, Tenant); + Console.WriteLine("Ready to continue..."); + Console.ReadLine(); - Console.WriteLine("OAuth 2.0 (Hybrid flow)"); + Console.WriteLine("OAuth 2.0 (Authorization Code flow)"); Console.WriteLine("----------------------------------------"); - OAuthHybridExample.Example(SiteURL, ClientSecretAC, ClientIDAC, RedirectUrl); + OAuthAuthCodeExample.Example(SiteURL, ClientSecretAC, ClientIDAC, RedirectUrl); Console.WriteLine("Ready to continue..."); Console.ReadLine(); //await TestPerformanceAsync(); diff --git a/Acumatica.RESTClient/AuthApi/AuthApi.cs b/Acumatica.RESTClient/AuthApi/AuthApi.cs index 053f1d4b4..31a49565e 100644 --- a/Acumatica.RESTClient/AuthApi/AuthApi.cs +++ b/Acumatica.RESTClient/AuthApi/AuthApi.cs @@ -20,9 +20,9 @@ namespace Acumatica.RESTClient.AuthApi /// public static class AuthApiExtensions { - #region Public Methods - #region OAuth - public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) + #region Public Methods + #region OAuth + public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) { RefreshAccessTokenAsync(client, clientID, clientSecret).GetAwaiter().GetResult(); } @@ -78,12 +78,12 @@ public static void ReceiveAccessToken(this ApiClient client, string clientID, st /// /// public async static Task ReceiveAccessTokenAsync( - this ApiClient client, - string clientID, - string clientSecret, - string username, - string password, - OAuthScope scope, + this ApiClient client, + string clientID, + string clientSecret, + string username, + string password, + OAuthScope scope, CancellationToken cancellationToken = default) { var time = DateTime.UtcNow; @@ -190,14 +190,13 @@ public static void ReceiveAccessTokenAuthCode(this ApiClient client, string clie /// /// public static async Task ReceiveAccessTokenAuthCodeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - string code, + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + string code, CancellationToken cancellationToken = default) { - var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "/identity/connect/token", @@ -252,7 +251,7 @@ public static void Login(this ApiClient client, string username, string password /// Defines the locale to use for localizable data. /// [Obsolete("Use OAuth 2.0 methods instead.")] - public async static Task LoginAsync(this ApiClient client, + public async static Task LoginAsync(this ApiClient client, string username, string password, string? tenant = null, string? branch = null, string? locale = null, CancellationToken cancellationToken = default) { @@ -274,8 +273,8 @@ await LoginAsync( [Obsolete("Use OAuth 2.0 methods instead.")] public static void Login(this ApiClient client, Credentials credentials) { - LoginAsync(client, credentials).GetAwaiter().GetResult(); - } + LoginAsync(client, credentials).GetAwaiter().GetResult(); + } /// /// Logs in to the system. @@ -288,8 +287,8 @@ public static void Login(this ApiClient client, Credentials credentials) /// [Obsolete("Use OAuth 2.0 methods instead.")] public async static Task LoginAsync( - this ApiClient client, - Credentials credentials, + this ApiClient client, + Credentials credentials, CancellationToken cancellationToken = default) { if (credentials == null) @@ -328,8 +327,8 @@ public static bool TryLogout(this ApiClient client) { try { - Logout(client); - return true; + Logout(client); + return true; } catch { @@ -337,7 +336,7 @@ public static bool TryLogout(this ApiClient client) } } - + /// /// Logs out from the system. /// @@ -357,7 +356,7 @@ public static async Task LogoutAsync(this ApiClient client, CancellationToken ca cancellationToken: cancellationToken ).ConfigureAwait(false); - await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); + await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); } #endregion @@ -405,4 +404,4 @@ private static string PrepareScopeParameter(OAuthScope scope) #endregion } -} \ No newline at end of file +} diff --git a/Acumatica.RESTClient/Client/ApiClient.cs b/Acumatica.RESTClient/Client/ApiClient.cs index 9aefc318f..8d2c1d237 100644 --- a/Acumatica.RESTClient/Client/ApiClient.cs +++ b/Acumatica.RESTClient/Client/ApiClient.cs @@ -246,33 +246,7 @@ public async Task CallApiAsync( stopwatch.Stop(); } } - - public async Task CallApiAsync(HttpRequestMessage request, CancellationToken cancellationToken) - { - RequestInterceptor?.Invoke(request); - - Stopwatch stopwatch = Stopwatch.StartNew(); - try - { - HttpResponseMessage response = await HttpClient.SendAsync(request, cancellationToken).ConfigureAwait(false); - ResponseInterceptor?.Invoke(response); - - return response; - } - catch (TaskCanceledException e) when (!cancellationToken.IsCancellationRequested) - { - if (e.InnerException == null && stopwatch.ElapsedMilliseconds > HttpClient.Timeout.TotalMilliseconds) // in .Net framework the InnerException is null in case of timeout, while in .Net Core it presents - { - throw new TaskCanceledException($"Task cancelled due to configured Timeout: {HttpClient.Timeout}", e); - } - else throw; - } - finally - { - stopwatch.Stop(); - } - } - + public bool HasToken() { return Token?.IsValid == true; diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj b/Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj deleted file mode 100644 index 5c09a68fd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Acumatica.ISVCB_23.200.001.csproj +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - netstandard2.0 - 8.0 - Enable - - - - - - - - - - - diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs deleted file mode 100644 index 17a55211c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class AccountApi : BaseEndpointApi - { - public AccountApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs deleted file mode 100644 index 7f9186e51..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountDetailsForPeriodInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class AccountDetailsForPeriodInquiryApi : BaseEndpointApi - { - public AccountDetailsForPeriodInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs deleted file mode 100644 index cbfbba05b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountGroupApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class AccountGroupApi : BaseEndpointApi - { - public AccountGroupApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs deleted file mode 100644 index 04aa90776..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AccountSummaryInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class AccountSummaryInquiryApi : BaseEndpointApi - { - public AccountSummaryInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs deleted file mode 100644 index 68786a37d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ActivityApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ActivityApi : BaseEndpointApi - { - public ActivityApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs deleted file mode 100644 index b1953b77c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AppointmentApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class AppointmentApi : BaseEndpointApi - { - public AppointmentApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs deleted file mode 100644 index e38b4209a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/AttributeDefinitionApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class AttributeDefinitionApi : BaseEndpointApi - { - public AttributeDefinitionApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs deleted file mode 100644 index 69455b4ea..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BaseEndpointApi.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public abstract class BaseEndpointApi : EntityAPI - where EntityType : Entity, ITopLevelEntity, new() - { - public BaseEndpointApi(ApiClient client) : base(client) - { } - public override string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs deleted file mode 100644 index 4d731c796..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BigCommerceStoresApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class BigCommerceStoresApi : BaseEndpointApi - { - public BigCommerceStoresApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs deleted file mode 100644 index 39c9f880e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BillApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class BillApi : BaseEndpointApi - { - public BillApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs deleted file mode 100644 index a54d60ced..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BudgetApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class BudgetApi : BaseEndpointApi - { - public BudgetApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs deleted file mode 100644 index a7c4bb310..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/BusinessAccountApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class BusinessAccountApi : BaseEndpointApi - { - public BusinessAccountApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs deleted file mode 100644 index 6b8f6dfc7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CarrierApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CarrierApi : BaseEndpointApi - { - public CarrierApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs deleted file mode 100644 index 546d11212..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CaseApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CaseApi : BaseEndpointApi - { - public CaseApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs deleted file mode 100644 index 95e97823c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CashSaleApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CashSaleApi : BaseEndpointApi - { - public CashSaleApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs deleted file mode 100644 index f5cf052a2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ChangeOrderApi : BaseEndpointApi - { - public ChangeOrderApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs deleted file mode 100644 index 2feebaccc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ChangeOrderClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ChangeOrderClassApi : BaseEndpointApi - { - public ChangeOrderClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs deleted file mode 100644 index 9e838cc96..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CheckApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CheckApi : BaseEndpointApi - { - public CheckApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs deleted file mode 100644 index a52a6802e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompaniesStructureApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CompaniesStructureApi : BaseEndpointApi - { - public CompaniesStructureApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs deleted file mode 100644 index 8b60d8e67..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CompanyFinancialPeriodApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CompanyFinancialPeriodApi : BaseEndpointApi - { - public CompanyFinancialPeriodApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs deleted file mode 100644 index 60f6dab77..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContactApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ContactApi : BaseEndpointApi - { - public ContactApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs deleted file mode 100644 index 6770ede06..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ContractUsageApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ContractUsageApi : BaseEndpointApi - { - public ContractUsageApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs deleted file mode 100644 index 93dbce703..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CostCodeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CostCodeApi : BaseEndpointApi - { - public CostCodeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs deleted file mode 100644 index a48640425..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CurrencyApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CurrencyApi : BaseEndpointApi - { - public CurrencyApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs deleted file mode 100644 index 8cece977d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CustomerApi : BaseEndpointApi - { - public CustomerApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs deleted file mode 100644 index ca5cef85f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CustomerClassApi : BaseEndpointApi - { - public CustomerClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs deleted file mode 100644 index be345c252..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerLocationApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CustomerLocationApi : BaseEndpointApi - { - public CustomerLocationApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs deleted file mode 100644 index 6664b0625..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPaymentMethodApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CustomerPaymentMethodApi : BaseEndpointApi - { - public CustomerPaymentMethodApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs deleted file mode 100644 index 8deb8dbd1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/CustomerPriceClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class CustomerPriceClassApi : BaseEndpointApi - { - public CustomerPriceClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs deleted file mode 100644 index 73b26780f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DeductionBenefitCodeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class DeductionBenefitCodeApi : BaseEndpointApi - { - public DeductionBenefitCodeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs deleted file mode 100644 index 5f76872d9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class DiscountApi : BaseEndpointApi - { - public DiscountApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs deleted file mode 100644 index 670e7d6a3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/DiscountCodeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class DiscountCodeApi : BaseEndpointApi - { - public DiscountCodeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs deleted file mode 100644 index afabe7946..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EarningTypeCodeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EarningTypeCodeApi : BaseEndpointApi - { - public EarningTypeCodeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs deleted file mode 100644 index 614445902..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EducatedResourcesApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EducatedResourcesApi : BaseEndpointApi - { - public EducatedResourcesApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs deleted file mode 100644 index df350abb3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EmailApi : BaseEndpointApi - { - public EmailApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs deleted file mode 100644 index f7d3e802f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmailProcessingApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EmailProcessingApi : BaseEndpointApi - { - public EmailProcessingApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs deleted file mode 100644 index 30c596b20..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EmployeeApi : BaseEndpointApi - { - public EmployeeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs deleted file mode 100644 index 7836b555a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EmployeePayrollClassApi : BaseEndpointApi - { - public EmployeePayrollClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs deleted file mode 100644 index 61cd0c277..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EmployeePayrollSettingsApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EmployeePayrollSettingsApi : BaseEndpointApi - { - public EmployeePayrollSettingsApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs deleted file mode 100644 index 88eac7583..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/EventApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class EventApi : BaseEndpointApi - { - public EventApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs deleted file mode 100644 index 6f6ba7514..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseClaimApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ExpenseClaimApi : BaseEndpointApi - { - public ExpenseClaimApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs deleted file mode 100644 index 7293cc98b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExpenseReceiptApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ExpenseReceiptApi : BaseEndpointApi - { - public ExpenseReceiptApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs deleted file mode 100644 index 18ba888c9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ExternalCommitmentApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ExternalCommitmentApi : BaseEndpointApi - { - public ExternalCommitmentApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs deleted file mode 100644 index 8e5e4cecc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FOBPointApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class FOBPointApi : BaseEndpointApi - { - public FOBPointApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs deleted file mode 100644 index 4e4438b86..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialPeriodApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class FinancialPeriodApi : BaseEndpointApi - { - public FinancialPeriodApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs deleted file mode 100644 index bd2739b80..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/FinancialYearApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class FinancialYearApi : BaseEndpointApi - { - public FinancialYearApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs deleted file mode 100644 index 90d12d9ed..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVContactsApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ISVContactsApi : BaseEndpointApi - { - public ISVContactsApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs deleted file mode 100644 index bffe8039b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ISVSolutionApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ISVSolutionApi : BaseEndpointApi - { - public ISVSolutionApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs deleted file mode 100644 index e8e2f45ec..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAdjustmentApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InventoryAdjustmentApi : BaseEndpointApi - { - public InventoryAdjustmentApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs deleted file mode 100644 index 0f2baff93..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryAllocationInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InventoryAllocationInquiryApi : BaseEndpointApi - { - public InventoryAllocationInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs deleted file mode 100644 index d299fd273..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryIssueApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InventoryIssueApi : BaseEndpointApi - { - public InventoryIssueApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs deleted file mode 100644 index 9d2c1b376..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryQuantityAvailableApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InventoryQuantityAvailableApi : BaseEndpointApi - { - public InventoryQuantityAvailableApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs deleted file mode 100644 index 72d1d2654..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventoryReceiptApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InventoryReceiptApi : BaseEndpointApi - { - public InventoryReceiptApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs deleted file mode 100644 index be1173b29..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InventorySummaryInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InventorySummaryInquiryApi : BaseEndpointApi - { - public InventorySummaryInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs deleted file mode 100644 index 1ab4d9b04..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/InvoiceApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class InvoiceApi : BaseEndpointApi - { - public InvoiceApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs deleted file mode 100644 index 80c377879..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ItemClassApi : BaseEndpointApi - { - public ItemClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs deleted file mode 100644 index 9f2d54d24..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemSalesCategoryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ItemSalesCategoryApi : BaseEndpointApi - { - public ItemSalesCategoryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs deleted file mode 100644 index cbad13fdc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ItemWarehouseApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ItemWarehouseApi : BaseEndpointApi - { - public ItemWarehouseApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs deleted file mode 100644 index b9d632d29..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/JournalTransactionApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class JournalTransactionApi : BaseEndpointApi - { - public JournalTransactionApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs deleted file mode 100644 index 5e9fcdfc6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitAssemblyApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class KitAssemblyApi : BaseEndpointApi - { - public KitAssemblyApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs deleted file mode 100644 index 846b410b3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/KitSpecificationApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class KitSpecificationApi : BaseEndpointApi - { - public KitSpecificationApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs deleted file mode 100644 index 44eb0ecb0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LaborCostRateApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class LaborCostRateApi : BaseEndpointApi - { - public LaborCostRateApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs deleted file mode 100644 index 17f13c97b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LeadApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class LeadApi : BaseEndpointApi - { - public LeadApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs deleted file mode 100644 index fbd44e617..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LedgerApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class LedgerApi : BaseEndpointApi - { - public LedgerApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs deleted file mode 100644 index f9f44f224..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/LotSerialClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class LotSerialClassApi : BaseEndpointApi - { - public LotSerialClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs deleted file mode 100644 index e0a27aa81..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/NonStockItemApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class NonStockItemApi : BaseEndpointApi - { - public NonStockItemApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs deleted file mode 100644 index c28dc4464..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/OpportunityApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class OpportunityApi : BaseEndpointApi - { - public OpportunityApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs deleted file mode 100644 index 4b5e34ddd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PTOBankApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PTOBankApi : BaseEndpointApi - { - public PTOBankApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs deleted file mode 100644 index b1642e6a6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayGroupApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PayGroupApi : BaseEndpointApi - { - public PayGroupApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs deleted file mode 100644 index 2dfdb58f5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayPeriodApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PayPeriodApi : BaseEndpointApi - { - public PayPeriodApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs deleted file mode 100644 index f4d6527dd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PaymentApi : BaseEndpointApi - { - public PaymentApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs deleted file mode 100644 index a40abd2ce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PaymentMethodApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PaymentMethodApi : BaseEndpointApi - { - public PaymentMethodApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs deleted file mode 100644 index 0f2a2f298..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollBatchApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PayrollBatchApi : BaseEndpointApi - { - public PayrollBatchApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs deleted file mode 100644 index 5d9c625f4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollUnionLocalApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PayrollUnionLocalApi : BaseEndpointApi - { - public PayrollUnionLocalApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs deleted file mode 100644 index 117873538..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PayrollWCCCodeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PayrollWCCCodeApi : BaseEndpointApi - { - public PayrollWCCCodeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs deleted file mode 100644 index 9c1f2686d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryCountApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PhysicalInventoryCountApi : BaseEndpointApi - { - public PhysicalInventoryCountApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs deleted file mode 100644 index dd5b80f49..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PhysicalInventoryReviewApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PhysicalInventoryReviewApi : BaseEndpointApi - { - public PhysicalInventoryReviewApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs deleted file mode 100644 index 924644939..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProFormaInvoiceApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProFormaInvoiceApi : BaseEndpointApi - { - public ProFormaInvoiceApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs deleted file mode 100644 index c35ce49e2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProjectApi : BaseEndpointApi - { - public ProjectApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs deleted file mode 100644 index 9ececb43d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectBudgetApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProjectBudgetApi : BaseEndpointApi - { - public ProjectBudgetApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs deleted file mode 100644 index 84978cefd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTaskApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProjectTaskApi : BaseEndpointApi - { - public ProjectTaskApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs deleted file mode 100644 index 6118aba36..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProjectTemplateApi : BaseEndpointApi - { - public ProjectTemplateApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs deleted file mode 100644 index 85bc31911..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTemplateTaskApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProjectTemplateTaskApi : BaseEndpointApi - { - public ProjectTemplateTaskApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs deleted file mode 100644 index 8eaff9eeb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ProjectTransactionApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ProjectTransactionApi : BaseEndpointApi - { - public ProjectTransactionApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs deleted file mode 100644 index ebdf1a48d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseOrderApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PurchaseOrderApi : BaseEndpointApi - { - public PurchaseOrderApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs deleted file mode 100644 index ed3361807..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/PurchaseReceiptApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class PurchaseReceiptApi : BaseEndpointApi - { - public PurchaseReceiptApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs deleted file mode 100644 index 667ac8006..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesInvoiceApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SalesInvoiceApi : BaseEndpointApi - { - public SalesInvoiceApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs deleted file mode 100644 index bf1dc1be6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesOrderApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SalesOrderApi : BaseEndpointApi - { - public SalesOrderApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs deleted file mode 100644 index ebf2becbb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPriceWorksheetApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SalesPriceWorksheetApi : BaseEndpointApi - { - public SalesPriceWorksheetApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs deleted file mode 100644 index ee0e3b8cb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalesPricesInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SalesPricesInquiryApi : BaseEndpointApi - { - public SalesPricesInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs deleted file mode 100644 index fc12a5d9f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SalespersonApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SalespersonApi : BaseEndpointApi - { - public SalespersonApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs deleted file mode 100644 index 9ee66a635..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ServiceOrderApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ServiceOrderApi : BaseEndpointApi - { - public ServiceOrderApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs deleted file mode 100644 index 40aac789a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipViaApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ShipViaApi : BaseEndpointApi - { - public ShipViaApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs deleted file mode 100644 index 94591a951..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShipmentApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ShipmentApi : BaseEndpointApi - { - public ShipmentApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs deleted file mode 100644 index 97b894fe0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingBoxApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ShippingBoxApi : BaseEndpointApi - { - public ShippingBoxApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs deleted file mode 100644 index a5f86fb99..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingTermApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ShippingTermApi : BaseEndpointApi - { - public ShippingTermApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs deleted file mode 100644 index e39d09dc7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShippingZonesApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ShippingZonesApi : BaseEndpointApi - { - public ShippingZonesApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs deleted file mode 100644 index b106c383c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/ShopifyStoreApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class ShopifyStoreApi : BaseEndpointApi - { - public ShopifyStoreApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs deleted file mode 100644 index 8baeecc04..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StockItemApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class StockItemApi : BaseEndpointApi - { - public StockItemApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs deleted file mode 100644 index 2f1ce55c8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsByLocationInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class StorageDetailsByLocationInquiryApi : BaseEndpointApi - { - public StorageDetailsByLocationInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs deleted file mode 100644 index bf1df75b6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/StorageDetailsInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class StorageDetailsInquiryApi : BaseEndpointApi - { - public StorageDetailsInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs deleted file mode 100644 index 6e916594d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubaccountApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SubaccountApi : BaseEndpointApi - { - public SubaccountApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs deleted file mode 100644 index a61c7d586..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/SubcontractApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class SubcontractApi : BaseEndpointApi - { - public SubcontractApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs deleted file mode 100644 index 862a8e526..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaskApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TaskApi : BaseEndpointApi - { - public TaskApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs deleted file mode 100644 index f47b8a429..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TaxApi : BaseEndpointApi - { - public TaxApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs deleted file mode 100644 index f1bf5d33f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxCategoryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TaxCategoryApi : BaseEndpointApi - { - public TaxCategoryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs deleted file mode 100644 index c86155021..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxReportingSettingsApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TaxReportingSettingsApi : BaseEndpointApi - { - public TaxReportingSettingsApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs deleted file mode 100644 index 2f9f46a85..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TaxZoneApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TaxZoneApi : BaseEndpointApi - { - public TaxZoneApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs deleted file mode 100644 index cf9b1419e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TemplateItemsApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TemplateItemsApi : BaseEndpointApi - { - public TemplateItemsApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs deleted file mode 100644 index 43d8f48e7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TimeEntryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TimeEntryApi : BaseEndpointApi - { - public TimeEntryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs deleted file mode 100644 index 961cff41c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/TransferOrderApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class TransferOrderApi : BaseEndpointApi - { - public TransferOrderApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs deleted file mode 100644 index feddddd35..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnionLocalApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class UnionLocalApi : BaseEndpointApi - { - public UnionLocalApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs deleted file mode 100644 index 0492c7ab6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/UnitsOfMeasureApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class UnitsOfMeasureApi : BaseEndpointApi - { - public UnitsOfMeasureApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs deleted file mode 100644 index 16356f250..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class VendorApi : BaseEndpointApi - { - public VendorApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs deleted file mode 100644 index e36c56214..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorClassApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class VendorClassApi : BaseEndpointApi - { - public VendorClassApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs deleted file mode 100644 index fe338a728..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPriceWorksheetApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class VendorPriceWorksheetApi : BaseEndpointApi - { - public VendorPriceWorksheetApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs deleted file mode 100644 index de970173c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/VendorPricesInquiryApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class VendorPricesInquiryApi : BaseEndpointApi - { - public VendorPricesInquiryApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs deleted file mode 100644 index 66b95ad25..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WarehouseApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class WarehouseApi : BaseEndpointApi - { - public WarehouseApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs deleted file mode 100644 index 96084361c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkCalendarApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class WorkCalendarApi : BaseEndpointApi - { - public WorkCalendarApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs deleted file mode 100644 index 4f4b33fdd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkClassCompensationCodeApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class WorkClassCompensationCodeApi : BaseEndpointApi - { - public WorkClassCompensationCodeApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs deleted file mode 100644 index 8927a7a0d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Api/WorkLocationApi.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using Acumatica.RESTClient.Client; -using Acumatica.ISVCB_23_200_001.Model; - -namespace Acumatica.ISVCB_23_200_001.Api -{ - [Obsolete("For backward compatibility")] - public class WorkLocationApi : BaseEndpointApi - { - public WorkLocationApi(ApiClient client) : base(client) - { } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs deleted file mode 100644 index 24be2913b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInfoDetail.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ACAInfoDetail : Entity - { - - [DataMember(Name="CoverageType", EmitDefaultValue=false)] - public StringValue? CoverageType { get; set; } - - [DataMember(Name="HealthPlanType", EmitDefaultValue=false)] - public StringValue? HealthPlanType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs deleted file mode 100644 index 408ef9eff..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ACAInformation.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ACAInformation : Entity - { - - [DataMember(Name="ACAInfoDetails", EmitDefaultValue=false)] - public List? ACAInfoDetails { get; set; } - - [DataMember(Name="MinIndividualContribution", EmitDefaultValue=false)] - public DecimalValue? MinIndividualContribution { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs deleted file mode 100644 index 62ba97dd6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Account.cs +++ /dev/null @@ -1,79 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Account : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountCD", EmitDefaultValue=false)] - public StringValue? AccountCD { get; set; } - - [DataMember(Name="AccountClass", EmitDefaultValue=false)] - public StringValue? AccountClass { get; set; } - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="AccountID", EmitDefaultValue=false)] - public IntValue? AccountID { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public BooleanValue? CashAccount { get; set; } - - [DataMember(Name="ChartOfAccountsOrder", EmitDefaultValue=false)] - public IntValue? ChartOfAccountsOrder { get; set; } - - [DataMember(Name="ConsolidationAccount", EmitDefaultValue=false)] - public StringValue? ConsolidationAccount { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PostOption", EmitDefaultValue=false)] - public StringValue? PostOption { get; set; } - - [DataMember(Name="RequireUnits", EmitDefaultValue=false)] - public BooleanValue? RequireUnits { get; set; } - - [DataMember(Name="RevaluationRateType", EmitDefaultValue=false)] - public StringValue? RevaluationRateType { get; set; } - - [DataMember(Name="Secured", EmitDefaultValue=false)] - public BooleanValue? Secured { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UseDefaultSubaccount", EmitDefaultValue=false)] - public BooleanValue? UseDefaultSubaccount { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs deleted file mode 100644 index 9f4b3ecde..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiry.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AccountDetailsForPeriodInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="FromPeriod", EmitDefaultValue=false)] - public StringValue? FromPeriod { get; set; } - - [DataMember(Name="Ledger", EmitDefaultValue=false)] - public StringValue? Ledger { get; set; } - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - [DataMember(Name="ToPeriod", EmitDefaultValue=false)] - public StringValue? ToPeriod { get; set; } - - [DataMember(Name="IncludeUnposted", EmitDefaultValue=false)] - public BooleanValue? IncludeUnposted { get; set; } - - [DataMember(Name="IncludeUnreleased", EmitDefaultValue=false)] - public BooleanValue? IncludeUnreleased { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs deleted file mode 100644 index 9e7b5774c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountDetailsForPeriodInquiryDetail.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AccountDetailsForPeriodInquiryDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="BatchNumber", EmitDefaultValue=false)] - public StringValue? BatchNumber { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CreditAmount", EmitDefaultValue=false)] - public DecimalValue? CreditAmount { get; set; } - - [DataMember(Name="CreditAmountInBaseCurrency", EmitDefaultValue=false)] - public DecimalValue? CreditAmountInBaseCurrency { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="CustomerVendor", EmitDefaultValue=false)] - public StringValue? CustomerVendor { get; set; } - - [DataMember(Name="DebitAmount", EmitDefaultValue=false)] - public DecimalValue? DebitAmount { get; set; } - - [DataMember(Name="DebitAmountInBaseCurrency", EmitDefaultValue=false)] - public DecimalValue? DebitAmountInBaseCurrency { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Ledger", EmitDefaultValue=false)] - public StringValue? Ledger { get; set; } - - [DataMember(Name="Module", EmitDefaultValue=false)] - public StringValue? Module { get; set; } - - [DataMember(Name="PeriodID", EmitDefaultValue=false)] - public StringValue? PeriodID { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="RefNumber", EmitDefaultValue=false)] - public StringValue? RefNumber { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="TransactionDate", EmitDefaultValue=false)] - public DateTimeValue? TransactionDate { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="TransactionType", EmitDefaultValue=false)] - public StringValue? TransactionType { get; set; } - - [DataMember(Name="Posted", EmitDefaultValue=false)] - public BooleanValue? Posted { get; set; } - - [DataMember(Name="Released", EmitDefaultValue=false)] - public BooleanValue? Released { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs deleted file mode 100644 index 2195617aa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountGroup.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AccountGroup : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountGroupID", EmitDefaultValue=false)] - public StringValue? AccountGroupID { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="DefaultAccountID", EmitDefaultValue=false)] - public StringValue? DefaultAccountID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Expense", EmitDefaultValue=false)] - public BooleanValue? Expense { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public ShortValue? SortOrder { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs deleted file mode 100644 index 446b9798c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryInquiry.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AccountSummaryInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountClass", EmitDefaultValue=false)] - public StringValue? AccountClass { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="Ledger", EmitDefaultValue=false)] - public StringValue? Ledger { get; set; } - - [DataMember(Name="Period", EmitDefaultValue=false)] - public StringValue? Period { get; set; } - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs deleted file mode 100644 index 24933953f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AccountSummaryRow.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AccountSummaryRow : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="AccountClass", EmitDefaultValue=false)] - public StringValue? AccountClass { get; set; } - - [DataMember(Name="BeginningBalance", EmitDefaultValue=false)] - public DecimalValue? BeginningBalance { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ConsolidationAccount", EmitDefaultValue=false)] - public StringValue? ConsolidationAccount { get; set; } - - [DataMember(Name="CreditTotal", EmitDefaultValue=false)] - public DecimalValue? CreditTotal { get; set; } - - [DataMember(Name="CurrencyBeginningBalance", EmitDefaultValue=false)] - public DecimalValue? CurrencyBeginningBalance { get; set; } - - [DataMember(Name="CurrencyCreditTotal", EmitDefaultValue=false)] - public DecimalValue? CurrencyCreditTotal { get; set; } - - [DataMember(Name="CurrencyDebitTotal", EmitDefaultValue=false)] - public DecimalValue? CurrencyDebitTotal { get; set; } - - [DataMember(Name="CurrencyEndingBalance", EmitDefaultValue=false)] - public DecimalValue? CurrencyEndingBalance { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyPtdTotal", EmitDefaultValue=false)] - public DecimalValue? CurrencyPtdTotal { get; set; } - - [DataMember(Name="DebitTotal", EmitDefaultValue=false)] - public DecimalValue? DebitTotal { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndingBalance", EmitDefaultValue=false)] - public DecimalValue? EndingBalance { get; set; } - - [DataMember(Name="LastActivity", EmitDefaultValue=false)] - public StringValue? LastActivity { get; set; } - - [DataMember(Name="LedgerID", EmitDefaultValue=false)] - public IntValue? LedgerID { get; set; } - - [DataMember(Name="PtdTotal", EmitDefaultValue=false)] - public DecimalValue? PtdTotal { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs deleted file mode 100644 index 8d8dc9838..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CardOperationParameters.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CardOperationParameters - { - public CardOperationParameters() { } - - [DataMember(Name="TranType", EmitDefaultValue=false)] - public StringValue? TranType { get; set; } - [DataMember(Name="TranNbr", EmitDefaultValue=false)] - public StringValue? TranNbr { get; set; } - [DataMember(Name="AuthNumber", EmitDefaultValue=false)] - public StringValue? AuthNumber { get; set; } - [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] - public StringValue? ExtProfileId { get; set; } - [DataMember(Name="TranDate", EmitDefaultValue=false)] - public DateTimeValue? TranDate { get; set; } - [DataMember(Name="OrigTranNbr", EmitDefaultValue=false)] - public StringValue? OrigTranNbr { get; set; } - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs deleted file mode 100644 index e277a753b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeBusinessAccountIDParameters.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeBusinessAccountIDParameters - { - public ChangeBusinessAccountIDParameters() { } - - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs deleted file mode 100644 index 51a8c8ec6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeCostCodeIDParameters.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeCostCodeIDParameters - { - public ChangeCostCodeIDParameters() { } - - [DataMember(Name="CostCodeID", EmitDefaultValue=false)] - public StringValue? CostCodeID { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs deleted file mode 100644 index 2b757c25b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeEmployeeIDParameters.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeEmployeeIDParameters - { - public ChangeEmployeeIDParameters() { } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs deleted file mode 100644 index b23e1abf5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ChangeProjectIDParameters.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeProjectIDParameters - { - public ChangeProjectIDParameters() { } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs deleted file mode 100644 index a652cef6e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CloseParameters.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CloseParameters - { - public CloseParameters() { } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs deleted file mode 100644 index edba3fd1d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToBAccountParameters.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertLeadToBAccountParameters - { - public ConvertLeadToBAccountParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] - public StringValue? BusinessAccountClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs deleted file mode 100644 index d2a829da7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToContactParameters.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertLeadToContactParameters - { - public ConvertLeadToContactParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs deleted file mode 100644 index 2a3908e27..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ConvertLeadToOpportunityParameters.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertLeadToOpportunityParameters - { - public ConvertLeadToOpportunityParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] - public StringValue? BusinessAccountClass { get; set; } - [DataMember(Name="OpportunitySubject", EmitDefaultValue=false)] - public StringValue? OpportunitySubject { get; set; } - [DataMember(Name="OpportunityCloseDate", EmitDefaultValue=false)] - public StringValue? OpportunityCloseDate { get; set; } - [DataMember(Name="OpportunityClass", EmitDefaultValue=false)] - public StringValue? OpportunityClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs deleted file mode 100644 index 15ec1367c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromContactParameters.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateAccountFromContactParameters - { - public CreateAccountFromContactParameters() { } - - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] - public StringValue? BusinessAccountClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs deleted file mode 100644 index 0bff0071e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateAccountFromOpportunityParameters.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateAccountFromOpportunityParameters - { - public CreateAccountFromOpportunityParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - [DataMember(Name="LinkContactToAccount", EmitDefaultValue=false)] - public BooleanValue? LinkContactToAccount { get; set; } - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - [DataMember(Name="BusinessAccountClass", EmitDefaultValue=false)] - public StringValue? BusinessAccountClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs deleted file mode 100644 index ba64a7c72..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromBusinessAccountParameters.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromBusinessAccountParameters - { - public CreateContactFromBusinessAccountParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs deleted file mode 100644 index 8aa818419..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromCustomerParameters.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromCustomerParameters - { - public CreateContactFromCustomerParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs deleted file mode 100644 index e3a14cfee..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromOpportunityParameters.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromOpportunityParameters - { - public CreateContactFromOpportunityParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs deleted file mode 100644 index 057ca34bc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateContactFromVendorParameters.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromVendorParameters - { - public CreateContactFromVendorParameters() { } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs deleted file mode 100644 index 99a39ba1e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/CreateOpportunitySalesOrderParameters.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateOpportunitySalesOrderParameters - { - public CreateOpportunitySalesOrderParameters() { } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - [DataMember(Name="RecalculatePricesandDiscounts", EmitDefaultValue=false)] - public BooleanValue? RecalculatePricesandDiscounts { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs deleted file mode 100644 index 8490fbac6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/LinkCaseParameters.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LinkCaseParameters - { - [DataMember(Name = "RelatedCase", EmitDefaultValue = false)] - public StringValue? RelatedCase { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs deleted file mode 100644 index 86d09aebe..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/ReleaseRetainageParameters.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseRetainageParameters - { - public ReleaseRetainageParameters() { } - - [DataMember(Name="AmtToRelease", EmitDefaultValue=false)] - public DecimalValue? AmtToRelease { get; set; } - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs deleted file mode 100644 index 3cff8af1b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateReceiptParameters.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderCreateReceiptParameters - { - public SalesOrderCreateReceiptParameters() { } - - [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] - public DateTimeValue? ShipmentDate { get; set; } - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs deleted file mode 100644 index f76194c33..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SalesOrderCreateShipmentParameters.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderCreateShipmentParameters - { - public SalesOrderCreateShipmentParameters() { } - - [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] - public DateTimeValue? ShipmentDate { get; set; } - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs deleted file mode 100644 index 2ef6fc65c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/SetResultParameters.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SetResultParameters - { - [DataMember(Name = "Result", EmitDefaultValue = false)] - public StringValue? Result { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs deleted file mode 100644 index 610e0427a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/UpdateDiscountsParameters.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UpdateDiscountsParameters - { - public UpdateDiscountsParameters() { } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs deleted file mode 100644 index 304d96daa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActionParameters/VoidCardPaymentParameters.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VoidCardPaymentParameters - { - public VoidCardPaymentParameters() { } - - [DataMember(Name="TranType", EmitDefaultValue=false)] - public StringValue? TranType { get; set; } - [DataMember(Name="TranNbr", EmitDefaultValue=false)] - public StringValue? TranNbr { get; set; } - [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] - public StringValue? ExtProfileId { get; set; } - [DataMember(Name="TranDate", EmitDefaultValue=false)] - public DateTimeValue? TranDate { get; set; } - [DataMember(Name="NeedValidation", EmitDefaultValue=false)] - public BooleanValue? NeedValidation { get; set; } - [DataMember(Name="OrigTranNbr", EmitDefaultValue=false)] - public StringValue? OrigTranNbr { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs deleted file mode 100644 index 745f326fc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AcceptInvitationEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AcceptInvitationEvent : EntityAction - { - public AcceptInvitationEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs deleted file mode 100644 index e07d39d95..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ActivateProject : EntityAction - { - public ActivateProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs deleted file mode 100644 index eeb893373..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTask.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ActivateProjectTask : EntityAction - { - public ActivateProjectTask(ProjectTask entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs deleted file mode 100644 index d57284d2f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ActivateProjectTemplate.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ActivateProjectTemplate : EntityAction - { - public ActivateProjectTemplate(ProjectTemplate entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs deleted file mode 100644 index 612c278ae..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AllowBilling.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AllowBilling : EntityAction - { - public AllowBilling(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs deleted file mode 100644 index 0dc14b9ee..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AppRecalcExternalTax.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppRecalcExternalTax : EntityAction - { - public AppRecalcExternalTax(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs deleted file mode 100644 index 1307b6cd9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveChangeOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ApproveChangeOrder : EntityAction - { - public ApproveChangeOrder(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs deleted file mode 100644 index 67abb750e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseClaim.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ApproveExpenseClaim : EntityAction - { - public ApproveExpenseClaim(ExpenseClaim entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs deleted file mode 100644 index 3cf89410b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveExpenseReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ApproveExpenseReceipt : EntityAction - { - public ApproveExpenseReceipt(ExpenseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs deleted file mode 100644 index 55653965b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProFormaInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ApproveProFormaInvoice : EntityAction - { - public ApproveProFormaInvoice(ProFormaInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs deleted file mode 100644 index 801ff2c41..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ApproveProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ApproveProject : EntityAction - { - public ApproveProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs deleted file mode 100644 index 4861c228d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ArchiveEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ArchiveEmail : EntityAction - { - public ArchiveEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs deleted file mode 100644 index 0f379ba76..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AssignCase.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AssignCase : EntityAction - { - public AssignCase(Case entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs deleted file mode 100644 index 42a98a6a2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/AutoRecalculateDiscounts.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AutoRecalculateDiscounts : EntityAction - { - public AutoRecalculateDiscounts(SalesOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs deleted file mode 100644 index 0c67ed51b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelActivityEvent : EntityAction - { - public CancelActivityEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs deleted file mode 100644 index 92f99284b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelActivityTask.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelActivityTask : EntityAction - { - public CancelActivityTask(Task entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs deleted file mode 100644 index 2abe10056..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelAppointment : EntityAction - { - public CancelAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs deleted file mode 100644 index daa23dae2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelOrder : EntityAction - { - public CancelOrder(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs deleted file mode 100644 index d7658be9e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelPhysicalInventory.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelPhysicalInventory : EntityAction - { - public CancelPhysicalInventory(PhysicalInventoryReview entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs deleted file mode 100644 index 7bc3c95ce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelProject : EntityAction - { - public CancelProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs deleted file mode 100644 index c60b5e220..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelProjectTask.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelProjectTask : EntityAction - { - public CancelProjectTask(ProjectTask entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs deleted file mode 100644 index 7098faf64..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSalesOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelSalesOrder : EntityAction - { - public CancelSalesOrder(SalesOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs deleted file mode 100644 index ef82e8764..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CancelSendingEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CancelSendingEmail : EntityAction - { - public CancelSendingEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs deleted file mode 100644 index eb4ca7472..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CaptureCreditCardPayment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CaptureCreditCardPayment : EntityAction - { - public CaptureCreditCardPayment(Payment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs deleted file mode 100644 index b6b429c4b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CardOperation.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CardOperation : EntityActionWithParameters - { - public CardOperation(Payment entity, CardOperationParameters parameters) : base(entity, parameters) - { } - - public StringValue? TranType - { - get { return Parameters.TranType; } - set { Parameters.TranType = value; } - } - public StringValue? TranNbr - { - get { return Parameters.TranNbr; } - set { Parameters.TranNbr = value; } - } - public StringValue? AuthNumber - { - get { return Parameters.AuthNumber; } - set { Parameters.AuthNumber = value; } - } - public StringValue? ExtProfileId - { - get { return Parameters.ExtProfileId; } - set { Parameters.ExtProfileId = value; } - } - public DateTimeValue? TranDate - { - get { return Parameters.TranDate; } - set { Parameters.TranDate = value; } - } - public StringValue? OrigTranNbr - { - get { return Parameters.OrigTranNbr; } - set { Parameters.OrigTranNbr = value; } - } - public DecimalValue? Amount - { - get { return Parameters.Amount; } - set { Parameters.Amount = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs deleted file mode 100644 index 6b478b3a7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeBusinessAccountID.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeBusinessAccountID : EntityActionWithParameters - { - public ChangeBusinessAccountID(BusinessAccount entity, ChangeBusinessAccountIDParameters parameters) : base(entity, parameters) - { } - - public StringValue? BusinessAccountID - { - get { return Parameters.BusinessAccountID; } - set { Parameters.BusinessAccountID = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs deleted file mode 100644 index c82c61fcf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeCostCodeID.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeCostCodeID : EntityActionWithParameters - { - public ChangeCostCodeID(CostCode entity, ChangeCostCodeIDParameters parameters) : base(entity, parameters) - { } - - public StringValue? CostCodeID - { - get { return Parameters.CostCodeID; } - set { Parameters.CostCodeID = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs deleted file mode 100644 index 841944c4a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeEmployeeID.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeEmployeeID : EntityActionWithParameters - { - public ChangeEmployeeID(Employee entity, ChangeEmployeeIDParameters parameters) : base(entity, parameters) - { } - - public StringValue? EmployeeID - { - get { return Parameters.EmployeeID; } - set { Parameters.EmployeeID = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs deleted file mode 100644 index 0d0e91c58..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ChangeProjectID.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeProjectID : EntityActionWithParameters - { - public ChangeProjectID(Project entity, ChangeProjectIDParameters parameters) : base(entity, parameters) - { } - - public StringValue? ProjectID - { - get { return Parameters.ProjectID; } - set { Parameters.ProjectID = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs deleted file mode 100644 index 1745245ca..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForBusinessAccountDuplicates.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CheckForBusinessAccountDuplicates : EntityAction - { - public CheckForBusinessAccountDuplicates(BusinessAccount entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs deleted file mode 100644 index 9c52b549c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckForContactDuplicates.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CheckForContactDuplicates : EntityAction - { - public CheckForContactDuplicates(Contact entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs deleted file mode 100644 index 1e04cf4b1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CheckLeadForDuplicates.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CheckLeadForDuplicates : EntityAction - { - public CheckLeadForDuplicates(Lead entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs deleted file mode 100644 index 9fd3ef5ea..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ClaimExpenseReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ClaimExpenseReceipt : EntityAction - { - public ClaimExpenseReceipt(ExpenseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs deleted file mode 100644 index 1153370d6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Close.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Close : EntityActionWithParameters - { - public Close(Case entity, CloseParameters parameters) : base(entity, parameters) - { } - - public StringValue? Reason - { - get { return Parameters.Reason; } - set { Parameters.Reason = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs deleted file mode 100644 index 4f2bd26d3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CloseAppointment : EntityAction - { - public CloseAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs deleted file mode 100644 index dc8f14280..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CloseOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CloseOrder : EntityAction - { - public CloseOrder(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs deleted file mode 100644 index 35992e10e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteActivity.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteActivity : EntityAction - { - public CompleteActivity(Activity entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs deleted file mode 100644 index 14c5e437a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteAppointment : EntityAction - { - public CompleteAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs deleted file mode 100644 index 50020f500..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteEvent : EntityAction - { - public CompleteEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs deleted file mode 100644 index 768bc8fce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteOrder : EntityAction - { - public CompleteOrder(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs deleted file mode 100644 index 82b9284dd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompletePhysicalInventory.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompletePhysicalInventory : EntityAction - { - public CompletePhysicalInventory(PhysicalInventoryReview entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs deleted file mode 100644 index c1c735faa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteProject : EntityAction - { - public CompleteProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs deleted file mode 100644 index 129c48e0b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteProjectTask.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteProjectTask : EntityAction - { - public CompleteProjectTask(ProjectTask entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs deleted file mode 100644 index 8ab9b4504..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTask.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteTask : EntityAction - { - public CompleteTask(Task entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs deleted file mode 100644 index 27d306044..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CompleteTimeEntry.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompleteTimeEntry : EntityAction - { - public CompleteTimeEntry(TimeEntry entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs deleted file mode 100644 index ec7c36a39..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConfirmShipment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConfirmShipment : EntityAction - { - public ConfirmShipment(Shipment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs deleted file mode 100644 index 35098795a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertBusinessAccountToCustomer.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertBusinessAccountToCustomer : EntityAction - { - public ConvertBusinessAccountToCustomer(BusinessAccount entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs deleted file mode 100644 index 481796f85..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToBAccount.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertLeadToBAccount : EntityActionWithParameters - { - public ConvertLeadToBAccount(Lead entity, ConvertLeadToBAccountParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - public StringValue? BusinessAccountID - { - get { return Parameters.BusinessAccountID; } - set { Parameters.BusinessAccountID = value; } - } - public StringValue? BusinessAccountName - { - get { return Parameters.BusinessAccountName; } - set { Parameters.BusinessAccountName = value; } - } - public StringValue? BusinessAccountClass - { - get { return Parameters.BusinessAccountClass; } - set { Parameters.BusinessAccountClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs deleted file mode 100644 index 43f94b73e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToContact.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertLeadToContact : EntityActionWithParameters - { - public ConvertLeadToContact(Lead entity, ConvertLeadToContactParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? AccountName - { - get { return Parameters.AccountName; } - set { Parameters.AccountName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs deleted file mode 100644 index f0b91a4f9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ConvertLeadToOpportunity.cs +++ /dev/null @@ -1,100 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ConvertLeadToOpportunity : EntityActionWithParameters - { - public ConvertLeadToOpportunity(Lead entity, ConvertLeadToOpportunityParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? AccountName - { - get { return Parameters.AccountName; } - set { Parameters.AccountName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - public StringValue? BusinessAccountID - { - get { return Parameters.BusinessAccountID; } - set { Parameters.BusinessAccountID = value; } - } - public StringValue? BusinessAccountName - { - get { return Parameters.BusinessAccountName; } - set { Parameters.BusinessAccountName = value; } - } - public StringValue? BusinessAccountClass - { - get { return Parameters.BusinessAccountClass; } - set { Parameters.BusinessAccountClass = value; } - } - public StringValue? OpportunitySubject - { - get { return Parameters.OpportunitySubject; } - set { Parameters.OpportunitySubject = value; } - } - public StringValue? OpportunityCloseDate - { - get { return Parameters.OpportunityCloseDate; } - set { Parameters.OpportunityCloseDate = value; } - } - public StringValue? OpportunityClass - { - get { return Parameters.OpportunityClass; } - set { Parameters.OpportunityClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs deleted file mode 100644 index eed920369..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CorrectShipment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CorrectShipment : EntityAction - { - public CorrectShipment(Shipment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs deleted file mode 100644 index 1d14f930b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAPBill.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateAPBill : EntityAction - { - public CreateAPBill(PurchaseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs deleted file mode 100644 index 4fcc3eaee..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromContact.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateAccountFromContact : EntityActionWithParameters - { - public CreateAccountFromContact(Contact entity, CreateAccountFromContactParameters parameters) : base(entity, parameters) - { } - - public StringValue? BusinessAccountID - { - get { return Parameters.BusinessAccountID; } - set { Parameters.BusinessAccountID = value; } - } - public StringValue? BusinessAccountName - { - get { return Parameters.BusinessAccountName; } - set { Parameters.BusinessAccountName = value; } - } - public StringValue? BusinessAccountClass - { - get { return Parameters.BusinessAccountClass; } - set { Parameters.BusinessAccountClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs deleted file mode 100644 index 48fd1a313..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateAccountFromOpportunity.cs +++ /dev/null @@ -1,90 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateAccountFromOpportunity : EntityActionWithParameters - { - public CreateAccountFromOpportunity(Opportunity entity, CreateAccountFromOpportunityParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? AccountName - { - get { return Parameters.AccountName; } - set { Parameters.AccountName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - public BooleanValue? LinkContactToAccount - { - get { return Parameters.LinkContactToAccount; } - set { Parameters.LinkContactToAccount = value; } - } - public StringValue? BusinessAccountID - { - get { return Parameters.BusinessAccountID; } - set { Parameters.BusinessAccountID = value; } - } - public StringValue? BusinessAccountName - { - get { return Parameters.BusinessAccountName; } - set { Parameters.BusinessAccountName = value; } - } - public StringValue? BusinessAccountClass - { - get { return Parameters.BusinessAccountClass; } - set { Parameters.BusinessAccountClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs deleted file mode 100644 index cc8536f49..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateCaseFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateCaseFromEmail : EntityAction - { - public CreateCaseFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs deleted file mode 100644 index b36c62e56..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromBusinessAccount.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromBusinessAccount : EntityActionWithParameters - { - public CreateContactFromBusinessAccount(BusinessAccount entity, CreateContactFromBusinessAccountParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs deleted file mode 100644 index 57ea52c46..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromCustomer.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromCustomer : EntityActionWithParameters - { - public CreateContactFromCustomer(Customer entity, CreateContactFromCustomerParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs deleted file mode 100644 index ee2e925f7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromEmail : EntityAction - { - public CreateContactFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs deleted file mode 100644 index f1994b108..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromOpportunity.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromOpportunity : EntityActionWithParameters - { - public CreateContactFromOpportunity(Opportunity entity, CreateContactFromOpportunityParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? AccountName - { - get { return Parameters.AccountName; } - set { Parameters.AccountName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs deleted file mode 100644 index a5d9d9211..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateContactFromVendor.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateContactFromVendor : EntityActionWithParameters - { - public CreateContactFromVendor(Vendor entity, CreateContactFromVendorParameters parameters) : base(entity, parameters) - { } - - public StringValue? FirstName - { - get { return Parameters.FirstName; } - set { Parameters.FirstName = value; } - } - public StringValue? LastName - { - get { return Parameters.LastName; } - set { Parameters.LastName = value; } - } - public StringValue? JobTitle - { - get { return Parameters.JobTitle; } - set { Parameters.JobTitle = value; } - } - public StringValue? Phone1Type - { - get { return Parameters.Phone1Type; } - set { Parameters.Phone1Type = value; } - } - public StringValue? Phone1 - { - get { return Parameters.Phone1; } - set { Parameters.Phone1 = value; } - } - public StringValue? Phone2Type - { - get { return Parameters.Phone2Type; } - set { Parameters.Phone2Type = value; } - } - public StringValue? Phone2 - { - get { return Parameters.Phone2; } - set { Parameters.Phone2 = value; } - } - public StringValue? Email - { - get { return Parameters.Email; } - set { Parameters.Email = value; } - } - public StringValue? ContactClass - { - get { return Parameters.ContactClass; } - set { Parameters.ContactClass = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs deleted file mode 100644 index c2eed717d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateEventFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateEventFromEmail : EntityAction - { - public CreateEventFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs deleted file mode 100644 index a9502781b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateExpenseReceiptFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateExpenseReceiptFromEmail : EntityAction - { - public CreateExpenseReceiptFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs deleted file mode 100644 index 7ae0fca4b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateLeadFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateLeadFromEmail : EntityAction - { - public CreateLeadFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs deleted file mode 100644 index 51ab1df51..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateOpportunityFromEmail : EntityAction - { - public CreateOpportunityFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs deleted file mode 100644 index 712bcad43..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunityInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateOpportunityInvoice : EntityAction - { - public CreateOpportunityInvoice(Opportunity entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs deleted file mode 100644 index ff0422de2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateOpportunitySalesOrder.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateOpportunitySalesOrder : EntityActionWithParameters - { - public CreateOpportunitySalesOrder(Opportunity entity, CreateOpportunitySalesOrderParameters parameters) : base(entity, parameters) - { } - - public StringValue? OrderType - { - get { return Parameters.OrderType; } - set { Parameters.OrderType = value; } - } - public BooleanValue? RecalculatePricesandDiscounts - { - get { return Parameters.RecalculatePricesandDiscounts; } - set { Parameters.RecalculatePricesandDiscounts = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs deleted file mode 100644 index 1a9569acc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/CreateTaskFromEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreateTaskFromEmail : EntityAction - { - public CreateTaskFromEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs deleted file mode 100644 index f7ce28799..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailChangeOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmailChangeOrder : EntityAction - { - public EmailChangeOrder(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs deleted file mode 100644 index f00f2f888..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/EmailProFormaInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmailProFormaInvoice : EntityAction - { - public EmailProFormaInvoice(ProFormaInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs deleted file mode 100644 index e7037e6fa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ExportCardEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExportCardEvent : EntityAction - { - public ExportCardEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs deleted file mode 100644 index 4eb7e16c6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/FinishCountingPhysicalInventory.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FinishCountingPhysicalInventory : EntityAction - { - public FinishCountingPhysicalInventory(PhysicalInventoryReview entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs deleted file mode 100644 index dff2efe97..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldChangeOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class HoldChangeOrder : EntityAction - { - public HoldChangeOrder(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs deleted file mode 100644 index 9761b59d0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProFormaInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class HoldProFormaInvoice : EntityAction - { - public HoldProFormaInvoice(ProFormaInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs deleted file mode 100644 index e29ff2295..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class HoldProject : EntityAction - { - public HoldProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs deleted file mode 100644 index fac1d2cd4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTask.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class HoldProjectTask : EntityAction - { - public HoldProjectTask(ProjectTask entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs deleted file mode 100644 index 458bfa17e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/HoldProjectTemplate.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class HoldProjectTemplate : EntityAction - { - public HoldProjectTemplate(ProjectTemplate entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs deleted file mode 100644 index aee331e3e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ImportEmployeeTaxes.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ImportEmployeeTaxes : EntityAction - { - public ImportEmployeeTaxes(EmployeePayrollSettings entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs deleted file mode 100644 index 092c53c93..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteAllEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InviteAllEvent : EntityAction - { - public InviteAllEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs deleted file mode 100644 index e281207c7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InviteEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InviteEvent : EntityAction - { - public InviteEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs deleted file mode 100644 index f09eb4309..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceAppointment : EntityAction - { - public InvoiceAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs deleted file mode 100644 index e4c3a4d90..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/InvoiceOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceOrder : EntityAction - { - public InvoiceOrder(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs deleted file mode 100644 index 6b72a3046..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LinkCase.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LinkCase : EntityActionWithParameters - { - public StringValue? RelatedCase - { - get - { - return base.Parameters.RelatedCase; - } - set - { - base.Parameters.RelatedCase = value; - } - } - - public LinkCase(SolutionSubmission entity, LinkCaseParameters parameters) - : base(entity, parameters) - { - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs deleted file mode 100644 index 8ccbcc5d6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectBudget.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LockProjectBudget : EntityAction - { - public LockProjectBudget(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs deleted file mode 100644 index 9a5fa7a6a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockProjectCommitments.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LockProjectCommitments : EntityAction - { - public LockProjectCommitments(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs deleted file mode 100644 index d08e4f02f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/LockSubmission.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LockSubmission : EntityAction - { - public LockSubmission(SolutionSubmission entity) - : base(entity) - { - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs deleted file mode 100644 index 8af072c4e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkBusinessAccountAsValidated.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class MarkBusinessAccountAsValidated : EntityAction - { - public MarkBusinessAccountAsValidated(BusinessAccount entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs deleted file mode 100644 index 71b8c84f1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkContactAsValidated.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class MarkContactAsValidated : EntityAction - { - public MarkContactAsValidated(Contact entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs deleted file mode 100644 index 5a0642c6b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/MarkLeadAsValidated.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class MarkLeadAsValidated : EntityAction - { - public MarkLeadAsValidated(Lead entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs deleted file mode 100644 index 43a9901bc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/Open.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Open : EntityAction - { - public Open(Case entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs deleted file mode 100644 index a345624c3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenSalesOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpenSalesOrder : EntityAction - { - public OpenSalesOrder(SalesOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs deleted file mode 100644 index d4fcddaf3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/OpenTimeEntry.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpenTimeEntry : EntityAction - { - public OpenTimeEntry(TimeEntry entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs deleted file mode 100644 index ec9569be5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PauseAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PauseAppointment : EntityAction - { - public PauseAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs deleted file mode 100644 index 8a546a597..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PrepareInvoice : EntityAction - { - public PrepareInvoice(Shipment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs deleted file mode 100644 index 2ee7fcd91..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PrepareSalesInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PrepareSalesInvoice : EntityAction - { - public PrepareSalesInvoice(SalesOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs deleted file mode 100644 index 65b1cd2ce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessAllEmailProcessing.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProcessAllEmailProcessing : EntityAction - { - public ProcessAllEmailProcessing(EmailProcessing entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs deleted file mode 100644 index ce8bc3782..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProcessEmail : EntityAction - { - public ProcessEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs deleted file mode 100644 index e7b8c8b4e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ProcessEmailProcessing.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProcessEmailProcessing : EntityAction - { - public ProcessEmailProcessing(EmailProcessing entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs deleted file mode 100644 index 92c6f6fab..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHold.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PutOnHold : EntityAction - { - public PutOnHold(Subcontract entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs deleted file mode 100644 index 6e9a3e4f6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseClaim.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PutOnHoldExpenseClaim : EntityAction - { - public PutOnHoldExpenseClaim(ExpenseClaim entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs deleted file mode 100644 index 707512e29..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/PutOnHoldExpenseReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PutOnHoldExpenseReceipt : EntityAction - { - public PutOnHoldExpenseReceipt(ExpenseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs deleted file mode 100644 index c32f22660..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RecalcExternalTax.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RecalcExternalTax : EntityAction - { - public RecalcExternalTax(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs deleted file mode 100644 index 42583625a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectChangeOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RejectChangeOrder : EntityAction - { - public RejectChangeOrder(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs deleted file mode 100644 index 619926961..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseClaim.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RejectExpenseClaim : EntityAction - { - public RejectExpenseClaim(ExpenseClaim entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs deleted file mode 100644 index fd9a58fc6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectExpenseReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RejectExpenseReceipt : EntityAction - { - public RejectExpenseReceipt(ExpenseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs deleted file mode 100644 index d14d2e5fa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectInvitationEvent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RejectInvitationEvent : EntityAction - { - public RejectInvitationEvent(Event entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs deleted file mode 100644 index ac11f3272..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProFormaInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RejectProFormaInvoice : EntityAction - { - public RejectProFormaInvoice(ProFormaInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs deleted file mode 100644 index b0058350c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RejectProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RejectProject : EntityAction - { - public RejectProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs deleted file mode 100644 index 68ff21ea2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseAdjustment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseAdjustment : EntityAction - { - public ReleaseAdjustment(InventoryAdjustment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs deleted file mode 100644 index 8717f1045..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBatch.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseBatch : EntityAction - { - public ReleaseBatch(PayrollBatch entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs deleted file mode 100644 index 4122344db..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseBill.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseBill : EntityAction - { - public ReleaseBill(Bill entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs deleted file mode 100644 index 422266dc6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCase.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseCase : EntityAction - { - public ReleaseCase(Case entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs deleted file mode 100644 index abffdb689..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCashSale.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseCashSale : EntityAction - { - public ReleaseCashSale(CashSale entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs deleted file mode 100644 index f5bf3e71e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseChangeOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseChangeOrder : EntityAction - { - public ReleaseChangeOrder(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs deleted file mode 100644 index 2edc1c41d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseCheck.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseCheck : EntityAction - { - public ReleaseCheck(Check entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs deleted file mode 100644 index e38bce6bd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseExpenseClaim.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseExpenseClaim : EntityAction - { - public ReleaseExpenseClaim(ExpenseClaim entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs deleted file mode 100644 index c5e4be4e7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromCreditHoldSalesOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseFromCreditHoldSalesOrder : EntityAction - { - public ReleaseFromCreditHoldSalesOrder(SalesOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs deleted file mode 100644 index 839f13fd3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseFromHold.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseFromHold : EntityAction - { - public ReleaseFromHold(Subcontract entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs deleted file mode 100644 index 809109827..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryIssue.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseInventoryIssue : EntityAction - { - public ReleaseInventoryIssue(InventoryIssue entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs deleted file mode 100644 index b5804fb12..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInventoryReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseInventoryReceipt : EntityAction - { - public ReleaseInventoryReceipt(InventoryReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs deleted file mode 100644 index ba0dba468..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseInvoice : EntityAction - { - public ReleaseInvoice(Invoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs deleted file mode 100644 index 65cf9955e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseJournalTransaction.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseJournalTransaction : EntityAction - { - public ReleaseJournalTransaction(JournalTransaction entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs deleted file mode 100644 index ae25e8ef8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseKitAssembly.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseKitAssembly : EntityAction - { - public ReleaseKitAssembly(KitAssembly entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs deleted file mode 100644 index 402c93669..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePayment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleasePayment : EntityAction - { - public ReleasePayment(Payment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs deleted file mode 100644 index 30c7897b8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseProFormaInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseProFormaInvoice : EntityAction - { - public ReleaseProFormaInvoice(ProFormaInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs deleted file mode 100644 index bc95b6491..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleasePurchaseReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleasePurchaseReceipt : EntityAction - { - public ReleasePurchaseReceipt(PurchaseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs deleted file mode 100644 index 0809ef4f2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseRetainage.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseRetainage : EntityActionWithParameters - { - public ReleaseRetainage(Bill entity, ReleaseRetainageParameters parameters) : base(entity, parameters) - { } - - public DecimalValue? AmtToRelease - { - get { return Parameters.AmtToRelease; } - set { Parameters.AmtToRelease = value; } - } - public DateTimeValue? Date - { - get { return Parameters.Date; } - set { Parameters.Date = value; } - } - public StringValue? PostPeriod - { - get { return Parameters.PostPeriod; } - set { Parameters.PostPeriod = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs deleted file mode 100644 index e6bbe74cd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesInvoice.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseSalesInvoice : EntityAction - { - public ReleaseSalesInvoice(SalesInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs deleted file mode 100644 index 179f7090f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseSalesPriceWorksheet.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseSalesPriceWorksheet : EntityAction - { - public ReleaseSalesPriceWorksheet(SalesPriceWorksheet entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs deleted file mode 100644 index faef7ba03..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransactions.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseTransactions : EntityAction - { - public ReleaseTransactions(ProjectTransaction entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs deleted file mode 100644 index 1b3deb293..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseTransferOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseTransferOrder : EntityAction - { - public ReleaseTransferOrder(TransferOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs deleted file mode 100644 index bcff72b6e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReleaseVendorPriceWorksheet.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReleaseVendorPriceWorksheet : EntityAction - { - public ReleaseVendorPriceWorksheet(VendorPriceWorksheet entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs deleted file mode 100644 index 0ccc6e258..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveChangeOrderFromHold.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RemoveChangeOrderFromHold : EntityAction - { - public RemoveChangeOrderFromHold(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs deleted file mode 100644 index 3957b3e46..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RemoveProFormaInvoiceFromHold.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RemoveProFormaInvoiceFromHold : EntityAction - { - public RemoveProFormaInvoiceFromHold(ProFormaInvoice entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs deleted file mode 100644 index 945b7299a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReopenAppointment : EntityAction - { - public ReopenAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs deleted file mode 100644 index 06da78013..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReopenOrder : EntityAction - { - public ReopenOrder(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs deleted file mode 100644 index a8815bb95..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReopenSalesOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReopenSalesOrder : EntityAction - { - public ReopenSalesOrder(SalesOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs deleted file mode 100644 index 944122f4f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreArchivedEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RestoreArchivedEmail : EntityAction - { - public RestoreArchivedEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs deleted file mode 100644 index 43abc5262..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RestoreDeletedEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RestoreDeletedEmail : EntityAction - { - public RestoreDeletedEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs deleted file mode 100644 index 910ec34f8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ResumeAppointmentMenuActions.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ResumeAppointmentMenuActions : EntityAction - { - public ResumeAppointmentMenuActions(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs deleted file mode 100644 index f34cba4df..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseBill.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReverseBill : EntityAction - { - public ReverseBill(Bill entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs deleted file mode 100644 index dcd49c68c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ReverseChangeOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReverseChangeOrder : EntityAction - { - public ReverseChangeOrder(ChangeOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs deleted file mode 100644 index bdd913675..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectAllocation.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RunProjectAllocation : EntityAction - { - public RunProjectAllocation(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs deleted file mode 100644 index 7b3dd8b0c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/RunProjectBilling.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RunProjectBilling : EntityAction - { - public RunProjectBilling(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs deleted file mode 100644 index ab827c130..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateReceipt.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderCreateReceipt : EntityActionWithParameters - { - public SalesOrderCreateReceipt(SalesOrder entity, SalesOrderCreateReceiptParameters parameters) : base(entity, parameters) - { } - - public DateTimeValue? ShipmentDate - { - get { return Parameters.ShipmentDate; } - set { Parameters.ShipmentDate = value; } - } - public StringValue? WarehouseID - { - get { return Parameters.WarehouseID; } - set { Parameters.WarehouseID = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs deleted file mode 100644 index 541dcd7fd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SalesOrderCreateShipment.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderCreateShipment : EntityActionWithParameters - { - public SalesOrderCreateShipment(SalesOrder entity, SalesOrderCreateShipmentParameters parameters) : base(entity, parameters) - { } - - public DateTimeValue? ShipmentDate - { - get { return Parameters.ShipmentDate; } - set { Parameters.ShipmentDate = value; } - } - public StringValue? WarehouseID - { - get { return Parameters.WarehouseID; } - set { Parameters.WarehouseID = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs deleted file mode 100644 index ca8e022a1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SendEmail.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SendEmail : EntityAction - { - public SendEmail(Email entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs deleted file mode 100644 index 0d2262e90..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SetResult.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SetResult : EntityActionWithParameters - { - public StringValue? Result - { - get - { - return base.Parameters.Result; - } - set - { - base.Parameters.Result = value; - } - } - - public SetResult(SolutionSubmission entity, SetResultParameters parameters) - : base(entity, parameters) - { - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs deleted file mode 100644 index 1ea508dd7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/StartAppointment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StartAppointment : EntityAction - { - public StartAppointment(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs deleted file mode 100644 index 4f3eaf289..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseClaim.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SubmitExpenseClaim : EntityAction - { - public SubmitExpenseClaim(ExpenseClaim entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs deleted file mode 100644 index 41bce659b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SubmitExpenseReceipt.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SubmitExpenseReceipt : EntityAction - { - public SubmitExpenseReceipt(ExpenseReceipt entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs deleted file mode 100644 index b8142f4ad..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/SuspendProject.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SuspendProject : EntityAction - { - public SuspendProject(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs deleted file mode 100644 index 3fd1adb22..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseAppointmentMenuActions.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UncloseAppointmentMenuActions : EntityAction - { - public UncloseAppointmentMenuActions(Appointment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs deleted file mode 100644 index 0dbd1b786..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UncloseOrder.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UncloseOrder : EntityAction - { - public UncloseOrder(ServiceOrder entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs deleted file mode 100644 index f7508aa05..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectBudget.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UnlockProjectBudget : EntityAction - { - public UnlockProjectBudget(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs deleted file mode 100644 index 4b6d4dbf4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UnlockProjectCommitments.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UnlockProjectCommitments : EntityAction - { - public UnlockProjectCommitments(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs deleted file mode 100644 index 4bbc3d6cc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateDiscounts.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UpdateDiscounts : EntityActionWithParameters - { - public UpdateDiscounts(Discount entity, UpdateDiscountsParameters parameters) : base(entity, parameters) - { } - - public DateTimeValue? Date - { - get { return Parameters.Date; } - set { Parameters.Date = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs deleted file mode 100644 index 91ceb22af..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateIN.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UpdateIN : EntityAction - { - public UpdateIN(Shipment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs deleted file mode 100644 index 8311fb0ce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostNonStockItem.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UpdateStandardCostNonStockItem : EntityAction - { - public UpdateStandardCostNonStockItem(NonStockItem entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs deleted file mode 100644 index 8de072952..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/UpdateStandardCostStockItem.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UpdateStandardCostStockItem : EntityAction - { - public UpdateStandardCostStockItem(StockItem entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs deleted file mode 100644 index 9529dc68f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateBusinessAccountAddresses.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ValidateBusinessAccountAddresses : EntityAction - { - public ValidateBusinessAccountAddresses(BusinessAccount entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs deleted file mode 100644 index 10658209c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateContactAddress.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ValidateContactAddress : EntityAction - { - public ValidateContactAddress(Contact entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs deleted file mode 100644 index 6504cd7d1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateLeadAddress.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ValidateLeadAddress : EntityAction - { - public ValidateLeadAddress(Lead entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs deleted file mode 100644 index a7aa25b83..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/ValidateProjectBalance.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ValidateProjectBalance : EntityAction - { - public ValidateProjectBalance(Project entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs deleted file mode 100644 index 69ffe16cf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCardPayment.cs +++ /dev/null @@ -1,50 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VoidCardPayment : EntityActionWithParameters - { - public VoidCardPayment(Payment entity, VoidCardPaymentParameters parameters) : base(entity, parameters) - { } - - public StringValue? TranType - { - get { return Parameters.TranType; } - set { Parameters.TranType = value; } - } - public StringValue? TranNbr - { - get { return Parameters.TranNbr; } - set { Parameters.TranNbr = value; } - } - public StringValue? ExtProfileId - { - get { return Parameters.ExtProfileId; } - set { Parameters.ExtProfileId = value; } - } - public DateTimeValue? TranDate - { - get { return Parameters.TranDate; } - set { Parameters.TranDate = value; } - } - public BooleanValue? NeedValidation - { - get { return Parameters.NeedValidation; } - set { Parameters.NeedValidation = value; } - } - public StringValue? OrigTranNbr - { - get { return Parameters.OrigTranNbr; } - set { Parameters.OrigTranNbr = value; } - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs deleted file mode 100644 index 815c5a9e0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidCheck.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VoidCheck : EntityAction - { - public VoidCheck(Check entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs deleted file mode 100644 index d8a2cbebf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Actions/VoidPayment.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VoidPayment : EntityAction - { - public VoidPayment(Payment entity) : base(entity) - { } - } -} diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs deleted file mode 100644 index 67c38f33a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Activity.cs +++ /dev/null @@ -1,73 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Activity : Entity, ITopLevelEntity - { - - [DataMember(Name="Body", EmitDefaultValue=false)] - public StringValue? Body { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Internal", EmitDefaultValue=false)] - public BooleanValue? Internal { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Summary", EmitDefaultValue=false)] - public StringValue? Summary { get; set; } - - [DataMember(Name="Task", EmitDefaultValue=false)] - public StringValue? Task { get; set; } - - [DataMember(Name="TimeActivity", EmitDefaultValue=false)] - public TimeActivity? TimeActivity { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - [DataMember(Name="CreatedByID", EmitDefaultValue=false)] - public StringValue? CreatedByID { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] - public StringValue? RelatedEntityType { get; set; } - - [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] - public GuidValue? RelatedEntityNoteID { get; set; } - - [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] - public StringValue? RelatedEntityDescription { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs deleted file mode 100644 index 194fb4d81..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ActivityDetail.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ActivityDetail : Entity - { - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="Overtime", EmitDefaultValue=false)] - public StringValue? Overtime { get; set; } - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public StringValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="Category", EmitDefaultValue=false)] - public StringValue? Category { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="CreatedByID", EmitDefaultValue=false)] - public StringValue? CreatedByID { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="RefNoteID", EmitDefaultValue=false)] - public GuidValue? RefNoteID { get; set; } - - [DataMember(Name="Released", EmitDefaultValue=false)] - public BooleanValue? Released { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Summary", EmitDefaultValue=false)] - public StringValue? Summary { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] - public StringValue? WorkgroupID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs deleted file mode 100644 index c0de29435..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Address.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Address : Entity - { - - [DataMember(Name="AddressLine1", EmitDefaultValue=false)] - public StringValue? AddressLine1 { get; set; } - - [DataMember(Name="AddressLine2", EmitDefaultValue=false)] - public StringValue? AddressLine2 { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="PostalCode", EmitDefaultValue=false)] - public StringValue? PostalCode { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="Validated", EmitDefaultValue=false)] - public BooleanValue? Validated { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs deleted file mode 100644 index 8fdc3ba65..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppAttributes.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppAttributes : Entity - { - - [DataMember(Name="Attribute", EmitDefaultValue=false)] - public StringValue? Attribute { get; set; } - - [DataMember(Name="RefNoteID", EmitDefaultValue=false)] - public GuidValue? RefNoteID { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs deleted file mode 100644 index 428f73b08..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppDetails.cs +++ /dev/null @@ -1,192 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppDetails : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="ActualAmount", EmitDefaultValue=false)] - public DecimalValue? ActualAmount { get; set; } - - [DataMember(Name="ActualDuration", EmitDefaultValue=false)] - public StringValue? ActualDuration { get; set; } - - [DataMember(Name="ActualQty", EmitDefaultValue=false)] - public DecimalValue? ActualQty { get; set; } - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillableAmount", EmitDefaultValue=false)] - public DecimalValue? BillableAmount { get; set; } - - [DataMember(Name="BillableQty", EmitDefaultValue=false)] - public DecimalValue? BillableQty { get; set; } - - [DataMember(Name="BillingRule", EmitDefaultValue=false)] - public StringValue? BillingRule { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ComponentID", EmitDefaultValue=false)] - public StringValue? ComponentID { get; set; } - - [DataMember(Name="ComponentLineRef", EmitDefaultValue=false)] - public StringValue? ComponentLineRef { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CoveredQty", EmitDefaultValue=false)] - public DecimalValue? CoveredQty { get; set; } - - [DataMember(Name="CuryUnitCost", EmitDefaultValue=false)] - public DecimalValue? CuryUnitCost { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="EquipmentAction", EmitDefaultValue=false)] - public StringValue? EquipmentAction { get; set; } - - [DataMember(Name="EquipmentActionComment", EmitDefaultValue=false)] - public StringValue? EquipmentActionComment { get; set; } - - [DataMember(Name="EstimatedAmount", EmitDefaultValue=false)] - public DecimalValue? EstimatedAmount { get; set; } - - [DataMember(Name="EstimatedDuration", EmitDefaultValue=false)] - public StringValue? EstimatedDuration { get; set; } - - [DataMember(Name="EstimatedQty", EmitDefaultValue=false)] - public DecimalValue? EstimatedQty { get; set; } - - [DataMember(Name="ExtPrice", EmitDefaultValue=false)] - public DecimalValue? ExtPrice { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LineRef", EmitDefaultValue=false)] - public StringValue? LineRef { get; set; } - - [DataMember(Name="LineStatus", EmitDefaultValue=false)] - public StringValue? LineStatus { get; set; } - - [DataMember(Name="LineType", EmitDefaultValue=false)] - public StringValue? LineType { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="ManualPrice", EmitDefaultValue=false)] - public BooleanValue? ManualPrice { get; set; } - - [DataMember(Name="MarkforPO", EmitDefaultValue=false)] - public BooleanValue? MarkforPO { get; set; } - - [DataMember(Name="ModelEquipmentLineRef", EmitDefaultValue=false)] - public StringValue? ModelEquipmentLineRef { get; set; } - - [DataMember(Name="OverageQty", EmitDefaultValue=false)] - public DecimalValue? OverageQty { get; set; } - - [DataMember(Name="OverageUnitPrice", EmitDefaultValue=false)] - public DecimalValue? OverageUnitPrice { get; set; } - - [DataMember(Name="PickupDeliveryAction", EmitDefaultValue=false)] - public StringValue? PickupDeliveryAction { get; set; } - - [DataMember(Name="PickupDeliveryLineRef", EmitDefaultValue=false)] - public StringValue? PickupDeliveryLineRef { get; set; } - - [DataMember(Name="PickupDeliveryServiceID", EmitDefaultValue=false)] - public StringValue? PickupDeliveryServiceID { get; set; } - - [DataMember(Name="POCompleted", EmitDefaultValue=false)] - public BooleanValue? POCompleted { get; set; } - - [DataMember(Name="PONbr", EmitDefaultValue=false)] - public StringValue? PONbr { get; set; } - - [DataMember(Name="POStatus", EmitDefaultValue=false)] - public StringValue? POStatus { get; set; } - - [DataMember(Name="PrepaidItem", EmitDefaultValue=false)] - public BooleanValue? PrepaidItem { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="RelatedDocNbr", EmitDefaultValue=false)] - public StringValue? RelatedDocNbr { get; set; } - - [DataMember(Name="ServiceContractItem", EmitDefaultValue=false)] - public BooleanValue? ServiceContractItem { get; set; } - - [DataMember(Name="ServiceOrderLineRef", EmitDefaultValue=false)] - public StringValue? ServiceOrderLineRef { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public IntValue? SortOrder { get; set; } - - [DataMember(Name="StaffMemberID", EmitDefaultValue=false)] - public StringValue? StaffMemberID { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TargetEquipmentID", EmitDefaultValue=false)] - public StringValue? TargetEquipmentID { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - [DataMember(Name="Warranty", EmitDefaultValue=false)] - public BooleanValue? Warranty { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs deleted file mode 100644 index b73e87719..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppFinancialSettings.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppFinancialSettings : Entity - { - - [DataMember(Name="BillingCustomer", EmitDefaultValue=false)] - public StringValue? BillingCustomer { get; set; } - - [DataMember(Name="BillingCycle", EmitDefaultValue=false)] - public StringValue? BillingCycle { get; set; } - - [DataMember(Name="BillingLocation", EmitDefaultValue=false)] - public StringValue? BillingLocation { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="Commissionable", EmitDefaultValue=false)] - public BooleanValue? Commissionable { get; set; } - - [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] - public StringValue? CustomerTaxZone { get; set; } - - [DataMember(Name="RunBillingFor", EmitDefaultValue=false)] - public StringValue? RunBillingFor { get; set; } - - [DataMember(Name="Salesperson", EmitDefaultValue=false)] - public StringValue? Salesperson { get; set; } - - [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] - public StringValue? TaxCalculationMode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs deleted file mode 100644 index a4a71a66d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppLogs.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppLogs : Entity - { - - [DataMember(Name="AddtoActualDuration", EmitDefaultValue=false)] - public BooleanValue? AddtoActualDuration { get; set; } - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="Approved", EmitDefaultValue=false)] - public BooleanValue? Approved { get; set; } - - [DataMember(Name="BillableAmount", EmitDefaultValue=false)] - public DecimalValue? BillableAmount { get; set; } - - [DataMember(Name="BillableLabor", EmitDefaultValue=false)] - public BooleanValue? BillableLabor { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DetailLineRef", EmitDefaultValue=false)] - public StringValue? DetailLineRef { get; set; } - - [DataMember(Name="Duration", EmitDefaultValue=false)] - public StringValue? Duration { get; set; } - - [DataMember(Name="EarningType", EmitDefaultValue=false)] - public StringValue? EarningType { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="EndTime", EmitDefaultValue=false)] - public DateTimeValue? EndTime { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LaborItemID", EmitDefaultValue=false)] - public StringValue? LaborItemID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LogLineRef", EmitDefaultValue=false)] - public StringValue? LogLineRef { get; set; } - - [DataMember(Name="LogLineStatus", EmitDefaultValue=false)] - public StringValue? LogLineStatus { get; set; } - - [DataMember(Name="ManageTimeManually", EmitDefaultValue=false)] - public BooleanValue? ManageTimeManually { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="StaffMember", EmitDefaultValue=false)] - public StringValue? StaffMember { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="StartTime", EmitDefaultValue=false)] - public DateTimeValue? StartTime { get; set; } - - [DataMember(Name="TimeCardRefNbr", EmitDefaultValue=false)] - public StringValue? TimeCardRefNbr { get; set; } - - [DataMember(Name="TrackTime", EmitDefaultValue=false)] - public BooleanValue? TrackTime { get; set; } - - [DataMember(Name="Travel", EmitDefaultValue=false)] - public BooleanValue? Travel { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs deleted file mode 100644 index b34e2b87b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppOtherInformation.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppOtherInformation : Entity - { - - [DataMember(Name="BatchNbr", EmitDefaultValue=false)] - public StringValue? BatchNbr { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocumentType", EmitDefaultValue=false)] - public StringValue? DocumentType { get; set; } - - [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] - public StringValue? InvoiceNbr { get; set; } - - [DataMember(Name="IssueReferenceNbr", EmitDefaultValue=false)] - public StringValue? IssueReferenceNbr { get; set; } - - [DataMember(Name="RecurrenceDescription", EmitDefaultValue=false)] - public StringValue? RecurrenceDescription { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="RouteID", EmitDefaultValue=false)] - public StringValue? RouteID { get; set; } - - [DataMember(Name="RouteNbr", EmitDefaultValue=false)] - public StringValue? RouteNbr { get; set; } - - [DataMember(Name="SourceScheduleID", EmitDefaultValue=false)] - public StringValue? SourceScheduleID { get; set; } - - [DataMember(Name="SourceServiceContractID", EmitDefaultValue=false)] - public StringValue? SourceServiceContractID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs deleted file mode 100644 index 33e6475fc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppPrepayments.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppPrepayments : Entity - { - - [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] - public DateTimeValue? ApplicationDate { get; set; } - - [DataMember(Name="AppliedtoOrders", EmitDefaultValue=false)] - public DecimalValue? AppliedtoOrders { get; set; } - - [DataMember(Name="AvailableBalance", EmitDefaultValue=false)] - public DecimalValue? AvailableBalance { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public IntValue? CashAccount { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] - public DecimalValue? PaymentAmount { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="SourceAppointmentNbr", EmitDefaultValue=false)] - public StringValue? SourceAppointmentNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs deleted file mode 100644 index 31019e042..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppProfitability.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppProfitability : Entity - { - - [DataMember(Name="ActualAmount", EmitDefaultValue=false)] - public DecimalValue? ActualAmount { get; set; } - - [DataMember(Name="ActualDuration", EmitDefaultValue=false)] - public StringValue? ActualDuration { get; set; } - - [DataMember(Name="ActualQuantity", EmitDefaultValue=false)] - public DecimalValue? ActualQuantity { get; set; } - - [DataMember(Name="BillableAmount", EmitDefaultValue=false)] - public DecimalValue? BillableAmount { get; set; } - - [DataMember(Name="BillableQuantity", EmitDefaultValue=false)] - public DecimalValue? BillableQuantity { get; set; } - - [DataMember(Name="ExtCost", EmitDefaultValue=false)] - public DecimalValue? ExtCost { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EstimatedAmount", EmitDefaultValue=false)] - public DecimalValue? EstimatedAmount { get; set; } - - [DataMember(Name="EstimatedQty", EmitDefaultValue=false)] - public DecimalValue? EstimatedQty { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineRef", EmitDefaultValue=false)] - public StringValue? LineRef { get; set; } - - [DataMember(Name="LineType", EmitDefaultValue=false)] - public StringValue? LineType { get; set; } - - [DataMember(Name="Profit", EmitDefaultValue=false)] - public DecimalValue? Profit { get; set; } - - [DataMember(Name="ProfitPercent", EmitDefaultValue=false)] - public DecimalValue? ProfitPercent { get; set; } - - [DataMember(Name="StaffMember", EmitDefaultValue=false)] - public StringValue? StaffMember { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs deleted file mode 100644 index 36cec2d41..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppResourceEquipment.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppResourceEquipment : Entity - { - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="Comment", EmitDefaultValue=false)] - public StringValue? Comment { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EquipmentID", EmitDefaultValue=false)] - public StringValue? EquipmentID { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs deleted file mode 100644 index 0ab20bf0c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppStaff.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppStaff : Entity - { - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DetailLineRef", EmitDefaultValue=false)] - public StringValue? DetailLineRef { get; set; } - - [DataMember(Name="EarningType", EmitDefaultValue=false)] - public StringValue? EarningType { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LineRef", EmitDefaultValue=false)] - public StringValue? LineRef { get; set; } - - [DataMember(Name="PrimaryDriver", EmitDefaultValue=false)] - public BooleanValue? PrimaryDriver { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="RouteDriver", EmitDefaultValue=false)] - public BooleanValue? RouteDriver { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="StaffMember", EmitDefaultValue=false)] - public StringValue? StaffMember { get; set; } - - [DataMember(Name="StaffType", EmitDefaultValue=false)] - public StringValue? StaffType { get; set; } - - [DataMember(Name="TrackTime", EmitDefaultValue=false)] - public BooleanValue? TrackTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs deleted file mode 100644 index 07b6957d4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTaxDetails.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppTaxDetails : Entity - { - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="IncludeinVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeinVATExemptTotal { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs deleted file mode 100644 index b701c4115..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AppTotals.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AppTotals : Entity - { - - [DataMember(Name="ActualTotal", EmitDefaultValue=false)] - public DecimalValue? ActualTotal { get; set; } - - [DataMember(Name="AppointmentBillableTotal", EmitDefaultValue=false)] - public DecimalValue? AppointmentBillableTotal { get; set; } - - [DataMember(Name="AppointmentTotal", EmitDefaultValue=false)] - public DecimalValue? AppointmentTotal { get; set; } - - [DataMember(Name="BillableLaborTotal", EmitDefaultValue=false)] - public DecimalValue? BillableLaborTotal { get; set; } - - [DataMember(Name="BillableTotal", EmitDefaultValue=false)] - public DecimalValue? BillableTotal { get; set; } - - [DataMember(Name="EstimatedTotal", EmitDefaultValue=false)] - public DecimalValue? EstimatedTotal { get; set; } - - [DataMember(Name="LineTotal", EmitDefaultValue=false)] - public DecimalValue? LineTotal { get; set; } - - [DataMember(Name="PrepaymentApplied", EmitDefaultValue=false)] - public DecimalValue? PrepaymentApplied { get; set; } - - [DataMember(Name="PrepaymentReceived", EmitDefaultValue=false)] - public DecimalValue? PrepaymentReceived { get; set; } - - [DataMember(Name="PrepaymentRemaining", EmitDefaultValue=false)] - public DecimalValue? PrepaymentRemaining { get; set; } - - [DataMember(Name="ServiceOrderBillableUnpaidBalance", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderBillableUnpaidBalance { get; set; } - - [DataMember(Name="ServiceOrderTotal", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderTotal { get; set; } - - [DataMember(Name="ServiceOrderUnpaidBalance", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderUnpaidBalance { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] - public DecimalValue? VATExemptTotal { get; set; } - - [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] - public DecimalValue? VATTaxableTotal { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs deleted file mode 100644 index c80c9fa00..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ApplicableWage.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ApplicableWage : Entity - { - - [DataMember(Name="BenefitIncreasingApplWage", EmitDefaultValue=false)] - public BenefitIncreasingApplWage? BenefitIncreasingApplWage { get; set; } - - [DataMember(Name="DeductionsDecreasingApplWage", EmitDefaultValue=false)] - public DeductionDecreasingApplWage? DeductionsDecreasingApplWage { get; set; } - - [DataMember(Name="EarningIncreasingApplWage", EmitDefaultValue=false)] - public EarningIncreasingApplWage? EarningIncreasingApplWage { get; set; } - - [DataMember(Name="EmployeeTaxesDecreasingApplWage", EmitDefaultValue=false)] - public TaxesDecreasingApplWage? EmployeeTaxesDecreasingApplWage { get; set; } - - [DataMember(Name="EmployerTaxesIncreasingApplWage", EmitDefaultValue=false)] - public EmployerTaxesIncreasingApplWage? EmployerTaxesIncreasingApplWage { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs deleted file mode 100644 index 2bef83f0a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Appointment.cs +++ /dev/null @@ -1,169 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Appointment : Entity, ITopLevelEntity - { - - [DataMember(Name="ActualDuration", EmitDefaultValue=false)] - public StringValue? ActualDuration { get; set; } - - [DataMember(Name="ActualEndDate", EmitDefaultValue=false)] - public DateTimeValue? ActualEndDate { get; set; } - - [DataMember(Name="ActualEndTime", EmitDefaultValue=false)] - public DateTimeValue? ActualEndTime { get; set; } - - [DataMember(Name="ActualHandleManually", EmitDefaultValue=false)] - public BooleanValue? ActualHandleManually { get; set; } - - [DataMember(Name="ActualServiceDuration", EmitDefaultValue=false)] - public StringValue? ActualServiceDuration { get; set; } - - [DataMember(Name="ActualStartDate", EmitDefaultValue=false)] - public DateTimeValue? ActualStartDate { get; set; } - - [DataMember(Name="ActualStartTime", EmitDefaultValue=false)] - public DateTimeValue? ActualStartTime { get; set; } - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="AppointmentTotal", EmitDefaultValue=false)] - public DecimalValue? AppointmentTotal { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BranchLocation", EmitDefaultValue=false)] - public StringValue? BranchLocation { get; set; } - - [DataMember(Name="Confirmed", EmitDefaultValue=false)] - public BooleanValue? Confirmed { get; set; } - - [DataMember(Name="CostTotal", EmitDefaultValue=false)] - public DecimalValue? CostTotal { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="DefaultProjectTask", EmitDefaultValue=false)] - public StringValue? DefaultProjectTask { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="EstimatedServiceDuration", EmitDefaultValue=false)] - public StringValue? EstimatedServiceDuration { get; set; } - - [DataMember(Name="FinancialSettings", EmitDefaultValue=false)] - public AppFinancialSettings? FinancialSettings { get; set; } - - [DataMember(Name="Finished", EmitDefaultValue=false)] - public BooleanValue? Finished { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="Logs", EmitDefaultValue=false)] - public List? Logs { get; set; } - - [DataMember(Name="OptimizationResult", EmitDefaultValue=false)] - public StringValue? OptimizationResult { get; set; } - - [DataMember(Name="OtherInformation", EmitDefaultValue=false)] - public AppOtherInformation? OtherInformation { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - [DataMember(Name="Prepayments", EmitDefaultValue=false)] - public List? Prepayments { get; set; } - - [DataMember(Name="Profit", EmitDefaultValue=false)] - public DecimalValue? Profit { get; set; } - - [DataMember(Name="Profitability", EmitDefaultValue=false)] - public List? Profitability { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ResourceEquipment", EmitDefaultValue=false)] - public List? ResourceEquipment { get; set; } - - [DataMember(Name="ScheduledDuration", EmitDefaultValue=false)] - public StringValue? ScheduledDuration { get; set; } - - [DataMember(Name="ScheduledEndDate", EmitDefaultValue=false)] - public DateTimeValue? ScheduledEndDate { get; set; } - - [DataMember(Name="ScheduledEndTime", EmitDefaultValue=false)] - public DateTimeValue? ScheduledEndTime { get; set; } - - [DataMember(Name="ScheduledHandleManually", EmitDefaultValue=false)] - public BooleanValue? ScheduledHandleManually { get; set; } - - [DataMember(Name="ScheduledStartDate", EmitDefaultValue=false)] - public DateTimeValue? ScheduledStartDate { get; set; } - - [DataMember(Name="ScheduledStartTime", EmitDefaultValue=false)] - public DateTimeValue? ScheduledStartTime { get; set; } - - [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] - public StringValue? ServiceOrderNbr { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="Staff", EmitDefaultValue=false)] - public List? Staff { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Totals", EmitDefaultValue=false)] - public AppTotals? Totals { get; set; } - - [DataMember(Name="UnreachedCustomer", EmitDefaultValue=false)] - public BooleanValue? UnreachedCustomer { get; set; } - - [DataMember(Name="ValidatedbyDispatcher", EmitDefaultValue=false)] - public BooleanValue? ValidatedbyDispatcher { get; set; } - - [DataMember(Name="WaitingforPurchasedItems", EmitDefaultValue=false)] - public BooleanValue? WaitingforPurchasedItems { get; set; } - - [DataMember(Name="WorkflowStage", EmitDefaultValue=false)] - public StringValue? WorkflowStage { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs deleted file mode 100644 index abe5c5867..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Approval.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Approval : Entity - { - - [DataMember(Name="ApprovedBy", EmitDefaultValue=false)] - public StringValue? ApprovedBy { get; set; } - - [DataMember(Name="ApprovedByName", EmitDefaultValue=false)] - public StringValue? ApprovedByName { get; set; } - - [DataMember(Name="Approver", EmitDefaultValue=false)] - public StringValue? Approver { get; set; } - - [DataMember(Name="ApproverName", EmitDefaultValue=false)] - public StringValue? ApproverName { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs deleted file mode 100644 index 9880afda3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Attribute.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Attribute : Entity - { - - [DataMember(Name="AttributeName", EmitDefaultValue=false)] - public StringValue? AttributeName { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs deleted file mode 100644 index cdec08a35..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinition.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AttributeDefinition : Entity, ITopLevelEntity - { - - [DataMember(Name="AttributeID", EmitDefaultValue=false)] - public StringValue? AttributeID { get; set; } - - [DataMember(Name="ControlType", EmitDefaultValue=false)] - public StringValue? ControlType { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EntryMask", EmitDefaultValue=false)] - public StringValue? EntryMask { get; set; } - - [DataMember(Name="Internal", EmitDefaultValue=false)] - public BooleanValue? Internal { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="RegExp", EmitDefaultValue=false)] - public StringValue? RegExp { get; set; } - - [DataMember(Name="Values", EmitDefaultValue=false)] - public List? Values { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs deleted file mode 100644 index e990a66fa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeDefinitionValue.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AttributeDefinitionValue : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Disabled", EmitDefaultValue=false)] - public BooleanValue? Disabled { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public ShortValue? SortOrder { get; set; } - - [DataMember(Name="ValueID", EmitDefaultValue=false)] - public StringValue? ValueID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs deleted file mode 100644 index dcb432690..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/AttributeValue.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class AttributeValue : Entity - { - - [DataMember(Name="AttributeID", EmitDefaultValue=false)] - public StringValue? AttributeID { get; set; } - - [DataMember(Name="AttributeDescription", EmitDefaultValue=false)] - public StringValue? AttributeDescription { get; set; } - - [DataMember(Name="RefNoteID", EmitDefaultValue=false)] - public GuidValue? RefNoteID { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - [DataMember(Name="ValueDescription", EmitDefaultValue=false)] - public StringValue? ValueDescription { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs deleted file mode 100644 index f3645034e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BCRoleAssignment.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BCRoleAssignment : Entity - { - - [DataMember(Name="RoleAssignmentID", EmitDefaultValue=false)] - public IntValue? RoleAssignmentID { get; set; } - - [DataMember(Name="BAccountID", EmitDefaultValue=false)] - public IntValue? BAccountID { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="LocationCD", EmitDefaultValue=false)] - public StringValue? LocationCD { get; set; } - - [DataMember(Name="Role", EmitDefaultValue=false)] - public StringValue? Role { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs deleted file mode 100644 index f5ea5127e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchDeductionOrBenefitDetail.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BatchDeductionOrBenefitDetail : Entity - { - - [DataMember(Name="BatchNumber", EmitDefaultValue=false)] - public StringValue? BatchNumber { get; set; } - - [DataMember(Name="BenefitAmount", EmitDefaultValue=false)] - public DecimalValue? BenefitAmount { get; set; } - - [DataMember(Name="BenefitCalculationMethod", EmitDefaultValue=false)] - public StringValue? BenefitCalculationMethod { get; set; } - - [DataMember(Name="BenefitPercent", EmitDefaultValue=false)] - public DecimalValue? BenefitPercent { get; set; } - - [DataMember(Name="ContributionType", EmitDefaultValue=false)] - public StringValue? ContributionType { get; set; } - - [DataMember(Name="DeductionAmount", EmitDefaultValue=false)] - public DecimalValue? DeductionAmount { get; set; } - - [DataMember(Name="DeductionCalculationMethod", EmitDefaultValue=false)] - public StringValue? DeductionCalculationMethod { get; set; } - - [DataMember(Name="DeductionCode", EmitDefaultValue=false)] - public StringValue? DeductionCode { get; set; } - - [DataMember(Name="DeductionPercent", EmitDefaultValue=false)] - public DecimalValue? DeductionPercent { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Enabled", EmitDefaultValue=false)] - public BooleanValue? Enabled { get; set; } - - [DataMember(Name="IsGarnishment", EmitDefaultValue=false)] - public BooleanValue? IsGarnishment { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs deleted file mode 100644 index 95a5c06d7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchEarningDetail.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BatchEarningDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="AllowCopy", EmitDefaultValue=false)] - public BooleanValue? AllowCopy { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] - public BooleanValue? CertifiedJob { get; set; } - - [DataMember(Name="Code", EmitDefaultValue=false)] - public StringValue? Code { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Employee", EmitDefaultValue=false)] - public StringValue? Employee { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="Hours", EmitDefaultValue=false)] - public DecimalValue? Hours { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="ManualRate", EmitDefaultValue=false)] - public BooleanValue? ManualRate { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="Rate", EmitDefaultValue=false)] - public DecimalValue? Rate { get; set; } - - [DataMember(Name="ExcelRecordID", EmitDefaultValue=false)] - public StringValue? ExcelRecordID { get; set; } - - [DataMember(Name="ShiftCode", EmitDefaultValue=false)] - public StringValue? ShiftCode { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Task", EmitDefaultValue=false)] - public StringValue? Task { get; set; } - - [DataMember(Name="TimeActivity", EmitDefaultValue=false)] - public StringValue? TimeActivity { get; set; } - - [DataMember(Name="UnionLocal", EmitDefaultValue=false)] - public StringValue? UnionLocal { get; set; } - - [DataMember(Name="Units", EmitDefaultValue=false)] - public DecimalValue? Units { get; set; } - - [DataMember(Name="UnitType", EmitDefaultValue=false)] - public StringValue? UnitType { get; set; } - - [DataMember(Name="WCCCode", EmitDefaultValue=false)] - public StringValue? WCCCode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs deleted file mode 100644 index 39342dc4e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRules.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BatchOvertimeRules : Entity - { - - [DataMember(Name="ApplyOvertimeRulesfortheDocument", EmitDefaultValue=false)] - public BooleanValue? ApplyOvertimeRulesfortheDocument { get; set; } - - [DataMember(Name="OvertimeRulesDetails", EmitDefaultValue=false)] - public List? OvertimeRulesDetails { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs deleted file mode 100644 index d89bf2cf9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BatchOvertimeRulesDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BatchOvertimeRulesDetail : Entity - { - - [DataMember(Name="DayofWeek", EmitDefaultValue=false)] - public StringValue? DayofWeek { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DisbursingEarningType", EmitDefaultValue=false)] - public StringValue? DisbursingEarningType { get; set; } - - [DataMember(Name="Enabled", EmitDefaultValue=false)] - public BooleanValue? Enabled { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Multiplier", EmitDefaultValue=false)] - public DecimalValue? Multiplier { get; set; } - - [DataMember(Name="OvertimeRule", EmitDefaultValue=false)] - public StringValue? OvertimeRule { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="ThresholdforOvertimehours", EmitDefaultValue=false)] - public DecimalValue? ThresholdforOvertimehours { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UnionLocal", EmitDefaultValue=false)] - public StringValue? UnionLocal { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs deleted file mode 100644 index df83bf458..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWage.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BenefitIncreasingApplWage : Entity - { - - [DataMember(Name="BenefitIncreasingApplWageDetails", EmitDefaultValue=false)] - public List? BenefitIncreasingApplWageDetails { get; set; } - - [DataMember(Name="InclusionType", EmitDefaultValue=false)] - public StringValue? InclusionType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs deleted file mode 100644 index 53744f19b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BenefitIncreasingApplWageDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BenefitIncreasingApplWageDetail : Entity - { - - [DataMember(Name="BenefitCode", EmitDefaultValue=false)] - public StringValue? BenefitCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs deleted file mode 100644 index 6f22a1d67..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BigCommerceStores.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BigCommerceStores : Entity, ITopLevelEntity - { - - [DataMember(Name="AccessToken", EmitDefaultValue=false)] - public StringValue? AccessToken { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="APIPath", EmitDefaultValue=false)] - public StringValue? APIPath { get; set; } - - [DataMember(Name="ClientID", EmitDefaultValue=false)] - public StringValue? ClientID { get; set; } - - [DataMember(Name="Connector", EmitDefaultValue=false)] - public StringValue? Connector { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="StoreAdminPath", EmitDefaultValue=false)] - public StringValue? StoreAdminPath { get; set; } - - [DataMember(Name="StoreName", EmitDefaultValue=false)] - public StringValue? StoreName { get; set; } - - [DataMember(Name="WebDAVPassword", EmitDefaultValue=false)] - public StringValue? WebDAVPassword { get; set; } - - [DataMember(Name="WebDAVPath", EmitDefaultValue=false)] - public StringValue? WebDAVPath { get; set; } - - [DataMember(Name="WebDAVUsername", EmitDefaultValue=false)] - public StringValue? WebDAVUsername { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs deleted file mode 100644 index f38e822e8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Bill.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Bill : Entity, ITopLevelEntity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Applications", EmitDefaultValue=false)] - public List? Applications { get; set; } - - [DataMember(Name="ApprovedForPayment", EmitDefaultValue=false)] - public BooleanValue? ApprovedForPayment { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - [DataMember(Name="VendorRef", EmitDefaultValue=false)] - public StringValue? VendorRef { get; set; } - - [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] - public BooleanValue? IsTaxValid { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs deleted file mode 100644 index c53425f3b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillApplicationDetail.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BillApplicationDetail : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs deleted file mode 100644 index 4d7bf0351..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillDetail.cs +++ /dev/null @@ -1,87 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BillDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] - public BooleanValue? CalculateDiscountsOnImport { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] - public DecimalValue? ExtendedCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="NonBillable", EmitDefaultValue=false)] - public BooleanValue? NonBillable { get; set; } - - [DataMember(Name="POLine", EmitDefaultValue=false)] - public IntValue? POLine { get; set; } - - [DataMember(Name="POOrderNbr", EmitDefaultValue=false)] - public StringValue? POOrderNbr { get; set; } - - [DataMember(Name="POOrderType", EmitDefaultValue=false)] - public StringValue? POOrderType { get; set; } - - [DataMember(Name="POReceiptLine", EmitDefaultValue=false)] - public IntValue? POReceiptLine { get; set; } - - [DataMember(Name="POReceiptType", EmitDefaultValue=false)] - public StringValue? POReceiptType { get; set; } - - [DataMember(Name="POReceiptNbr", EmitDefaultValue=false)] - public StringValue? POReceiptNbr { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs deleted file mode 100644 index dbdfc83b0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillTaxDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BillTaxDetail : Entity - { - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs deleted file mode 100644 index e3c3148db..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BillToSettings.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BillToSettings : Entity - { - - [DataMember(Name="BillToAddress", EmitDefaultValue=false)] - public Address? BillToAddress { get; set; } - - [DataMember(Name="BillToAddressOverride", EmitDefaultValue=false)] - public BooleanValue? BillToAddressOverride { get; set; } - - [DataMember(Name="BillToContact", EmitDefaultValue=false)] - public DocContact? BillToContact { get; set; } - - [DataMember(Name="BillToContactOverride", EmitDefaultValue=false)] - public BooleanValue? BillToContactOverride { get; set; } - - [DataMember(Name="CustomerLocation", EmitDefaultValue=false)] - public StringValue? CustomerLocation { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs deleted file mode 100644 index ba948bb28..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BoxStockItem.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BoxStockItem : Entity - { - - [DataMember(Name="BoxID", EmitDefaultValue=false)] - public StringValue? BoxID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="MaxQty", EmitDefaultValue=false)] - public DecimalValue? MaxQty { get; set; } - - [DataMember(Name="MaxVolume", EmitDefaultValue=false)] - public DecimalValue? MaxVolume { get; set; } - - [DataMember(Name="MaxWeight", EmitDefaultValue=false)] - public DecimalValue? MaxWeight { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs deleted file mode 100644 index 399cb1be4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Budget.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Budget : Entity, ITopLevelEntity - { - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ComparetoBranch", EmitDefaultValue=false)] - public StringValue? ComparetoBranch { get; set; } - - [DataMember(Name="ComparetoLedger", EmitDefaultValue=false)] - public StringValue? ComparetoLedger { get; set; } - - [DataMember(Name="ComparetoYear", EmitDefaultValue=false)] - public StringValue? ComparetoYear { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="FinancialYear", EmitDefaultValue=false)] - public StringValue? FinancialYear { get; set; } - - [DataMember(Name="Ledger", EmitDefaultValue=false)] - public StringValue? Ledger { get; set; } - - [DataMember(Name="SubaccountFilter", EmitDefaultValue=false)] - public StringValue? SubaccountFilter { get; set; } - - [DataMember(Name="TreeNodeFilter", EmitDefaultValue=false)] - public StringValue? TreeNodeFilter { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs deleted file mode 100644 index 2f963022d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BudgetDetail.cs +++ /dev/null @@ -1,96 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BudgetDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CreatedBy", EmitDefaultValue=false)] - public StringValue? CreatedBy { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DistributedAmount", EmitDefaultValue=false)] - public DecimalValue? DistributedAmount { get; set; } - - [DataMember(Name="FinancialYear", EmitDefaultValue=false)] - public StringValue? FinancialYear { get; set; } - - [DataMember(Name="GroupID", EmitDefaultValue=false)] - public GuidValue? GroupID { get; set; } - - [DataMember(Name="LastModifiedBy", EmitDefaultValue=false)] - public StringValue? LastModifiedBy { get; set; } - - [DataMember(Name="LedgerID", EmitDefaultValue=false)] - public StringValue? LedgerID { get; set; } - - [DataMember(Name="Node", EmitDefaultValue=false)] - public BooleanValue? Node { get; set; } - - [DataMember(Name="Period01", EmitDefaultValue=false)] - public DecimalValue? Period01 { get; set; } - - [DataMember(Name="Period02", EmitDefaultValue=false)] - public DecimalValue? Period02 { get; set; } - - [DataMember(Name="Period03", EmitDefaultValue=false)] - public DecimalValue? Period03 { get; set; } - - [DataMember(Name="Period04", EmitDefaultValue=false)] - public DecimalValue? Period04 { get; set; } - - [DataMember(Name="Period05", EmitDefaultValue=false)] - public DecimalValue? Period05 { get; set; } - - [DataMember(Name="Period06", EmitDefaultValue=false)] - public DecimalValue? Period06 { get; set; } - - [DataMember(Name="Period07", EmitDefaultValue=false)] - public DecimalValue? Period07 { get; set; } - - [DataMember(Name="Period08", EmitDefaultValue=false)] - public DecimalValue? Period08 { get; set; } - - [DataMember(Name="Period09", EmitDefaultValue=false)] - public DecimalValue? Period09 { get; set; } - - [DataMember(Name="Period10", EmitDefaultValue=false)] - public DecimalValue? Period10 { get; set; } - - [DataMember(Name="Period11", EmitDefaultValue=false)] - public DecimalValue? Period11 { get; set; } - - [DataMember(Name="Period12", EmitDefaultValue=false)] - public DecimalValue? Period12 { get; set; } - - [DataMember(Name="Period13", EmitDefaultValue=false)] - public DecimalValue? Period13 { get; set; } - - [DataMember(Name="Released", EmitDefaultValue=false)] - public BooleanValue? Released { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs deleted file mode 100644 index c3291c755..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccount.cs +++ /dev/null @@ -1,142 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccount : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountRef", EmitDefaultValue=false)] - public StringValue? AccountRef { get; set; } - - [DataMember(Name="Activities", EmitDefaultValue=false)] - public List? Activities { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - - [DataMember(Name="Campaigns", EmitDefaultValue=false)] - public List? Campaigns { get; set; } - - [DataMember(Name="Cases", EmitDefaultValue=false)] - public List? Cases { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="Contacts", EmitDefaultValue=false)] - public List? Contacts { get; set; } - - [DataMember(Name="Contracts", EmitDefaultValue=false)] - public List? Contracts { get; set; } - - [DataMember(Name="DefaultLocationSettings", EmitDefaultValue=false)] - public BusinessAccountDefaultLocationSetting? DefaultLocationSettings { get; set; } - - [DataMember(Name="Duplicate", EmitDefaultValue=false)] - public StringValue? Duplicate { get; set; } - - [DataMember(Name="Duplicates", EmitDefaultValue=false)] - public List? Duplicates { get; set; } - - [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastIncomingActivity { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastOutgoingActivity { get; set; } - - [DataMember(Name="Locations", EmitDefaultValue=false)] - public List? Locations { get; set; } - - [DataMember(Name="MainAddress", EmitDefaultValue=false)] - public Address? MainAddress { get; set; } - - [DataMember(Name="MainAddressValidated", EmitDefaultValue=false)] - public BooleanValue? MainAddressValidated { get; set; } - - [DataMember(Name="MainContact", EmitDefaultValue=false)] - public BusinessAccountMainContact? MainContact { get; set; } - - [DataMember(Name="MarketingLists", EmitDefaultValue=false)] - public List? MarketingLists { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="Opportunities", EmitDefaultValue=false)] - public List? Opportunities { get; set; } - - [DataMember(Name="Orders", EmitDefaultValue=false)] - public List? Orders { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] - public StringValue? OwnerEmployeeName { get; set; } - - [DataMember(Name="ParentAccount", EmitDefaultValue=false)] - public StringValue? ParentAccount { get; set; } - - [DataMember(Name="PrimaryContact", EmitDefaultValue=false)] - public Contact? PrimaryContact { get; set; } - - [DataMember(Name="Relations", EmitDefaultValue=false)] - public List? Relations { get; set; } - - [DataMember(Name="ShippingAddress", EmitDefaultValue=false)] - public Address? ShippingAddress { get; set; } - - [DataMember(Name="ShippingAddressOverride", EmitDefaultValue=false)] - public BooleanValue? ShippingAddressOverride { get; set; } - - [DataMember(Name="ShippingAddressValidated", EmitDefaultValue=false)] - public BooleanValue? ShippingAddressValidated { get; set; } - - [DataMember(Name="ShippingContact", EmitDefaultValue=false)] - public BusinessAccountShippingContact? ShippingContact { get; set; } - - [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] - public StringValue? SourceCampaign { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] - public StringValue? WorkgroupDescription { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] - public BooleanValue? EnableCurrencyOverride { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs deleted file mode 100644 index 532d9be21..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountCaseDetail.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountCaseDetail : Entity - { - - [DataMember(Name="CaseID", EmitDefaultValue=false)] - public StringValue? CaseID { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="ClosingDate", EmitDefaultValue=false)] - public DateTimeValue? ClosingDate { get; set; } - - [DataMember(Name="Contract", EmitDefaultValue=false)] - public StringValue? Contract { get; set; } - - [DataMember(Name="DateReported", EmitDefaultValue=false)] - public DateTimeValue? DateReported { get; set; } - - [DataMember(Name="Estimation", EmitDefaultValue=false)] - public StringValue? Estimation { get; set; } - - [DataMember(Name="InitialResponse", EmitDefaultValue=false)] - public StringValue? InitialResponse { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - - [DataMember(Name="Severity", EmitDefaultValue=false)] - public StringValue? Severity { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs deleted file mode 100644 index 7a7b55781..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountClassAttributeDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountClassAttributeDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AttributeID", EmitDefaultValue=false)] - public StringValue? AttributeID { get; set; } - - [DataMember(Name="DefaultValue", EmitDefaultValue=false)] - public StringValue? DefaultValue { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public ShortValue? SortOrder { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs deleted file mode 100644 index 0382bdd0d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContact.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountContact : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="DisplayName", EmitDefaultValue=false)] - public StringValue? DisplayName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs deleted file mode 100644 index 59adf6dc3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountContract.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountContract : Entity - { - - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - - [DataMember(Name="ContractID", EmitDefaultValue=false)] - public StringValue? ContractID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs deleted file mode 100644 index e7c727728..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountDefaultLocationSetting.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountDefaultLocationSetting : Entity - { - - [DataMember(Name="FOBPoint", EmitDefaultValue=false)] - public StringValue? FOBPoint { get; set; } - - [DataMember(Name="Insurance", EmitDefaultValue=false)] - public BooleanValue? Insurance { get; set; } - - [DataMember(Name="LeadTimeInDays", EmitDefaultValue=false)] - public ShortValue? LeadTimeInDays { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - [DataMember(Name="OrderPriority", EmitDefaultValue=false)] - public ShortValue? OrderPriority { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] - public BooleanValue? ResidentialDelivery { get; set; } - - [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] - public BooleanValue? SaturdayDelivery { get; set; } - - [DataMember(Name="ShippingBranch", EmitDefaultValue=false)] - public StringValue? ShippingBranch { get; set; } - - [DataMember(Name="ShippingRule", EmitDefaultValue=false)] - public StringValue? ShippingRule { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShippingZone", EmitDefaultValue=false)] - public StringValue? ShippingZone { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] - public StringValue? TaxRegistrationID { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs deleted file mode 100644 index d84a04a14..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountLocation.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountLocation : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs deleted file mode 100644 index 510a01b00..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountMainContact.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountMainContact : Entity - { - - [DataMember(Name="Attention", EmitDefaultValue=false)] - public StringValue? Attention { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Fax", EmitDefaultValue=false)] - public StringValue? Fax { get; set; } - - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - - [DataMember(Name="LanguageOrLocale", EmitDefaultValue=false)] - public StringValue? LanguageOrLocale { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - - [DataMember(Name="Web", EmitDefaultValue=false)] - public StringValue? Web { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs deleted file mode 100644 index 5f1667132..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOpportunityDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountOpportunityDetail : Entity - { - - [DataMember(Name="BusinessAccountID", EmitDefaultValue=false)] - public StringValue? BusinessAccountID { get; set; } - - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="DisplayName", EmitDefaultValue=false)] - public StringValue? DisplayName { get; set; } - - [DataMember(Name="Estimation", EmitDefaultValue=false)] - public DateTimeValue? Estimation { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Probability", EmitDefaultValue=false)] - public IntValue? Probability { get; set; } - - [DataMember(Name="Stage", EmitDefaultValue=false)] - public StringValue? Stage { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="Total", EmitDefaultValue=false)] - public DecimalValue? Total { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs deleted file mode 100644 index b9e8dd14a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountOrder.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountOrder : Entity - { - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="OrderedQty", EmitDefaultValue=false)] - public DecimalValue? OrderedQty { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderTotal", EmitDefaultValue=false)] - public DecimalValue? OrderTotal { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="OrderVolume", EmitDefaultValue=false)] - public DecimalValue? OrderVolume { get; set; } - - [DataMember(Name="OrderWeight", EmitDefaultValue=false)] - public DecimalValue? OrderWeight { get; set; } - - [DataMember(Name="RequestedOn", EmitDefaultValue=false)] - public DateTimeValue? RequestedOn { get; set; } - - [DataMember(Name="ScheduledShipment", EmitDefaultValue=false)] - public DateTimeValue? ScheduledShipment { get; set; } - - [DataMember(Name="ShippingZone", EmitDefaultValue=false)] - public StringValue? ShippingZone { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs deleted file mode 100644 index ce5fb3e60..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountPaymentInstructionDetail.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountPaymentInstructionDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public IntValue? LocationID { get; set; } - - [DataMember(Name="PaymentInstructionsID", EmitDefaultValue=false)] - public StringValue? PaymentInstructionsID { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs deleted file mode 100644 index 767a8d19f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/BusinessAccountShippingContact.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class BusinessAccountShippingContact : Entity - { - - [DataMember(Name="Attention", EmitDefaultValue=false)] - public StringValue? Attention { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Fax", EmitDefaultValue=false)] - public StringValue? Fax { get; set; } - - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs deleted file mode 100644 index 75648b2c3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CalendarSettings.cs +++ /dev/null @@ -1,102 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CalendarSettings : Entity - { - - [DataMember(Name="Friday", EmitDefaultValue=false)] - public BooleanValue? Friday { get; set; } - - [DataMember(Name="FridayEndTime", EmitDefaultValue=false)] - public DateTimeValue? FridayEndTime { get; set; } - - [DataMember(Name="FridayStartTime", EmitDefaultValue=false)] - public DateTimeValue? FridayStartTime { get; set; } - - [DataMember(Name="FriUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? FriUnpaidBreakTime { get; set; } - - [DataMember(Name="Monday", EmitDefaultValue=false)] - public BooleanValue? Monday { get; set; } - - [DataMember(Name="MondayEndTime", EmitDefaultValue=false)] - public DateTimeValue? MondayEndTime { get; set; } - - [DataMember(Name="MondayStartTime", EmitDefaultValue=false)] - public DateTimeValue? MondayStartTime { get; set; } - - [DataMember(Name="MonUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? MonUnpaidBreakTime { get; set; } - - [DataMember(Name="SatUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? SatUnpaidBreakTime { get; set; } - - [DataMember(Name="Saturday", EmitDefaultValue=false)] - public BooleanValue? Saturday { get; set; } - - [DataMember(Name="SaturdayEndTime", EmitDefaultValue=false)] - public DateTimeValue? SaturdayEndTime { get; set; } - - [DataMember(Name="SaturdayStartTime", EmitDefaultValue=false)] - public DateTimeValue? SaturdayStartTime { get; set; } - - [DataMember(Name="Sunday", EmitDefaultValue=false)] - public BooleanValue? Sunday { get; set; } - - [DataMember(Name="SundayEndTime", EmitDefaultValue=false)] - public DateTimeValue? SundayEndTime { get; set; } - - [DataMember(Name="SundayStartTime", EmitDefaultValue=false)] - public DateTimeValue? SundayStartTime { get; set; } - - [DataMember(Name="SunUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? SunUnpaidBreakTime { get; set; } - - [DataMember(Name="Thursday", EmitDefaultValue=false)] - public BooleanValue? Thursday { get; set; } - - [DataMember(Name="ThursdayEndTime", EmitDefaultValue=false)] - public DateTimeValue? ThursdayEndTime { get; set; } - - [DataMember(Name="ThursdayStartTime", EmitDefaultValue=false)] - public DateTimeValue? ThursdayStartTime { get; set; } - - [DataMember(Name="ThuUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? ThuUnpaidBreakTime { get; set; } - - [DataMember(Name="Tuesday", EmitDefaultValue=false)] - public BooleanValue? Tuesday { get; set; } - - [DataMember(Name="TuesdayEndTime", EmitDefaultValue=false)] - public DateTimeValue? TuesdayEndTime { get; set; } - - [DataMember(Name="TuesdayStartTime", EmitDefaultValue=false)] - public DateTimeValue? TuesdayStartTime { get; set; } - - [DataMember(Name="TueUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? TueUnpaidBreakTime { get; set; } - - [DataMember(Name="Wednesday", EmitDefaultValue=false)] - public BooleanValue? Wednesday { get; set; } - - [DataMember(Name="WednesdayEndTime", EmitDefaultValue=false)] - public DateTimeValue? WednesdayEndTime { get; set; } - - [DataMember(Name="WednesdayStartTime", EmitDefaultValue=false)] - public DateTimeValue? WednesdayStartTime { get; set; } - - [DataMember(Name="WedUnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? WedUnpaidBreakTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs deleted file mode 100644 index b24d27d40..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CampaignDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CampaignDetail : Entity - { - - [DataMember(Name="CampaignID", EmitDefaultValue=false)] - public StringValue? CampaignID { get; set; } - - [DataMember(Name="CampaignName", EmitDefaultValue=false)] - public StringValue? CampaignName { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="Stage", EmitDefaultValue=false)] - public StringValue? Stage { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs deleted file mode 100644 index 2c1c70ed9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Carrier.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Carrier : Entity, ITopLevelEntity - { - - [DataMember(Name="CarrierID", EmitDefaultValue=false)] - public StringValue? CarrierID { get; set; } - - [DataMember(Name="CarrierUnits", EmitDefaultValue=false)] - public StringValue? CarrierUnits { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CustomerAccounts", EmitDefaultValue=false)] - public List? CustomerAccounts { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PlugInParameters", EmitDefaultValue=false)] - public List? PlugInParameters { get; set; } - - [DataMember(Name="PlugInType", EmitDefaultValue=false)] - public StringValue? PlugInType { get; set; } - - [DataMember(Name="Centimeter", EmitDefaultValue=false)] - public StringValue? Centimeter { get; set; } - - [DataMember(Name="Inch", EmitDefaultValue=false)] - public StringValue? Inch { get; set; } - - [DataMember(Name="Kilogram", EmitDefaultValue=false)] - public StringValue? Kilogram { get; set; } - - [DataMember(Name="Pound", EmitDefaultValue=false)] - public StringValue? Pound { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs deleted file mode 100644 index 2b4f0ba83..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierCustomerAccount.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CarrierCustomerAccount : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CarrierAccount", EmitDefaultValue=false)] - public StringValue? CarrierAccount { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CustomerName", EmitDefaultValue=false)] - public StringValue? CustomerName { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="PostalCode", EmitDefaultValue=false)] - public StringValue? PostalCode { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs deleted file mode 100644 index 52974b8ad..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CarrierPluginParameter.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CarrierPluginParameter : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="PluginID", EmitDefaultValue=false)] - public StringValue? PluginID { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs deleted file mode 100644 index 443aa0709..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Case.cs +++ /dev/null @@ -1,142 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Case : Entity, ITopLevelEntity - { - - [DataMember(Name="ISVSolution", EmitDefaultValue=false)] - public StringValue? ISVSolution { get; set; } - - [DataMember(Name="Estimation", EmitDefaultValue=false)] - public StringValue? Estimation { get; set; } - - [DataMember(Name="Activities", EmitDefaultValue=false)] - public List? Activities { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public IntValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public IntValue? BillableTime { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - - [DataMember(Name="CaseID", EmitDefaultValue=false)] - public StringValue? CaseID { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="ClosingDate", EmitDefaultValue=false)] - public DateTimeValue? ClosingDate { get; set; } - - [DataMember(Name="ContactDisplayName", EmitDefaultValue=false)] - public StringValue? ContactDisplayName { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="Contract", EmitDefaultValue=false)] - public StringValue? Contract { get; set; } - - [DataMember(Name="DateReported", EmitDefaultValue=false)] - public DateTimeValue? DateReported { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InitialResponse", EmitDefaultValue=false)] - public StringValue? InitialResponse { get; set; } - - [DataMember(Name="LastActivityDate", EmitDefaultValue=false)] - public DateTimeValue? LastActivityDate { get; set; } - - [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastIncomingActivity { get; set; } - - [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastOutgoingActivity { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="ManualOverride", EmitDefaultValue=false)] - public BooleanValue? ManualOverride { get; set; } - - [DataMember(Name="OvertimeSpent", EmitDefaultValue=false)] - public StringValue? OvertimeSpent { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] - public StringValue? OwnerEmployeeName { get; set; } - - [DataMember(Name="Priority", EmitDefaultValue=false)] - public StringValue? Priority { get; set; } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - - [DataMember(Name="RelatedCases", EmitDefaultValue=false)] - public List? RelatedCases { get; set; } - - [DataMember(Name="Relations", EmitDefaultValue=false)] - public List? Relations { get; set; } - - [DataMember(Name="ResolutionTime", EmitDefaultValue=false)] - public StringValue? ResolutionTime { get; set; } - - [DataMember(Name="Severity", EmitDefaultValue=false)] - public StringValue? Severity { get; set; } - - [DataMember(Name="SLA", EmitDefaultValue=false)] - public DateTimeValue? SLA { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] - public StringValue? WorkgroupDescription { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs deleted file mode 100644 index 943958ee0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CaseDetail : Entity - { - - [DataMember(Name="CaseID", EmitDefaultValue=false)] - public StringValue? CaseID { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="ClosingDate", EmitDefaultValue=false)] - public DateTimeValue? ClosingDate { get; set; } - - [DataMember(Name="DateReported", EmitDefaultValue=false)] - public DateTimeValue? DateReported { get; set; } - - [DataMember(Name="Estimation", EmitDefaultValue=false)] - public StringValue? Estimation { get; set; } - - [DataMember(Name="InitialResponse", EmitDefaultValue=false)] - public StringValue? InitialResponse { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - - [DataMember(Name="Severity", EmitDefaultValue=false)] - public StringValue? Severity { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs deleted file mode 100644 index 33a4a8f1d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CaseRelatedCase.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CaseRelatedCase : Entity - { - - [DataMember(Name="CaseID", EmitDefaultValue=false)] - public StringValue? CaseID { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="ParentCaseID", EmitDefaultValue=false)] - public StringValue? ParentCaseID { get; set; } - - [DataMember(Name="RelationType", EmitDefaultValue=false)] - public StringValue? RelationType { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs deleted file mode 100644 index ef26d79c7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSale.cs +++ /dev/null @@ -1,73 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CashSale : Entity, ITopLevelEntity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs deleted file mode 100644 index a2f16b701..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CashSaleDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CashSaleDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="ExtendedPrice", EmitDefaultValue=false)] - public DecimalValue? ExtendedPrice { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs deleted file mode 100644 index 8ac6c45a3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CategoryStockItem.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CategoryStockItem : Entity - { - - [DataMember(Name="CategoryID", EmitDefaultValue=false)] - public IntValue? CategoryID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs deleted file mode 100644 index 9dfd63874..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrder.cs +++ /dev/null @@ -1,100 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeOrder : Entity, ITopLevelEntity - { - - [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] - public List? ApprovalDetails { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="ChangeDate", EmitDefaultValue=false)] - public DateTimeValue? ChangeDate { get; set; } - - [DataMember(Name="Class", EmitDefaultValue=false)] - public StringValue? Class { get; set; } - - [DataMember(Name="Commitments", EmitDefaultValue=false)] - public List? Commitments { get; set; } - - [DataMember(Name="CommitmentsChangeTotal", EmitDefaultValue=false)] - public DecimalValue? CommitmentsChangeTotal { get; set; } - - [DataMember(Name="CompletionDate", EmitDefaultValue=false)] - public DateTimeValue? CompletionDate { get; set; } - - [DataMember(Name="ContractTimeChangeDays", EmitDefaultValue=false)] - public IntValue? ContractTimeChangeDays { get; set; } - - [DataMember(Name="CostBudget", EmitDefaultValue=false)] - public List? CostBudget { get; set; } - - [DataMember(Name="CostBudgetChangeTotal", EmitDefaultValue=false)] - public DecimalValue? CostBudgetChangeTotal { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DetailedDescription", EmitDefaultValue=false)] - public StringValue? DetailedDescription { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="GrossMargin", EmitDefaultValue=false)] - public DecimalValue? GrossMargin { get; set; } - - [DataMember(Name="GrossMarginAmount", EmitDefaultValue=false)] - public DecimalValue? GrossMarginAmount { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OriginalCORefNbr", EmitDefaultValue=false)] - public StringValue? OriginalCORefNbr { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="RevenueBudget", EmitDefaultValue=false)] - public List? RevenueBudget { get; set; } - - [DataMember(Name="RevenueBudgetChangeTotal", EmitDefaultValue=false)] - public DecimalValue? RevenueBudgetChangeTotal { get; set; } - - [DataMember(Name="RevenueChangeNbr", EmitDefaultValue=false)] - public StringValue? RevenueChangeNbr { get; set; } - - [DataMember(Name="ReverseStatus", EmitDefaultValue=false)] - public StringValue? ReverseStatus { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs deleted file mode 100644 index 9035ca0a4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderClass.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeOrderClass : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="Commitments", EmitDefaultValue=false)] - public BooleanValue? Commitments { get; set; } - - [DataMember(Name="CostBudget", EmitDefaultValue=false)] - public BooleanValue? CostBudget { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="RevenueBudget", EmitDefaultValue=false)] - public BooleanValue? RevenueBudget { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs deleted file mode 100644 index acc6ca2b9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCommitment.cs +++ /dev/null @@ -1,87 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeOrderCommitment : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="AmountinBaseCurrency", EmitDefaultValue=false)] - public DecimalValue? AmountinBaseCurrency { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineAmount", EmitDefaultValue=false)] - public DecimalValue? LineAmount { get; set; } - - [DataMember(Name="LineDescription", EmitDefaultValue=false)] - public StringValue? LineDescription { get; set; } - - [DataMember(Name="OpenQty", EmitDefaultValue=false)] - public DecimalValue? OpenQty { get; set; } - - [DataMember(Name="OrderDate", EmitDefaultValue=false)] - public DateTimeValue? OrderDate { get; set; } - - [DataMember(Name="OrderQty", EmitDefaultValue=false)] - public DecimalValue? OrderQty { get; set; } - - [DataMember(Name="POLineNbr", EmitDefaultValue=false)] - public IntValue? POLineNbr { get; set; } - - [DataMember(Name="PONbr", EmitDefaultValue=false)] - public StringValue? PONbr { get; set; } - - [DataMember(Name="PotentiallyRevisedAmount", EmitDefaultValue=false)] - public DecimalValue? PotentiallyRevisedAmount { get; set; } - - [DataMember(Name="PotentiallyRevisedQty", EmitDefaultValue=false)] - public DecimalValue? PotentiallyRevisedQty { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - [DataMember(Name="POType", EmitDefaultValue=false)] - public StringValue? POType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs deleted file mode 100644 index 772a1ac5d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderCostBudget.cs +++ /dev/null @@ -1,108 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeOrderCostBudget : Entity - { - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="ActualAmount", EmitDefaultValue=false)] - public DecimalValue? ActualAmount { get; set; } - - [DataMember(Name="ActualQty", EmitDefaultValue=false)] - public DecimalValue? ActualQty { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedCOAmount { get; set; } - - [DataMember(Name="CommittedCOQty", EmitDefaultValue=false)] - public DecimalValue? CommittedCOQty { get; set; } - - [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedAmount { get; set; } - - [DataMember(Name="CommittedInvoicedQty", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedQty { get; set; } - - [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenAmount { get; set; } - - [DataMember(Name="CommittedOpenQty", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenQty { get; set; } - - [DataMember(Name="CommittedReceivedQty", EmitDefaultValue=false)] - public DecimalValue? CommittedReceivedQty { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CurrentCommittedCOAmount", EmitDefaultValue=false)] - public DecimalValue? CurrentCommittedCOAmount { get; set; } - - [DataMember(Name="CurrentCommittedCOQty", EmitDefaultValue=false)] - public DecimalValue? CurrentCommittedCOQty { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="OriginalBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? OriginalBudgetedAmount { get; set; } - - [DataMember(Name="OriginalBudgetedQty", EmitDefaultValue=false)] - public DecimalValue? OriginalBudgetedQty { get; set; } - - [DataMember(Name="OtherDraftCOAmount", EmitDefaultValue=false)] - public DecimalValue? OtherDraftCOAmount { get; set; } - - [DataMember(Name="PreviouslyApprovedCOAmount", EmitDefaultValue=false)] - public DecimalValue? PreviouslyApprovedCOAmount { get; set; } - - [DataMember(Name="PreviouslyApprovedCOQty", EmitDefaultValue=false)] - public DecimalValue? PreviouslyApprovedCOQty { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedAmount { get; set; } - - [DataMember(Name="RevisedBudgetedQty", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedQty { get; set; } - - [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedAmount { get; set; } - - [DataMember(Name="RevisedCommittedQty", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedQty { get; set; } - - [DataMember(Name="TotalPotentiallyRevisedAmount", EmitDefaultValue=false)] - public DecimalValue? TotalPotentiallyRevisedAmount { get; set; } - - [DataMember(Name="UnitRate", EmitDefaultValue=false)] - public DecimalValue? UnitRate { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs deleted file mode 100644 index e0a1b5408..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ChangeOrderRevenueBudget.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ChangeOrderRevenueBudget : Entity - { - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="OtherDraftCOAmount", EmitDefaultValue=false)] - public DecimalValue? OtherDraftCOAmount { get; set; } - - [DataMember(Name="PreviouslyApprovedCOAmount", EmitDefaultValue=false)] - public DecimalValue? PreviouslyApprovedCOAmount { get; set; } - - [DataMember(Name="PreviouslyApprovedCOQty", EmitDefaultValue=false)] - public DecimalValue? PreviouslyApprovedCOQty { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedAmount { get; set; } - - [DataMember(Name="RevisedBudgetedQty", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedQty { get; set; } - - [DataMember(Name="TotalPotentiallyRevisedAmount", EmitDefaultValue=false)] - public DecimalValue? TotalPotentiallyRevisedAmount { get; set; } - - [DataMember(Name="UnitRate", EmitDefaultValue=false)] - public DecimalValue? UnitRate { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs deleted file mode 100644 index 926615b37..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Check.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Check : Entity, ITopLevelEntity - { - - [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] - public DateTimeValue? ApplicationDate { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="History", EmitDefaultValue=false)] - public List? History { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] - public DecimalValue? PaymentAmount { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UnappliedBalance", EmitDefaultValue=false)] - public DecimalValue? UnappliedBalance { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs deleted file mode 100644 index 1ce680d95..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CheckDetail : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="CashDiscountBalance", EmitDefaultValue=false)] - public DecimalValue? CashDiscountBalance { get; set; } - - [DataMember(Name="DocLineNbr", EmitDefaultValue=false)] - public IntValue? DocLineNbr { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs deleted file mode 100644 index d4122bb76..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CheckHistoryDetail.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CheckHistoryDetail : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="CashDiscountBalance", EmitDefaultValue=false)] - public DecimalValue? CashDiscountBalance { get; set; } - - [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] - public DecimalValue? CashDiscountTaken { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="VendorRef", EmitDefaultValue=false)] - public StringValue? VendorRef { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs deleted file mode 100644 index 39341d34c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Commissions.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Commissions : Entity - { - - [DataMember(Name="DefaultSalesperson", EmitDefaultValue=false)] - public StringValue? DefaultSalesperson { get; set; } - - [DataMember(Name="SalesPersons", EmitDefaultValue=false)] - public List? SalesPersons { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs deleted file mode 100644 index 3a3c96d4a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructure.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompaniesStructure : Entity, ITopLevelEntity - { - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs deleted file mode 100644 index 3d579528d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompaniesStructureDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompaniesStructureDetail : Entity - { - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="BranchCountry", EmitDefaultValue=false)] - public StringValue? BranchCountry { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="BranchName", EmitDefaultValue=false)] - public StringValue? BranchName { get; set; } - - [DataMember(Name="BranchStatus", EmitDefaultValue=false)] - public BooleanValue? BranchStatus { get; set; } - - [DataMember(Name="CompanyID", EmitDefaultValue=false)] - public StringValue? CompanyID { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="CompanyStatus", EmitDefaultValue=false)] - public BooleanValue? CompanyStatus { get; set; } - - [DataMember(Name="CompanyType", EmitDefaultValue=false)] - public StringValue? CompanyType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs deleted file mode 100644 index fafa54e03..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompanyFinancialPeriod.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompanyFinancialPeriod : Entity, ITopLevelEntity - { - - [DataMember(Name="Company", EmitDefaultValue=false)] - public StringValue? Company { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="FinancialYear", EmitDefaultValue=false)] - public StringValue? FinancialYear { get; set; } - - [DataMember(Name="NbrOfPeriods", EmitDefaultValue=false)] - public ShortValue? NbrOfPeriods { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs deleted file mode 100644 index acd771be0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CompensationDetail.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CompensationDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="EarningCode", EmitDefaultValue=false)] - public StringValue? EarningCode { get; set; } - - [DataMember(Name="EarningDescription", EmitDefaultValue=false)] - public StringValue? EarningDescription { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public StringValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PayRate", EmitDefaultValue=false)] - public DecimalValue? PayRate { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="UnitOfPay", EmitDefaultValue=false)] - public StringValue? UnitOfPay { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs deleted file mode 100644 index 522aa36e6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Contact.cs +++ /dev/null @@ -1,229 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Contact : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Activities", EmitDefaultValue=false)] - public List? Activities { get; set; } - - [DataMember(Name="Address", EmitDefaultValue=false)] - public Address? Address { get; set; } - - [DataMember(Name="OverrideAccountAddress", EmitDefaultValue=false)] - public BooleanValue? OverrideAccountAddress { get; set; } - - [DataMember(Name="AddressValidated", EmitDefaultValue=false)] - public BooleanValue? AddressValidated { get; set; } - - [DataMember(Name="Attention", EmitDefaultValue=false)] - public StringValue? Attention { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="Campaigns", EmitDefaultValue=false)] - public List? Campaigns { get; set; } - - [DataMember(Name="Cases", EmitDefaultValue=false)] - public List? Cases { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="ContactClass", EmitDefaultValue=false)] - public StringValue? ContactClass { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="ContactMethod", EmitDefaultValue=false)] - public StringValue? ContactMethod { get; set; } - - [DataMember(Name="ConvertedBy", EmitDefaultValue=false)] - public StringValue? ConvertedBy { get; set; } - - [DataMember(Name="DateOfBirth", EmitDefaultValue=false)] - public DateTimeValue? DateOfBirth { get; set; } - - [DataMember(Name="DisplayName", EmitDefaultValue=false)] - public StringValue? DisplayName { get; set; } - - [DataMember(Name="DoNotCall", EmitDefaultValue=false)] - public BooleanValue? DoNotCall { get; set; } - - [DataMember(Name="DoNotEmail", EmitDefaultValue=false)] - public BooleanValue? DoNotEmail { get; set; } - - [DataMember(Name="DoNotFax", EmitDefaultValue=false)] - public BooleanValue? DoNotFax { get; set; } - - [DataMember(Name="DoNotMail", EmitDefaultValue=false)] - public BooleanValue? DoNotMail { get; set; } - - [DataMember(Name="Duplicate", EmitDefaultValue=false)] - public StringValue? Duplicate { get; set; } - - [DataMember(Name="DuplicateFound", EmitDefaultValue=false)] - public BooleanValue? DuplicateFound { get; set; } - - [DataMember(Name="Duplicates", EmitDefaultValue=false)] - public List? Duplicates { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Fax", EmitDefaultValue=false)] - public StringValue? Fax { get; set; } - - [DataMember(Name="FaxType", EmitDefaultValue=false)] - public StringValue? FaxType { get; set; } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - - [DataMember(Name="Gender", EmitDefaultValue=false)] - public StringValue? Gender { get; set; } - - [DataMember(Name="Image", EmitDefaultValue=false)] - public StringValue? Image { get; set; } - - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - - [DataMember(Name="LanguageOrLocale", EmitDefaultValue=false)] - public StringValue? LanguageOrLocale { get; set; } - - [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastIncomingActivity { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - - [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastOutgoingActivity { get; set; } - - [DataMember(Name="MaritalStatus", EmitDefaultValue=false)] - public StringValue? MaritalStatus { get; set; } - - [DataMember(Name="MarketingLists", EmitDefaultValue=false)] - public List? MarketingLists { get; set; } - - [DataMember(Name="MiddleName", EmitDefaultValue=false)] - public StringValue? MiddleName { get; set; } - - [DataMember(Name="NoMarketing", EmitDefaultValue=false)] - public BooleanValue? NoMarketing { get; set; } - - [DataMember(Name="NoMassMail", EmitDefaultValue=false)] - public BooleanValue? NoMassMail { get; set; } - - [DataMember(Name="Notifications", EmitDefaultValue=false)] - public List? Notifications { get; set; } - - [DataMember(Name="Opportunities", EmitDefaultValue=false)] - public List? Opportunities { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] - public StringValue? OwnerEmployeeName { get; set; } - - [DataMember(Name="ParentAccount", EmitDefaultValue=false)] - public StringValue? ParentAccount { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - - [DataMember(Name="Phone3", EmitDefaultValue=false)] - public StringValue? Phone3 { get; set; } - - [DataMember(Name="Phone3Type", EmitDefaultValue=false)] - public StringValue? Phone3Type { get; set; } - - [DataMember(Name="QualificationDate", EmitDefaultValue=false)] - public DateTimeValue? QualificationDate { get; set; } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - - [DataMember(Name="Relations", EmitDefaultValue=false)] - public List? Relations { get; set; } - - [DataMember(Name="RoleAssignments", EmitDefaultValue=false)] - public List? RoleAssignments { get; set; } - - [DataMember(Name="Source", EmitDefaultValue=false)] - public StringValue? Source { get; set; } - - [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] - public StringValue? SourceCampaign { get; set; } - - [DataMember(Name="SpouseOrPartnerName", EmitDefaultValue=false)] - public StringValue? SpouseOrPartnerName { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Synchronize", EmitDefaultValue=false)] - public BooleanValue? Synchronize { get; set; } - - [DataMember(Name="Title", EmitDefaultValue=false)] - public StringValue? Title { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UserInfo", EmitDefaultValue=false)] - public ContactUserInfo? UserInfo { get; set; } - - [DataMember(Name="WebSite", EmitDefaultValue=false)] - public StringValue? WebSite { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] - public StringValue? WorkgroupDescription { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="FullName", EmitDefaultValue=false)] - public StringValue? FullName { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs deleted file mode 100644 index 50b7ab53a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactDuplicateDetail.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ContactDuplicateDetail : Entity - { - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="BusinessAccountName", EmitDefaultValue=false)] - public StringValue? BusinessAccountName { get; set; } - - [DataMember(Name="BusinessAccountType", EmitDefaultValue=false)] - public StringValue? BusinessAccountType { get; set; } - - [DataMember(Name="DisplayName", EmitDefaultValue=false)] - public StringValue? DisplayName { get; set; } - - [DataMember(Name="Duplicate", EmitDefaultValue=false)] - public StringValue? Duplicate { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="LastModifiedDate", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDate { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs deleted file mode 100644 index c10347aa8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactNotification.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ContactNotification : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Bcc", EmitDefaultValue=false)] - public BooleanValue? Bcc { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Format", EmitDefaultValue=false)] - public StringValue? Format { get; set; } - - [DataMember(Name="MailingID", EmitDefaultValue=false)] - public StringValue? MailingID { get; set; } - - [DataMember(Name="Module", EmitDefaultValue=false)] - public StringValue? Module { get; set; } - - [DataMember(Name="NotificationID", EmitDefaultValue=false)] - public IntValue? NotificationID { get; set; } - - [DataMember(Name="Report", EmitDefaultValue=false)] - public StringValue? Report { get; set; } - - [DataMember(Name="Source", EmitDefaultValue=false)] - public StringValue? Source { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs deleted file mode 100644 index b92743453..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactRoles.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ContactRoles : Entity - { - - [DataMember(Name="RoleDescription", EmitDefaultValue=false)] - public StringValue? RoleDescription { get; set; } - - [DataMember(Name="RoleName", EmitDefaultValue=false)] - public StringValue? RoleName { get; set; } - - [DataMember(Name="Selected", EmitDefaultValue=false)] - public BooleanValue? Selected { get; set; } - - [DataMember(Name="UserType", EmitDefaultValue=false)] - public IntValue? UserType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs deleted file mode 100644 index 600cb3250..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContactUserInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ContactUserInfo : Entity - { - - [DataMember(Name="GeneratePassword", EmitDefaultValue=false)] - public BooleanValue? GeneratePassword { get; set; } - - [DataMember(Name="Login", EmitDefaultValue=false)] - public StringValue? Login { get; set; } - - [DataMember(Name="Password", EmitDefaultValue=false)] - public StringValue? Password { get; set; } - - [DataMember(Name="Roles", EmitDefaultValue=false)] - public List? Roles { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="UserType", EmitDefaultValue=false)] - public StringValue? UserType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs deleted file mode 100644 index 9fa4d5cb8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsage.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ContractUsage : Entity, ITopLevelEntity - { - - [DataMember(Name="BilledTransactions", EmitDefaultValue=false)] - public List? BilledTransactions { get; set; } - - [DataMember(Name="ContractID", EmitDefaultValue=false)] - public StringValue? ContractID { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="UnbilledTransactions", EmitDefaultValue=false)] - public List? UnbilledTransactions { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs deleted file mode 100644 index 03ce33052..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ContractUsageTransactionDetail.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ContractUsageTransactionDetail : Entity - { - - [DataMember(Name="BillingDate", EmitDefaultValue=false)] - public DateTimeValue? BillingDate { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CaseID", EmitDefaultValue=false)] - public StringValue? CaseID { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="TransactionID", EmitDefaultValue=false)] - public LongValue? TransactionID { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs deleted file mode 100644 index 4a8c7ffd2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CostCode.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CostCode : Entity, ITopLevelEntity - { - - [DataMember(Name="CostCodeID", EmitDefaultValue=false)] - public StringValue? CostCodeID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs deleted file mode 100644 index ce942653a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardProcessingDetail.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreditCardProcessingDetail : Entity - { - - [DataMember(Name="TransactionAmount", EmitDefaultValue=false)] - public DecimalValue? TransactionAmount { get; set; } - - [DataMember(Name="TransactionStatus", EmitDefaultValue=false)] - public StringValue? TransactionStatus { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs deleted file mode 100644 index e00a89216..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditCardTransactionDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreditCardTransactionDetail : Entity - { - - [DataMember(Name="TranNbr", EmitDefaultValue=false)] - public StringValue? TranNbr { get; set; } - - [DataMember(Name="TranType", EmitDefaultValue=false)] - public StringValue? TranType { get; set; } - - [DataMember(Name="AuthNbr", EmitDefaultValue=false)] - public StringValue? AuthNbr { get; set; } - - [DataMember(Name="TranDate", EmitDefaultValue=false)] - public DateTimeValue? TranDate { get; set; } - - [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] - public StringValue? ExtProfileId { get; set; } - - [DataMember(Name="NeedValidation", EmitDefaultValue=false)] - public BooleanValue? NeedValidation { get; set; } - - [DataMember(Name="OrigTranNbr", EmitDefaultValue=false)] - public StringValue? OrigTranNbr { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="CardType", EmitDefaultValue=false)] - public StringValue? CardType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs deleted file mode 100644 index c649f4bb3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CreditVerificationRules.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CreditVerificationRules : Entity - { - - [DataMember(Name="CreditDaysPastDue", EmitDefaultValue=false)] - public ShortValue? CreditDaysPastDue { get; set; } - - [DataMember(Name="CreditLimit", EmitDefaultValue=false)] - public DecimalValue? CreditLimit { get; set; } - - [DataMember(Name="CreditVerification", EmitDefaultValue=false)] - public StringValue? CreditVerification { get; set; } - - [DataMember(Name="FirstDueDate", EmitDefaultValue=false)] - public DateTimeValue? FirstDueDate { get; set; } - - [DataMember(Name="OpenOrdersBalance", EmitDefaultValue=false)] - public DecimalValue? OpenOrdersBalance { get; set; } - - [DataMember(Name="RemainingCreditLimit", EmitDefaultValue=false)] - public DecimalValue? RemainingCreditLimit { get; set; } - - [DataMember(Name="UnreleasedBalance", EmitDefaultValue=false)] - public DecimalValue? UnreleasedBalance { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs deleted file mode 100644 index e34ef3420..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Currency.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Currency : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencySymbol", EmitDefaultValue=false)] - public StringValue? CurrencySymbol { get; set; } - - [DataMember(Name="DecimalPrecision", EmitDefaultValue=false)] - public ShortValue? DecimalPrecision { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="UseForAccounting", EmitDefaultValue=false)] - public BooleanValue? UseForAccounting { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs deleted file mode 100644 index 56fffdbe9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Customer.cs +++ /dev/null @@ -1,214 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Customer : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountRef", EmitDefaultValue=false)] - public StringValue? AccountRef { get; set; } - - [DataMember(Name="ApplyOverdueCharges", EmitDefaultValue=false)] - public BooleanValue? ApplyOverdueCharges { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="AutoApplyPayments", EmitDefaultValue=false)] - public BooleanValue? AutoApplyPayments { get; set; } - - [DataMember(Name="BAccountID", EmitDefaultValue=false)] - public IntValue? BAccountID { get; set; } - - [DataMember(Name="BillingAddressOverride", EmitDefaultValue=false)] - public BooleanValue? BillingAddressOverride { get; set; } - - [DataMember(Name="BillingContact", EmitDefaultValue=false)] - public Contact? BillingContact { get; set; } - - [DataMember(Name="BillingContactOverride", EmitDefaultValue=false)] - public BooleanValue? BillingContactOverride { get; set; } - - [DataMember(Name="Contacts", EmitDefaultValue=false)] - public List? Contacts { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CreditVerificationRules", EmitDefaultValue=false)] - public CreditVerificationRules? CreditVerificationRules { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRateType", EmitDefaultValue=false)] - public StringValue? CurrencyRateType { get; set; } - - [DataMember(Name="CustomerClass", EmitDefaultValue=false)] - public StringValue? CustomerClass { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CustomerName", EmitDefaultValue=false)] - public StringValue? CustomerName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] - public BooleanValue? EnableCurrencyOverride { get; set; } - - [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] - public BooleanValue? EnableRateOverride { get; set; } - - [DataMember(Name="EnableWriteOffs", EmitDefaultValue=false)] - public BooleanValue? EnableWriteOffs { get; set; } - - [DataMember(Name="FOBPoint", EmitDefaultValue=false)] - public StringValue? FOBPoint { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LeadTimedays", EmitDefaultValue=false)] - public ShortValue? LeadTimedays { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - [DataMember(Name="MainContact", EmitDefaultValue=false)] - public Contact? MainContact { get; set; } - - [DataMember(Name="MultiCurrencyStatements", EmitDefaultValue=false)] - public BooleanValue? MultiCurrencyStatements { get; set; } - - [DataMember(Name="OrderPriority", EmitDefaultValue=false)] - public ShortValue? OrderPriority { get; set; } - - [DataMember(Name="ParentRecord", EmitDefaultValue=false)] - public StringValue? ParentRecord { get; set; } - - [DataMember(Name="PaymentInstructions", EmitDefaultValue=false)] - public List? PaymentInstructions { get; set; } - - [DataMember(Name="PriceClassID", EmitDefaultValue=false)] - public StringValue? PriceClassID { get; set; } - - [DataMember(Name="PrimaryContact", EmitDefaultValue=false)] - public Contact? PrimaryContact { get; set; } - - [DataMember(Name="PrimaryContactID", EmitDefaultValue=false)] - public IntValue? PrimaryContactID { get; set; } - - [DataMember(Name="PrintDunningLetters", EmitDefaultValue=false)] - public BooleanValue? PrintDunningLetters { get; set; } - - [DataMember(Name="PrintInvoices", EmitDefaultValue=false)] - public BooleanValue? PrintInvoices { get; set; } - - [DataMember(Name="PrintStatements", EmitDefaultValue=false)] - public BooleanValue? PrintStatements { get; set; } - - [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] - public BooleanValue? ResidentialDelivery { get; set; } - - [DataMember(Name="Salespersons", EmitDefaultValue=false)] - public List? Salespersons { get; set; } - - [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] - public BooleanValue? SaturdayDelivery { get; set; } - - [DataMember(Name="SendDunningLettersbyEmail", EmitDefaultValue=false)] - public BooleanValue? SendDunningLettersbyEmail { get; set; } - - [DataMember(Name="SendInvoicesbyEmail", EmitDefaultValue=false)] - public BooleanValue? SendInvoicesbyEmail { get; set; } - - [DataMember(Name="SendStatementsbyEmail", EmitDefaultValue=false)] - public BooleanValue? SendStatementsbyEmail { get; set; } - - [DataMember(Name="ShippingAddressOverride", EmitDefaultValue=false)] - public BooleanValue? ShippingAddressOverride { get; set; } - - [DataMember(Name="ShippingBranch", EmitDefaultValue=false)] - public StringValue? ShippingBranch { get; set; } - - [DataMember(Name="ShippingContact", EmitDefaultValue=false)] - public Contact? ShippingContact { get; set; } - - [DataMember(Name="ShippingContactOverride", EmitDefaultValue=false)] - public BooleanValue? ShippingContactOverride { get; set; } - - [DataMember(Name="ShippingRule", EmitDefaultValue=false)] - public StringValue? ShippingRule { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShippingZoneID", EmitDefaultValue=false)] - public StringValue? ShippingZoneID { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="StatementCycleID", EmitDefaultValue=false)] - public StringValue? StatementCycleID { get; set; } - - [DataMember(Name="StatementType", EmitDefaultValue=false)] - public StringValue? StatementType { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] - public StringValue? TaxRegistrationID { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - [DataMember(Name="WriteOffLimit", EmitDefaultValue=false)] - public DecimalValue? WriteOffLimit { get; set; } - - [DataMember(Name="RestrictVisibilityTo", EmitDefaultValue=false)] - public StringValue? RestrictVisibilityTo { get; set; } - - [DataMember(Name="CreditLimit", EmitDefaultValue=false)] - public DecimalValue? CreditLimit { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] - public StringValue? EntityUsageType { get; set; } - - [DataMember(Name="TaxExemptionNumber", EmitDefaultValue=false)] - public StringValue? TaxExemptionNumber { get; set; } - - [DataMember(Name="IsGuestCustomer", EmitDefaultValue=false)] - public BooleanValue? IsGuestCustomer { get; set; } - - [DataMember(Name="CustomerCategory", EmitDefaultValue=false)] - public StringValue? CustomerCategory { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs deleted file mode 100644 index 37da11e26..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerClass.cs +++ /dev/null @@ -1,205 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerClass : Entity, ITopLevelEntity - { - - [DataMember(Name="ApplyOverdueCharges", EmitDefaultValue=false)] - public BooleanValue? ApplyOverdueCharges { get; set; } - - [DataMember(Name="ARAccount", EmitDefaultValue=false)] - public StringValue? ARAccount { get; set; } - - [DataMember(Name="ARSubaccount", EmitDefaultValue=false)] - public StringValue? ARSubaccount { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="AutoApplyPayments", EmitDefaultValue=false)] - public BooleanValue? AutoApplyPayments { get; set; } - - [DataMember(Name="CashDiscountAccount", EmitDefaultValue=false)] - public StringValue? CashDiscountAccount { get; set; } - - [DataMember(Name="CashDiscountSubaccount", EmitDefaultValue=false)] - public StringValue? CashDiscountSubaccount { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="COGSAccount", EmitDefaultValue=false)] - public StringValue? COGSAccount { get; set; } - - [DataMember(Name="COGSSubaccount", EmitDefaultValue=false)] - public StringValue? COGSSubaccount { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CreditDaysPastDue", EmitDefaultValue=false)] - public ShortValue? CreditDaysPastDue { get; set; } - - [DataMember(Name="CreditLimit", EmitDefaultValue=false)] - public DecimalValue? CreditLimit { get; set; } - - [DataMember(Name="CreditVerification", EmitDefaultValue=false)] - public StringValue? CreditVerification { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRateType", EmitDefaultValue=false)] - public StringValue? CurrencyRateType { get; set; } - - [DataMember(Name="DefaultLocationIDfromBranch", EmitDefaultValue=false)] - public BooleanValue? DefaultLocationIDfromBranch { get; set; } - - [DataMember(Name="DefaultRestrictionGroup", EmitDefaultValue=false)] - public StringValue? DefaultRestrictionGroup { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountAccount", EmitDefaultValue=false)] - public StringValue? DiscountAccount { get; set; } - - [DataMember(Name="DiscountSubaccount", EmitDefaultValue=false)] - public StringValue? DiscountSubaccount { get; set; } - - [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] - public BooleanValue? EnableCurrencyOverride { get; set; } - - [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] - public BooleanValue? EnableRateOverride { get; set; } - - [DataMember(Name="EnableWriteOffs", EmitDefaultValue=false)] - public BooleanValue? EnableWriteOffs { get; set; } - - [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] - public StringValue? EntityUsageType { get; set; } - - [DataMember(Name="FreightAccount", EmitDefaultValue=false)] - public StringValue? FreightAccount { get; set; } - - [DataMember(Name="FreightSubaccount", EmitDefaultValue=false)] - public StringValue? FreightSubaccount { get; set; } - - [DataMember(Name="GroupDocumentDiscountLimit", EmitDefaultValue=false)] - public DecimalValue? GroupDocumentDiscountLimit { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="MiscAccount", EmitDefaultValue=false)] - public StringValue? MiscAccount { get; set; } - - [DataMember(Name="MiscSubaccount", EmitDefaultValue=false)] - public StringValue? MiscSubaccount { get; set; } - - [DataMember(Name="MultiCurrencyStatements", EmitDefaultValue=false)] - public BooleanValue? MultiCurrencyStatements { get; set; } - - [DataMember(Name="OverdueChargeID", EmitDefaultValue=false)] - public StringValue? OverdueChargeID { get; set; } - - [DataMember(Name="OverLimitAmount", EmitDefaultValue=false)] - public DecimalValue? OverLimitAmount { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PrepaymentAccount", EmitDefaultValue=false)] - public StringValue? PrepaymentAccount { get; set; } - - [DataMember(Name="PrepaymentSubaccount", EmitDefaultValue=false)] - public StringValue? PrepaymentSubaccount { get; set; } - - [DataMember(Name="PrintDunningLetters", EmitDefaultValue=false)] - public BooleanValue? PrintDunningLetters { get; set; } - - [DataMember(Name="PrintInvoices", EmitDefaultValue=false)] - public BooleanValue? PrintInvoices { get; set; } - - [DataMember(Name="PrintStatements", EmitDefaultValue=false)] - public BooleanValue? PrintStatements { get; set; } - - [DataMember(Name="RequireEntityUsageType", EmitDefaultValue=false)] - public BooleanValue? RequireEntityUsageType { get; set; } - - [DataMember(Name="RequireTaxZone", EmitDefaultValue=false)] - public BooleanValue? RequireTaxZone { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalespersonID", EmitDefaultValue=false)] - public StringValue? SalespersonID { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="SendDunningLettersbyEmail", EmitDefaultValue=false)] - public BooleanValue? SendDunningLettersbyEmail { get; set; } - - [DataMember(Name="SendInvoicesbyEmail", EmitDefaultValue=false)] - public BooleanValue? SendInvoicesbyEmail { get; set; } - - [DataMember(Name="SendStatementsByEmail", EmitDefaultValue=false)] - public BooleanValue? SendStatementsByEmail { get; set; } - - [DataMember(Name="ShippingRule", EmitDefaultValue=false)] - public StringValue? ShippingRule { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="StatementCycleID", EmitDefaultValue=false)] - public StringValue? StatementCycleID { get; set; } - - [DataMember(Name="StatementType", EmitDefaultValue=false)] - public StringValue? StatementType { get; set; } - - [DataMember(Name="TaxZoneID", EmitDefaultValue=false)] - public StringValue? TaxZoneID { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="UnrealizedGainAccount", EmitDefaultValue=false)] - public StringValue? UnrealizedGainAccount { get; set; } - - [DataMember(Name="UnrealizedGainSubaccount", EmitDefaultValue=false)] - public StringValue? UnrealizedGainSubaccount { get; set; } - - [DataMember(Name="UnrealizedLossAccount", EmitDefaultValue=false)] - public StringValue? UnrealizedLossAccount { get; set; } - - [DataMember(Name="UnrealizedLossSubaccount", EmitDefaultValue=false)] - public StringValue? UnrealizedLossSubaccount { get; set; } - - [DataMember(Name="WriteOffLimit", EmitDefaultValue=false)] - public DecimalValue? WriteOffLimit { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs deleted file mode 100644 index 8fa8b6920..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerContact.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerContact : Entity - { - - [DataMember(Name="Contact", EmitDefaultValue=false)] - public Contact? Contact { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs deleted file mode 100644 index 3266dd8b9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerLocation.cs +++ /dev/null @@ -1,121 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerLocation : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AddressOverride", EmitDefaultValue=false)] - public BooleanValue? AddressOverride { get; set; } - - [DataMember(Name="Calendar", EmitDefaultValue=false)] - public StringValue? Calendar { get; set; } - - [DataMember(Name="ContactOverride", EmitDefaultValue=false)] - public BooleanValue? ContactOverride { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="DefaultProject", EmitDefaultValue=false)] - public StringValue? DefaultProject { get; set; } - - [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] - public StringValue? EntityUsageType { get; set; } - - [DataMember(Name="FedExGroundCollect", EmitDefaultValue=false)] - public BooleanValue? FedExGroundCollect { get; set; } - - [DataMember(Name="FOBPoint", EmitDefaultValue=false)] - public StringValue? FOBPoint { get; set; } - - [DataMember(Name="Insurance", EmitDefaultValue=false)] - public BooleanValue? Insurance { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LeadTimeDays", EmitDefaultValue=false)] - public ShortValue? LeadTimeDays { get; set; } - - [DataMember(Name="LocationContact", EmitDefaultValue=false)] - public Contact? LocationContact { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - [DataMember(Name="OrderPriority", EmitDefaultValue=false)] - public ShortValue? OrderPriority { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] - public BooleanValue? ResidentialDelivery { get; set; } - - [DataMember(Name="RoleAssignments", EmitDefaultValue=false)] - public List? RoleAssignments { get; set; } - - [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] - public BooleanValue? SaturdayDelivery { get; set; } - - [DataMember(Name="ShippingBranch", EmitDefaultValue=false)] - public StringValue? ShippingBranch { get; set; } - - [DataMember(Name="ShippingRule", EmitDefaultValue=false)] - public StringValue? ShippingRule { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShippingZone", EmitDefaultValue=false)] - public StringValue? ShippingZone { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxExemptionNbr", EmitDefaultValue=false)] - public StringValue? TaxExemptionNbr { get; set; } - - [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] - public StringValue? TaxRegistrationID { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs deleted file mode 100644 index 921e420ab..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethod.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerPaymentMethod : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CardAccountNbr", EmitDefaultValue=false)] - public StringValue? CardAccountNbr { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CustomerProfileID", EmitDefaultValue=false)] - public StringValue? CustomerProfileID { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="InstanceID", EmitDefaultValue=false)] - public IntValue? InstanceID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="ProcCenterID", EmitDefaultValue=false)] - public StringValue? ProcCenterID { get; set; } - - [DataMember(Name="CardType", EmitDefaultValue=false)] - public StringValue? CardType { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs deleted file mode 100644 index f98414d21..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPaymentMethodDetail.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerPaymentMethodDetail : Entity - { - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs deleted file mode 100644 index ada99a33e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerPriceClass.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerPriceClass : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PriceClassID", EmitDefaultValue=false)] - public StringValue? PriceClassID { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs deleted file mode 100644 index ca18330ff..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/CustomerSalesPerson.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class CustomerSalesPerson : Entity - { - - [DataMember(Name="Commission", EmitDefaultValue=false)] - public DecimalValue? Commission { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="SalespersonID", EmitDefaultValue=false)] - public StringValue? SalespersonID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs deleted file mode 100644 index c789a37a4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitCode.cs +++ /dev/null @@ -1,88 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionBenefitCode : Entity, ITopLevelEntity - { - - [DataMember(Name="ACAApplicable", EmitDefaultValue=false)] - public BooleanValue? ACAApplicable { get; set; } - - [DataMember(Name="ACAInformation", EmitDefaultValue=false)] - public ACAInformation? ACAInformation { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AffectsTaxCalculation", EmitDefaultValue=false)] - public BooleanValue? AffectsTaxCalculation { get; set; } - - [DataMember(Name="ApplicableWage", EmitDefaultValue=false)] - public ApplicableWage? ApplicableWage { get; set; } - - [DataMember(Name="AssociatedWith", EmitDefaultValue=false)] - public StringValue? AssociatedWith { get; set; } - - [DataMember(Name="ContributionType", EmitDefaultValue=false)] - public StringValue? ContributionType { get; set; } - - [DataMember(Name="DeductionBenefitCodeID", EmitDefaultValue=false)] - public StringValue? DeductionBenefitCodeID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EmployeeDeduction", EmitDefaultValue=false)] - public EmployeeDeduction? EmployeeDeduction { get; set; } - - [DataMember(Name="EmployerContribution", EmitDefaultValue=false)] - public EmployerContribution? EmployerContribution { get; set; } - - [DataMember(Name="GLAccounts", EmitDefaultValue=false)] - public DeductionOrBenefitCodeGLAccounts? GLAccounts { get; set; } - - [DataMember(Name="InvoiceDescrSource", EmitDefaultValue=false)] - public StringValue? InvoiceDescrSource { get; set; } - - [DataMember(Name="IsGarnishment", EmitDefaultValue=false)] - public BooleanValue? IsGarnishment { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PayableBenefit", EmitDefaultValue=false)] - public BooleanValue? PayableBenefit { get; set; } - - [DataMember(Name="ShowApplicableWageTab", EmitDefaultValue=false)] - public BooleanValue? ShowApplicableWageTab { get; set; } - - [DataMember(Name="TaxSettingsCA", EmitDefaultValue=false)] - public TaxSettingsCA? TaxSettingsCA { get; set; } - - [DataMember(Name="TaxSettingsUS", EmitDefaultValue=false)] - public TaxSettingsUS? TaxSettingsUS { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - [DataMember(Name="VendorInvoiceDescription", EmitDefaultValue=false)] - public StringValue? VendorInvoiceDescription { get; set; } - - [DataMember(Name="WCCCode", EmitDefaultValue=false)] - public DeductionBenefitWCCCode? WCCCode { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs deleted file mode 100644 index 57cc38b43..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionBenefitWCCCode.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionBenefitWCCCode : Entity - { - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="WCCCodeRates", EmitDefaultValue=false)] - public List? WCCCodeRates { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs deleted file mode 100644 index a154b14e7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWage.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionDecreasingApplWage : Entity - { - - [DataMember(Name="DeductionIncreasingApplWageDetails", EmitDefaultValue=false)] - public List? DeductionIncreasingApplWageDetails { get; set; } - - [DataMember(Name="InclusionType", EmitDefaultValue=false)] - public StringValue? InclusionType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs deleted file mode 100644 index 979b72ad7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionDecreasingApplWageDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionDecreasingApplWageDetail : Entity - { - - [DataMember(Name="DeductionCode", EmitDefaultValue=false)] - public StringValue? DeductionCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs deleted file mode 100644 index d1320b0ce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitCodeGLAccounts.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionOrBenefitCodeGLAccounts : Entity - { - - [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] - public StringValue? BenefitExpenseAccount { get; set; } - - [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] - public StringValue? BenefitExpenseSub { get; set; } - - [DataMember(Name="BenefitLiabilityAccount", EmitDefaultValue=false)] - public StringValue? BenefitLiabilityAccount { get; set; } - - [DataMember(Name="BenefitLiabilitySub", EmitDefaultValue=false)] - public StringValue? BenefitLiabilitySub { get; set; } - - [DataMember(Name="DeductionLiabilityAccount", EmitDefaultValue=false)] - public StringValue? DeductionLiabilityAccount { get; set; } - - [DataMember(Name="DeductionLiabilitySub", EmitDefaultValue=false)] - public StringValue? DeductionLiabilitySub { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs deleted file mode 100644 index faf2db0ac..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailCA.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionOrBenefitTaxDetailCA : Entity - { - - [DataMember(Name="Benefitincreasestaxablewage", EmitDefaultValue=false)] - public BooleanValue? Benefitincreasestaxablewage { get; set; } - - [DataMember(Name="Deductiondecreasestaxablewage", EmitDefaultValue=false)] - public BooleanValue? Deductiondecreasestaxablewage { get; set; } - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxName", EmitDefaultValue=false)] - public StringValue? TaxName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs deleted file mode 100644 index c03bd6d75..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionOrBenefitTaxDetailUS.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionOrBenefitTaxDetailUS : Entity - { - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxName", EmitDefaultValue=false)] - public StringValue? TaxName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs deleted file mode 100644 index 88d462d0d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DeductionsAndBenefits.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DeductionsAndBenefits : Entity - { - - [DataMember(Name="DeductionAndBenefitUseClassDefaults", EmitDefaultValue=false)] - public BooleanValue? DeductionAndBenefitUseClassDefaults { get; set; } - - [DataMember(Name="DeductionsAndBenefitsDetails", EmitDefaultValue=false)] - public List? DeductionsAndBenefitsDetails { get; set; } - - [DataMember(Name="DeductionSplitMethod", EmitDefaultValue=false)] - public StringValue? DeductionSplitMethod { get; set; } - - [DataMember(Name="MaxPercOfNetPayForAllGarnishm", EmitDefaultValue=false)] - public DecimalValue? MaxPercOfNetPayForAllGarnishm { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs deleted file mode 100644 index 4b2a51547..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DefaultTaskForGLAccount.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DefaultTaskForGLAccount : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="DefaultTask", EmitDefaultValue=false)] - public StringValue? DefaultTask { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs deleted file mode 100644 index 07a3aec10..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DirectDepositDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DirectDepositDetail : Entity - { - - [DataMember(Name="AccountNumber", EmitDefaultValue=false)] - public StringValue? AccountNumber { get; set; } - - [DataMember(Name="AccountType", EmitDefaultValue=false)] - public StringValue? AccountType { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="BankName", EmitDefaultValue=false)] - public StringValue? BankName { get; set; } - - [DataMember(Name="BankRoutingNumber", EmitDefaultValue=false)] - public StringValue? BankRoutingNumber { get; set; } - - [DataMember(Name="DepositSequenceNbr", EmitDefaultValue=false)] - public IntValue? DepositSequenceNbr { get; set; } - - [DataMember(Name="GetsRemainder", EmitDefaultValue=false)] - public BooleanValue? GetsRemainder { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Percent", EmitDefaultValue=false)] - public DecimalValue? Percent { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs deleted file mode 100644 index 2086bccff..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Discount.cs +++ /dev/null @@ -1,79 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Discount : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="BreakBy", EmitDefaultValue=false)] - public StringValue? BreakBy { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CustomerPriceClasses", EmitDefaultValue=false)] - public List? CustomerPriceClasses { get; set; } - - [DataMember(Name="Customers", EmitDefaultValue=false)] - public List? Customers { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountBreakpoints", EmitDefaultValue=false)] - public List? DiscountBreakpoints { get; set; } - - [DataMember(Name="DiscountBy", EmitDefaultValue=false)] - public StringValue? DiscountBy { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="ItemPriceClasses", EmitDefaultValue=false)] - public List? ItemPriceClasses { get; set; } - - [DataMember(Name="Items", EmitDefaultValue=false)] - public List? Items { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Promotional", EmitDefaultValue=false)] - public BooleanValue? Promotional { get; set; } - - [DataMember(Name="ProrateDiscount", EmitDefaultValue=false)] - public BooleanValue? ProrateDiscount { get; set; } - - [DataMember(Name="Sequence", EmitDefaultValue=false)] - public StringValue? Sequence { get; set; } - - [DataMember(Name="ShowFreeItem", EmitDefaultValue=false)] - public BooleanValue? ShowFreeItem { get; set; } - - [DataMember(Name="Warehouses", EmitDefaultValue=false)] - public List? Warehouses { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs deleted file mode 100644 index 33cdf3ec9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountBreakpointDetail.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountBreakpointDetail : Entity - { - - [DataMember(Name="BreakAmount", EmitDefaultValue=false)] - public DecimalValue? BreakAmount { get; set; } - - [DataMember(Name="BreakQty", EmitDefaultValue=false)] - public DecimalValue? BreakQty { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountDetailID", EmitDefaultValue=false)] - public IntValue? DiscountDetailID { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] - public DecimalValue? FreeItemQty { get; set; } - - [DataMember(Name="LastBreakAmount", EmitDefaultValue=false)] - public DecimalValue? LastBreakAmount { get; set; } - - [DataMember(Name="LastBreakQty", EmitDefaultValue=false)] - public DecimalValue? LastBreakQty { get; set; } - - [DataMember(Name="LastDiscountAmount", EmitDefaultValue=false)] - public DecimalValue? LastDiscountAmount { get; set; } - - [DataMember(Name="LastDiscountPercent", EmitDefaultValue=false)] - public DecimalValue? LastDiscountPercent { get; set; } - - [DataMember(Name="LastFreeItemQty", EmitDefaultValue=false)] - public DecimalValue? LastFreeItemQty { get; set; } - - [DataMember(Name="PendingBreakAmount", EmitDefaultValue=false)] - public DecimalValue? PendingBreakAmount { get; set; } - - [DataMember(Name="PendingBreakQty", EmitDefaultValue=false)] - public DecimalValue? PendingBreakQty { get; set; } - - [DataMember(Name="PendingDate", EmitDefaultValue=false)] - public DateTimeValue? PendingDate { get; set; } - - [DataMember(Name="PendingDiscountAmount", EmitDefaultValue=false)] - public DecimalValue? PendingDiscountAmount { get; set; } - - [DataMember(Name="PendingDiscountPercent", EmitDefaultValue=false)] - public DecimalValue? PendingDiscountPercent { get; set; } - - [DataMember(Name="PendingFreeItemQty", EmitDefaultValue=false)] - public DecimalValue? PendingFreeItemQty { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs deleted file mode 100644 index 230a0cd2f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCode.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountCode : Entity, ITopLevelEntity - { - - [DataMember(Name="ApplicableTo", EmitDefaultValue=false)] - public StringValue? ApplicableTo { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountCodeID", EmitDefaultValue=false)] - public StringValue? DiscountCodeID { get; set; } - - [DataMember(Name="DiscountType", EmitDefaultValue=false)] - public StringValue? DiscountType { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs deleted file mode 100644 index fa9a85fe9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerDetail.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountCustomerDetail : Entity - { - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CustomerName", EmitDefaultValue=false)] - public StringValue? CustomerName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs deleted file mode 100644 index cd012108f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountCustomerPriceClassesDetail.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountCustomerPriceClassesDetail : Entity - { - - [DataMember(Name="PriceClassID", EmitDefaultValue=false)] - public StringValue? PriceClassID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs deleted file mode 100644 index e76efe3fe..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemDetail.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountItemDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs deleted file mode 100644 index 3c43e0007..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountItemPriceClassesDetail.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountItemPriceClassesDetail : Entity - { - - [DataMember(Name="PriceClassID", EmitDefaultValue=false)] - public StringValue? PriceClassID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs deleted file mode 100644 index 647c979e0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DiscountWarehouseDetail.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DiscountWarehouseDetail : Entity - { - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs deleted file mode 100644 index f8ae50bd7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DocContact.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DocContact : Entity - { - - [DataMember(Name="Attention", EmitDefaultValue=false)] - public StringValue? Attention { get; set; } - - [DataMember(Name="BusinessName", EmitDefaultValue=false)] - public StringValue? BusinessName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs deleted file mode 100644 index 801455b85..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/DuplicateDetail.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class DuplicateDetail : Entity - { - - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="BusinessAccountType", EmitDefaultValue=false)] - public StringValue? BusinessAccountType { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="DisplayName", EmitDefaultValue=false)] - public StringValue? DisplayName { get; set; } - - [DataMember(Name="Duplicate", EmitDefaultValue=false)] - public StringValue? Duplicate { get; set; } - - [DataMember(Name="DuplicateContactID", EmitDefaultValue=false)] - public IntValue? DuplicateContactID { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="EntityType", EmitDefaultValue=false)] - public StringValue? EntityType { get; set; } - - [DataMember(Name="LastModifiedDate", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDate { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs deleted file mode 100644 index a9c1cf16a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeGLAccounts.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningCodeGLAccounts : Entity - { - - [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] - public StringValue? BenefitExpenseAccount { get; set; } - - [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] - public StringValue? BenefitExpenseSub { get; set; } - - [DataMember(Name="EarningsAccount", EmitDefaultValue=false)] - public StringValue? EarningsAccount { get; set; } - - [DataMember(Name="EarningsSub", EmitDefaultValue=false)] - public StringValue? EarningsSub { get; set; } - - [DataMember(Name="PTOExpenseAccount", EmitDefaultValue=false)] - public StringValue? PTOExpenseAccount { get; set; } - - [DataMember(Name="PTOExpenseSub", EmitDefaultValue=false)] - public StringValue? PTOExpenseSub { get; set; } - - [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] - public StringValue? TaxExpenseAccount { get; set; } - - [DataMember(Name="TaxExpenseSub", EmitDefaultValue=false)] - public StringValue? TaxExpenseSub { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs deleted file mode 100644 index 026352341..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeProjectSettings.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningCodeProjectSettings : Entity - { - - [DataMember(Name="BillableProject", EmitDefaultValue=false)] - public BooleanValue? BillableProject { get; set; } - - [DataMember(Name="DefaultProjectCode", EmitDefaultValue=false)] - public StringValue? DefaultProjectCode { get; set; } - - [DataMember(Name="DefaultProjectTask", EmitDefaultValue=false)] - public StringValue? DefaultProjectTask { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs deleted file mode 100644 index 9cfd2e401..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailCA.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningCodeTaxDetailCA : Entity - { - - [DataMember(Name="Taxability", EmitDefaultValue=false)] - public StringValue? Taxability { get; set; } - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxName", EmitDefaultValue=false)] - public StringValue? TaxName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs deleted file mode 100644 index b9764c1f2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningCodeTaxDetailUS.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningCodeTaxDetailUS : Entity - { - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxName", EmitDefaultValue=false)] - public StringValue? TaxName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs deleted file mode 100644 index 4c02e45af..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWage.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningIncreasingApplWage : Entity - { - - [DataMember(Name="EarningIncreasingApplWageDetails", EmitDefaultValue=false)] - public List? EarningIncreasingApplWageDetails { get; set; } - - [DataMember(Name="InclusionType", EmitDefaultValue=false)] - public StringValue? InclusionType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs deleted file mode 100644 index a00ff2f6a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningIncreasingApplWageDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningIncreasingApplWageDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EarningTypeCategory", EmitDefaultValue=false)] - public StringValue? EarningTypeCategory { get; set; } - - [DataMember(Name="EarningTypeCode", EmitDefaultValue=false)] - public StringValue? EarningTypeCode { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs deleted file mode 100644 index a338d2a81..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EarningTypeCode.cs +++ /dev/null @@ -1,64 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EarningTypeCode : Entity, ITopLevelEntity - { - - [DataMember(Name="AccrueTimeOff", EmitDefaultValue=false)] - public BooleanValue? AccrueTimeOff { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Category", EmitDefaultValue=false)] - public StringValue? Category { get; set; } - - [DataMember(Name="ContributestoWCCCalculation", EmitDefaultValue=false)] - public BooleanValue? ContributestoWCCCalculation { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EarningTypeCodeID", EmitDefaultValue=false)] - public StringValue? EarningTypeCodeID { get; set; } - - [DataMember(Name="GLAccounts", EmitDefaultValue=false)] - public EarningCodeGLAccounts? GLAccounts { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Multiplier", EmitDefaultValue=false)] - public DecimalValue? Multiplier { get; set; } - - [DataMember(Name="ProjectSettings", EmitDefaultValue=false)] - public EarningCodeProjectSettings? ProjectSettings { get; set; } - - [DataMember(Name="PublicHoliday", EmitDefaultValue=false)] - public BooleanValue? PublicHoliday { get; set; } - - [DataMember(Name="RegularTimeTypeCode", EmitDefaultValue=false)] - public StringValue? RegularTimeTypeCode { get; set; } - - [DataMember(Name="TaxAndReportingCA", EmitDefaultValue=false)] - public TaxAndReportingCA? TaxAndReportingCA { get; set; } - - [DataMember(Name="TaxAndReportingUS", EmitDefaultValue=false)] - public TaxAndReportingUS? TaxAndReportingUS { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs deleted file mode 100644 index 4537ed433..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResources.cs +++ /dev/null @@ -1,76 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EducatedResources : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountID", EmitDefaultValue=false)] - public IntValue? AccountID { get; set; } - - [DataMember(Name="AccountID_2", EmitDefaultValue=false)] - public IntValue? AccountID_2 { get; set; } - - [DataMember(Name="AccountID_3", EmitDefaultValue=false)] - public IntValue? AccountID_3 { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Type_2", EmitDefaultValue=false)] - public StringValue? Type_2 { get; set; } - - [DataMember(Name="Class", EmitDefaultValue=false)] - public StringValue? Class { get; set; } - - [DataMember(Name="Class_2", EmitDefaultValue=false)] - public StringValue? Class_2 { get; set; } - - [DataMember(Name="Class_3", EmitDefaultValue=false)] - public StringValue? Class_3 { get; set; } - - [DataMember(Name="Class_4", EmitDefaultValue=false)] - public StringValue? Class_4 { get; set; } - - [DataMember(Name="Class_5", EmitDefaultValue=false)] - public StringValue? Class_5 { get; set; } - - [DataMember(Name="Class_6", EmitDefaultValue=false)] - public StringValue? Class_6 { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="Class_7", EmitDefaultValue=false)] - public StringValue? Class_7 { get; set; } - - [DataMember(Name="Class_8", EmitDefaultValue=false)] - public StringValue? Class_8 { get; set; } - - [DataMember(Name="Class_9", EmitDefaultValue=false)] - public StringValue? Class_9 { get; set; } - - [DataMember(Name="Class_10", EmitDefaultValue=false)] - public StringValue? Class_10 { get; set; } - - [DataMember(Name="EducatedResourcesDetails", EmitDefaultValue=false)] - public List? EducatedResourcesDetails { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs deleted file mode 100644 index 66aa6ec89..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EducatedResourcesDetail.cs +++ /dev/null @@ -1,150 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EducatedResourcesDetail : Entity - { - - [DataMember(Name="Geography", EmitDefaultValue=false)] - public StringValue? Geography { get; set; } - - [DataMember(Name="AccountID", EmitDefaultValue=false)] - public StringValue? AccountID { get; set; } - - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - - [DataMember(Name="StageID", EmitDefaultValue=false)] - public StringValue? StageID { get; set; } - - [DataMember(Name="StageName", EmitDefaultValue=false)] - public StringValue? StageName { get; set; } - - [DataMember(Name="StageStatus", EmitDefaultValue=false)] - public StringValue? StageStatus { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="Contact", EmitDefaultValue=false)] - public StringValue? Contact { get; set; } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - - [DataMember(Name="BadgeID", EmitDefaultValue=false)] - public StringValue? BadgeID { get; set; } - - [DataMember(Name="BadgeName", EmitDefaultValue=false)] - public StringValue? BadgeName { get; set; } - - [DataMember(Name="BadgeStatus", EmitDefaultValue=false)] - public StringValue? BadgeStatus { get; set; } - - [DataMember(Name="AddressLine1", EmitDefaultValue=false)] - public StringValue? AddressLine1 { get; set; } - - [DataMember(Name="AddressLine2", EmitDefaultValue=false)] - public StringValue? AddressLine2 { get; set; } - - [DataMember(Name="AddressLine3", EmitDefaultValue=false)] - public StringValue? AddressLine3 { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="StateName", EmitDefaultValue=false)] - public StringValue? StateName { get; set; } - - [DataMember(Name="PostalCode", EmitDefaultValue=false)] - public StringValue? PostalCode { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="CountryName", EmitDefaultValue=false)] - public StringValue? CountryName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="ContractTemplate", EmitDefaultValue=false)] - public StringValue? ContractTemplate { get; set; } - - [DataMember(Name="Class", EmitDefaultValue=false)] - public StringValue? Class { get; set; } - - [DataMember(Name="Module", EmitDefaultValue=false)] - public StringValue? Module { get; set; } - - [DataMember(Name="ContactwithBadge", EmitDefaultValue=false)] - public StringValue? ContactwithBadge { get; set; } - - [DataMember(Name="ContactStatus", EmitDefaultValue=false)] - public BooleanValue? ContactStatus { get; set; } - - [DataMember(Name="UserLogin", EmitDefaultValue=false)] - public StringValue? UserLogin { get; set; } - - [DataMember(Name="UserType", EmitDefaultValue=false)] - public StringValue? UserType { get; set; } - - [DataMember(Name="CourseProgress", EmitDefaultValue=false)] - public IntValue? CourseProgress { get; set; } - - [DataMember(Name="AchievementDate", EmitDefaultValue=false)] - public DateTimeValue? AchievementDate { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Achieved", EmitDefaultValue=false)] - public BooleanValue? Achieved { get; set; } - - [DataMember(Name="PrerequisiteAchievement", EmitDefaultValue=false)] - public IntValue? PrerequisiteAchievement { get; set; } - - [DataMember(Name="CourseAchievement", EmitDefaultValue=false)] - public IntValue? CourseAchievement { get; set; } - - [DataMember(Name="BadgeCreatedDate", EmitDefaultValue=false)] - public DateTimeValue? BadgeCreatedDate { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="LastUCPDate", EmitDefaultValue=false)] - public DateTimeValue? LastUCPDate { get; set; } - - [DataMember(Name="ContractID", EmitDefaultValue=false)] - public IntValue? ContractID { get; set; } - - [DataMember(Name="ContractDetail_contractDetailID", EmitDefaultValue=false)] - public IntValue? ContractDetail_contractDetailID { get; set; } - - [DataMember(Name="ContractItemID", EmitDefaultValue=false)] - public IntValue? ContractItemID { get; set; } - - [DataMember(Name="PreviousStatus", EmitDefaultValue=false)] - public StringValue? PreviousStatus { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs deleted file mode 100644 index 548e71944..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Email.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Email : Entity, ITopLevelEntity - { - - [DataMember(Name="Bcc", EmitDefaultValue=false)] - public StringValue? Bcc { get; set; } - - [DataMember(Name="Body", EmitDefaultValue=false)] - public StringValue? Body { get; set; } - - [DataMember(Name="Cc", EmitDefaultValue=false)] - public StringValue? Cc { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="From", EmitDefaultValue=false)] - public StringValue? From { get; set; } - - [DataMember(Name="FromEmailAccountDisplayName", EmitDefaultValue=false)] - public StringValue? FromEmailAccountDisplayName { get; set; } - - [DataMember(Name="FromEmailAccountID", EmitDefaultValue=false)] - public IntValue? FromEmailAccountID { get; set; } - - [DataMember(Name="Incoming", EmitDefaultValue=false)] - public BooleanValue? Incoming { get; set; } - - [DataMember(Name="Internal", EmitDefaultValue=false)] - public BooleanValue? Internal { get; set; } - - [DataMember(Name="MailStatus", EmitDefaultValue=false)] - public StringValue? MailStatus { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Parent", EmitDefaultValue=false)] - public GuidValue? Parent { get; set; } - - [DataMember(Name="ParentSummary", EmitDefaultValue=false)] - public StringValue? ParentSummary { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="TimeActivity", EmitDefaultValue=false)] - public TimeActivity? TimeActivity { get; set; } - - [DataMember(Name="To", EmitDefaultValue=false)] - public StringValue? To { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - [DataMember(Name="CreatedByID", EmitDefaultValue=false)] - public StringValue? CreatedByID { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] - public StringValue? RelatedEntityType { get; set; } - - [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] - public GuidValue? RelatedEntityNoteID { get; set; } - - [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] - public StringValue? RelatedEntityDescription { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs deleted file mode 100644 index 3974735fd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessing.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmailProcessing : Entity, ITopLevelEntity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public IntValue? Account { get; set; } - - [DataMember(Name="AccountEmailAccountID", EmitDefaultValue=false)] - public StringValue? AccountEmailAccountID { get; set; } - - [DataMember(Name="AssignedToMe", EmitDefaultValue=false)] - public BooleanValue? AssignedToMe { get; set; } - - [DataMember(Name="AssignedToOwner", EmitDefaultValue=false)] - public StringValue? AssignedToOwner { get; set; } - - [DataMember(Name="IncludeFailed", EmitDefaultValue=false)] - public BooleanValue? IncludeFailed { get; set; } - - [DataMember(Name="Result", EmitDefaultValue=false)] - public List? Result { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs deleted file mode 100644 index 209884537..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmailProcessingRow.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmailProcessingRow : Entity - { - - [DataMember(Name="EmailAccount", EmitDefaultValue=false)] - public StringValue? EmailAccount { get; set; } - - [DataMember(Name="From", EmitDefaultValue=false)] - public StringValue? From { get; set; } - - [DataMember(Name="MailStatus", EmitDefaultValue=false)] - public StringValue? MailStatus { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Selected", EmitDefaultValue=false)] - public BooleanValue? Selected { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="To", EmitDefaultValue=false)] - public StringValue? To { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs deleted file mode 100644 index f5a6abfb2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Employee.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Employee : Entity, ITopLevelEntity - { - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="ContactInfo", EmitDefaultValue=false)] - public Contact? ContactInfo { get; set; } - - [DataMember(Name="Delegates", EmitDefaultValue=false)] - public List? Delegates { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="EmployeeSettings", EmitDefaultValue=false)] - public EmployeeSettings? EmployeeSettings { get; set; } - - [DataMember(Name="EmploymentHistory", EmitDefaultValue=false)] - public List? EmploymentHistory { get; set; } - - [DataMember(Name="FinancialSettings", EmitDefaultValue=false)] - public EmployeeFinancialSettings? FinancialSettings { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs deleted file mode 100644 index 2c7a791eb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassPTOBankDefault.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeClassPTOBankDefault : Entity - { - - [DataMember(Name="AccrualLimit", EmitDefaultValue=false)] - public DecimalValue? AccrualLimit { get; set; } - - [DataMember(Name="AccrualMethod", EmitDefaultValue=false)] - public StringValue? AccrualMethod { get; set; } - - [DataMember(Name="AccrualPercent", EmitDefaultValue=false)] - public DecimalValue? AccrualPercent { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CarryoverAmount", EmitDefaultValue=false)] - public DecimalValue? CarryoverAmount { get; set; } - - [DataMember(Name="CarryoverType", EmitDefaultValue=false)] - public StringValue? CarryoverType { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DisbursingType", EmitDefaultValue=false)] - public StringValue? DisbursingType { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="EmployeeClass", EmitDefaultValue=false)] - public StringValue? EmployeeClass { get; set; } - - [DataMember(Name="FrontLoadingAmount", EmitDefaultValue=false)] - public DecimalValue? FrontLoadingAmount { get; set; } - - [DataMember(Name="HoursPerYear", EmitDefaultValue=false)] - public DecimalValue? HoursPerYear { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PTOBank", EmitDefaultValue=false)] - public StringValue? PTOBank { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs deleted file mode 100644 index fea593b65..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeClassWorkLocation.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeClassWorkLocation : Entity - { - - [DataMember(Name="DefaultWorkLocation", EmitDefaultValue=false)] - public BooleanValue? DefaultWorkLocation { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs deleted file mode 100644 index bac7946aa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeduction.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeDeduction : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="ApplicableEarnings", EmitDefaultValue=false)] - public StringValue? ApplicableEarnings { get; set; } - - [DataMember(Name="CalculationMethod", EmitDefaultValue=false)] - public StringValue? CalculationMethod { get; set; } - - [DataMember(Name="MaximumAmount", EmitDefaultValue=false)] - public DecimalValue? MaximumAmount { get; set; } - - [DataMember(Name="MaximumFrequency", EmitDefaultValue=false)] - public StringValue? MaximumFrequency { get; set; } - - [DataMember(Name="Percent", EmitDefaultValue=false)] - public DecimalValue? Percent { get; set; } - - [DataMember(Name="ReportingTypeCA", EmitDefaultValue=false)] - public StringValue? ReportingTypeCA { get; set; } - - [DataMember(Name="ReportingTypeUS", EmitDefaultValue=false)] - public StringValue? ReportingTypeUS { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs deleted file mode 100644 index 795c46859..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDeductionOrBenefitDetail.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeDeductionOrBenefitDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="ContributionAmount", EmitDefaultValue=false)] - public DecimalValue? ContributionAmount { get; set; } - - [DataMember(Name="ContributionMax", EmitDefaultValue=false)] - public DecimalValue? ContributionMax { get; set; } - - [DataMember(Name="ContributionMaximumFrequency", EmitDefaultValue=false)] - public StringValue? ContributionMaximumFrequency { get; set; } - - [DataMember(Name="ContributionPercent", EmitDefaultValue=false)] - public DecimalValue? ContributionPercent { get; set; } - - [DataMember(Name="DeductionAmount", EmitDefaultValue=false)] - public DecimalValue? DeductionAmount { get; set; } - - [DataMember(Name="DeductionCode", EmitDefaultValue=false)] - public StringValue? DeductionCode { get; set; } - - [DataMember(Name="DeductionMax", EmitDefaultValue=false)] - public DecimalValue? DeductionMax { get; set; } - - [DataMember(Name="DeductionMaximumFrequency", EmitDefaultValue=false)] - public StringValue? DeductionMaximumFrequency { get; set; } - - [DataMember(Name="DeductionPercent", EmitDefaultValue=false)] - public DecimalValue? DeductionPercent { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="GarnishmentDetails", EmitDefaultValue=false)] - public GarnishmentDetails? GarnishmentDetails { get; set; } - - [DataMember(Name="IsGarnish", EmitDefaultValue=false)] - public BooleanValue? IsGarnish { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Sequence", EmitDefaultValue=false)] - public IntValue? Sequence { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="UseContributionDefaults", EmitDefaultValue=false)] - public BooleanValue? UseContributionDefaults { get; set; } - - [DataMember(Name="UseDeductionDefaults", EmitDefaultValue=false)] - public BooleanValue? UseDeductionDefaults { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs deleted file mode 100644 index 3c05e1261..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeDelegate.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeDelegate : Entity - { - - [DataMember(Name="Delegate", EmitDefaultValue=false)] - public StringValue? Delegate { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="DelegationOf", EmitDefaultValue=false)] - public StringValue? DelegationOf { get; set; } - - [DataMember(Name="StartsOn", EmitDefaultValue=false)] - public DateTimeValue? StartsOn { get; set; } - - [DataMember(Name="ExpiresOn", EmitDefaultValue=false)] - public DateTimeValue? ExpiresOn { get; set; } - - [DataMember(Name="IsActive", EmitDefaultValue=false)] - public BooleanValue? IsActive { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs deleted file mode 100644 index 15c132785..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeFinancialSettings.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeFinancialSettings : Entity - { - - [DataMember(Name="APAccount", EmitDefaultValue=false)] - public StringValue? APAccount { get; set; } - - [DataMember(Name="APSubaccount", EmitDefaultValue=false)] - public StringValue? APSubaccount { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccount { get; set; } - - [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? ExpenseSubaccount { get; set; } - - [DataMember(Name="PaymentInstructions", EmitDefaultValue=false)] - public List? PaymentInstructions { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PrepaymentAccount", EmitDefaultValue=false)] - public StringValue? PrepaymentAccount { get; set; } - - [DataMember(Name="PrepaymentSubaccount", EmitDefaultValue=false)] - public StringValue? PrepaymentSubaccount { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs deleted file mode 100644 index 088d535e2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGLAccounts.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeGLAccounts : Entity - { - - [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] - public StringValue? BenefitExpenseAccount { get; set; } - - [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] - public StringValue? BenefitExpenseSub { get; set; } - - [DataMember(Name="BenefitLiabilityAccount", EmitDefaultValue=false)] - public StringValue? BenefitLiabilityAccount { get; set; } - - [DataMember(Name="BenefitLiabilitySub", EmitDefaultValue=false)] - public StringValue? BenefitLiabilitySub { get; set; } - - [DataMember(Name="DeductionLiabilityAccount", EmitDefaultValue=false)] - public StringValue? DeductionLiabilityAccount { get; set; } - - [DataMember(Name="DeductionLiabilitySub", EmitDefaultValue=false)] - public StringValue? DeductionLiabilitySub { get; set; } - - [DataMember(Name="EarningsAccount", EmitDefaultValue=false)] - public StringValue? EarningsAccount { get; set; } - - [DataMember(Name="EarningsSub", EmitDefaultValue=false)] - public StringValue? EarningsSub { get; set; } - - [DataMember(Name="PTOAssetAccount", EmitDefaultValue=false)] - public StringValue? PTOAssetAccount { get; set; } - - [DataMember(Name="PTOAssetSub", EmitDefaultValue=false)] - public StringValue? PTOAssetSub { get; set; } - - [DataMember(Name="PTOExpenseAccount", EmitDefaultValue=false)] - public StringValue? PTOExpenseAccount { get; set; } - - [DataMember(Name="PTOExpenseSub", EmitDefaultValue=false)] - public StringValue? PTOExpenseSub { get; set; } - - [DataMember(Name="PTOLiabilityAccount", EmitDefaultValue=false)] - public StringValue? PTOLiabilityAccount { get; set; } - - [DataMember(Name="PTOLiabilitySub", EmitDefaultValue=false)] - public StringValue? PTOLiabilitySub { get; set; } - - [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] - public StringValue? TaxExpenseAccount { get; set; } - - [DataMember(Name="TaxExpenseSub", EmitDefaultValue=false)] - public StringValue? TaxExpenseSub { get; set; } - - [DataMember(Name="TaxLiabilityAccount", EmitDefaultValue=false)] - public StringValue? TaxLiabilityAccount { get; set; } - - [DataMember(Name="TaxLiabilitySub", EmitDefaultValue=false)] - public StringValue? TaxLiabilitySub { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs deleted file mode 100644 index bb8b9e910..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeGeneralInfo.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeGeneralInfo : Entity - { - - [DataMember(Name="Calendar", EmitDefaultValue=false)] - public StringValue? Calendar { get; set; } - - [DataMember(Name="CalendarClassDefault", EmitDefaultValue=false)] - public BooleanValue? CalendarClassDefault { get; set; } - - [DataMember(Name="CertifiedProjectHoursperYear", EmitDefaultValue=false)] - public IntValue? CertifiedProjectHoursperYear { get; set; } - - [DataMember(Name="DefaultUnion", EmitDefaultValue=false)] - public StringValue? DefaultUnion { get; set; } - - [DataMember(Name="DefaultWCCCode", EmitDefaultValue=false)] - public StringValue? DefaultWCCCode { get; set; } - - [DataMember(Name="ExemptFromCertReporting", EmitDefaultValue=false)] - public BooleanValue? ExemptFromCertReporting { get; set; } - - [DataMember(Name="ExemptFromCertReportingClassDefault", EmitDefaultValue=false)] - public BooleanValue? ExemptFromCertReportingClassDefault { get; set; } - - [DataMember(Name="ExemptFromOvertimeRules", EmitDefaultValue=false)] - public BooleanValue? ExemptFromOvertimeRules { get; set; } - - [DataMember(Name="ExemptFromOvertimeRulesClassDefault", EmitDefaultValue=false)] - public BooleanValue? ExemptFromOvertimeRulesClassDefault { get; set; } - - [DataMember(Name="NetPayMinClassDefault", EmitDefaultValue=false)] - public BooleanValue? NetPayMinClassDefault { get; set; } - - [DataMember(Name="NetPayMinimum", EmitDefaultValue=false)] - public DecimalValue? NetPayMinimum { get; set; } - - [DataMember(Name="OverrideHoursPerYearForCertClassDefault", EmitDefaultValue=false)] - public BooleanValue? OverrideHoursPerYearForCertClassDefault { get; set; } - - [DataMember(Name="OverrideHrsPerYearForCertProjects", EmitDefaultValue=false)] - public BooleanValue? OverrideHrsPerYearForCertProjects { get; set; } - - [DataMember(Name="PayGroup", EmitDefaultValue=false)] - public StringValue? PayGroup { get; set; } - - [DataMember(Name="PayGroupClassDefault", EmitDefaultValue=false)] - public BooleanValue? PayGroupClassDefault { get; set; } - - [DataMember(Name="UnionClassDefault", EmitDefaultValue=false)] - public BooleanValue? UnionClassDefault { get; set; } - - [DataMember(Name="UseClassDefaultValueHoursPerYearForCertifiedUseDflt", EmitDefaultValue=false)] - public BooleanValue? UseClassDefaultValueHoursPerYearForCertifiedUseDflt { get; set; } - - [DataMember(Name="WCCCodeClassDefault", EmitDefaultValue=false)] - public BooleanValue? WCCCodeClassDefault { get; set; } - - [DataMember(Name="WeeksPerYearClassDefault", EmitDefaultValue=false)] - public BooleanValue? WeeksPerYearClassDefault { get; set; } - - [DataMember(Name="WorkingHoursPerWeek", EmitDefaultValue=false)] - public DecimalValue? WorkingHoursPerWeek { get; set; } - - [DataMember(Name="WorkingHoursPerYear", EmitDefaultValue=false)] - public DecimalValue? WorkingHoursPerYear { get; set; } - - [DataMember(Name="WorkingWeeksPerYear", EmitDefaultValue=false)] - public ByteValue? WorkingWeeksPerYear { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs deleted file mode 100644 index 587220b03..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOff.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePaidTimeOff : Entity - { - - [DataMember(Name="PaidTimeOffDetails", EmitDefaultValue=false)] - public List? PaidTimeOffDetails { get; set; } - - [DataMember(Name="UsePTOBanksfromEmployeeClass", EmitDefaultValue=false)] - public BooleanValue? UsePTOBanksfromEmployeeClass { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs deleted file mode 100644 index 14b70d880..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaidTimeOffDetail.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePaidTimeOffDetail : Entity - { - - [DataMember(Name="AccrualLimit", EmitDefaultValue=false)] - public DecimalValue? AccrualLimit { get; set; } - - [DataMember(Name="AccrualMethod", EmitDefaultValue=false)] - public StringValue? AccrualMethod { get; set; } - - [DataMember(Name="AccrualPercent", EmitDefaultValue=false)] - public DecimalValue? AccrualPercent { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AmountAccrued", EmitDefaultValue=false)] - public DecimalValue? AmountAccrued { get; set; } - - [DataMember(Name="AmountAvailable", EmitDefaultValue=false)] - public DecimalValue? AmountAvailable { get; set; } - - [DataMember(Name="AmountUsed", EmitDefaultValue=false)] - public DecimalValue? AmountUsed { get; set; } - - [DataMember(Name="CarryoverAmount", EmitDefaultValue=false)] - public DecimalValue? CarryoverAmount { get; set; } - - [DataMember(Name="CarryoverType", EmitDefaultValue=false)] - public StringValue? CarryoverType { get; set; } - - [DataMember(Name="CreateFinancialTransaction", EmitDefaultValue=false)] - public BooleanValue? CreateFinancialTransaction { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DisbursingType", EmitDefaultValue=false)] - public StringValue? DisbursingType { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="FrontLoadingAmount", EmitDefaultValue=false)] - public DecimalValue? FrontLoadingAmount { get; set; } - - [DataMember(Name="HoursAccrued", EmitDefaultValue=false)] - public DecimalValue? HoursAccrued { get; set; } - - [DataMember(Name="HoursAvailable", EmitDefaultValue=false)] - public DecimalValue? HoursAvailable { get; set; } - - [DataMember(Name="HoursPerYear", EmitDefaultValue=false)] - public DecimalValue? HoursPerYear { get; set; } - - [DataMember(Name="HoursUsed", EmitDefaultValue=false)] - public DecimalValue? HoursUsed { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PTOBank", EmitDefaultValue=false)] - public StringValue? PTOBank { get; set; } - - [DataMember(Name="UseClassDefaultValues", EmitDefaultValue=false)] - public BooleanValue? UseClassDefaultValues { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs deleted file mode 100644 index bb99d0f63..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarningDetail.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePaycheckEarningDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] - public BooleanValue? CertifiedJob { get; set; } - - [DataMember(Name="Code", EmitDefaultValue=false)] - public StringValue? Code { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Hours", EmitDefaultValue=false)] - public DecimalValue? Hours { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="ManualRate", EmitDefaultValue=false)] - public BooleanValue? ManualRate { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="Rate", EmitDefaultValue=false)] - public DecimalValue? Rate { get; set; } - - [DataMember(Name="ShiftCode", EmitDefaultValue=false)] - public StringValue? ShiftCode { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Task", EmitDefaultValue=false)] - public StringValue? Task { get; set; } - - [DataMember(Name="UnionLocal", EmitDefaultValue=false)] - public StringValue? UnionLocal { get; set; } - - [DataMember(Name="Units", EmitDefaultValue=false)] - public DecimalValue? Units { get; set; } - - [DataMember(Name="UnitType", EmitDefaultValue=false)] - public StringValue? UnitType { get; set; } - - [DataMember(Name="WCCCode", EmitDefaultValue=false)] - public StringValue? WCCCode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs deleted file mode 100644 index 27b1f02e0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckEarnings.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePaycheckEarnings : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Employee", EmitDefaultValue=false)] - public StringValue? Employee { get; set; } - - [DataMember(Name="EmployeeType", EmitDefaultValue=false)] - public StringValue? EmployeeType { get; set; } - - [DataMember(Name="Hours", EmitDefaultValue=false)] - public DecimalValue? Hours { get; set; } - - [DataMember(Name="ManualAmount", EmitDefaultValue=false)] - public BooleanValue? ManualAmount { get; set; } - - [DataMember(Name="RegularAmounttoBePaid", EmitDefaultValue=false)] - public DecimalValue? RegularAmounttoBePaid { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs deleted file mode 100644 index d0668003b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePaycheckSummary.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePaycheckSummary : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Employee", EmitDefaultValue=false)] - public StringValue? Employee { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="EmployeePaycheckEarnings", EmitDefaultValue=false)] - public EmployeePaycheckEarnings? EmployeePaycheckEarnings { get; set; } - - [DataMember(Name="Hours", EmitDefaultValue=false)] - public DecimalValue? Hours { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PaycheckRef", EmitDefaultValue=false)] - public StringValue? PaycheckRef { get; set; } - - [DataMember(Name="Rate", EmitDefaultValue=false)] - public DecimalValue? Rate { get; set; } - - [DataMember(Name="VoidPaycheckRef", EmitDefaultValue=false)] - public StringValue? VoidPaycheckRef { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs deleted file mode 100644 index 2c5c23901..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClass.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePayrollClass : Entity, ITopLevelEntity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EmployeePayrollClassID", EmitDefaultValue=false)] - public StringValue? EmployeePayrollClassID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PayrollDefaults", EmitDefaultValue=false)] - public EmployeePayrollClassDefaults? PayrollDefaults { get; set; } - - [DataMember(Name="PTODefaults", EmitDefaultValue=false)] - public List? PTODefaults { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs deleted file mode 100644 index 3894d5556..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollClassDefaults.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePayrollClassDefaults : Entity - { - - [DataMember(Name="CertifiedProjectHoursperYear", EmitDefaultValue=false)] - public IntValue? CertifiedProjectHoursperYear { get; set; } - - [DataMember(Name="DefaultCalendar", EmitDefaultValue=false)] - public StringValue? DefaultCalendar { get; set; } - - [DataMember(Name="DefaultUnion", EmitDefaultValue=false)] - public StringValue? DefaultUnion { get; set; } - - [DataMember(Name="DefaultWCCCode", EmitDefaultValue=false)] - public StringValue? DefaultWCCCode { get; set; } - - [DataMember(Name="EmployeeType", EmitDefaultValue=false)] - public StringValue? EmployeeType { get; set; } - - [DataMember(Name="ExemptFromCertifiedReporting", EmitDefaultValue=false)] - public BooleanValue? ExemptFromCertifiedReporting { get; set; } - - [DataMember(Name="ExemptFromOvertimeRules", EmitDefaultValue=false)] - public BooleanValue? ExemptFromOvertimeRules { get; set; } - - [DataMember(Name="HoursPerYearForCertified", EmitDefaultValue=false)] - public StringValue? HoursPerYearForCertified { get; set; } - - [DataMember(Name="MaximumPercentofNetPayforallGarnishments", EmitDefaultValue=false)] - public DecimalValue? MaximumPercentofNetPayforallGarnishments { get; set; } - - [DataMember(Name="NetPayMinimum", EmitDefaultValue=false)] - public DecimalValue? NetPayMinimum { get; set; } - - [DataMember(Name="OverrideHoursPerYearforCertProject", EmitDefaultValue=false)] - public BooleanValue? OverrideHoursPerYearforCertProject { get; set; } - - [DataMember(Name="PayGroup", EmitDefaultValue=false)] - public StringValue? PayGroup { get; set; } - - [DataMember(Name="UsePayrollWorkLocationfromProject", EmitDefaultValue=false)] - public BooleanValue? UsePayrollWorkLocationfromProject { get; set; } - - [DataMember(Name="WorkingHoursPerWeek", EmitDefaultValue=false)] - public DecimalValue? WorkingHoursPerWeek { get; set; } - - [DataMember(Name="WorkingHoursPerYear", EmitDefaultValue=false)] - public DecimalValue? WorkingHoursPerYear { get; set; } - - [DataMember(Name="WorkingWeeksPerYear", EmitDefaultValue=false)] - public ByteValue? WorkingWeeksPerYear { get; set; } - - [DataMember(Name="WorkLocations", EmitDefaultValue=false)] - public List? WorkLocations { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs deleted file mode 100644 index 9f1ea386f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeePayrollSettings.cs +++ /dev/null @@ -1,85 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeePayrollSettings : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AddressInfo", EmitDefaultValue=false)] - public Address? AddressInfo { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="Compensation", EmitDefaultValue=false)] - public List? Compensation { get; set; } - - [DataMember(Name="DeductionsAndBenefits", EmitDefaultValue=false)] - public DeductionsAndBenefits? DeductionsAndBenefits { get; set; } - - [DataMember(Name="DirectDepositDetails", EmitDefaultValue=false)] - public List? DirectDepositDetails { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="EmployeeType", EmitDefaultValue=false)] - public StringValue? EmployeeType { get; set; } - - [DataMember(Name="EmploymentDates", EmitDefaultValue=false)] - public EmploymentDates? EmploymentDates { get; set; } - - [DataMember(Name="EmploymentRecords", EmitDefaultValue=false)] - public List? EmploymentRecords { get; set; } - - [DataMember(Name="GeneralInfo", EmitDefaultValue=false)] - public EmployeeGeneralInfo? GeneralInfo { get; set; } - - [DataMember(Name="GLAccounts", EmitDefaultValue=false)] - public EmployeeGLAccounts? GLAccounts { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PaidTimeOff", EmitDefaultValue=false)] - public EmployeePaidTimeOff? PaidTimeOff { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="Taxes", EmitDefaultValue=false)] - public List? Taxes { get; set; } - - [DataMember(Name="TaxSettings", EmitDefaultValue=false)] - public List? TaxSettings { get; set; } - - [DataMember(Name="EmployeeTypeClassDefault", EmitDefaultValue=false)] - public BooleanValue? EmployeeTypeClassDefault { get; set; } - - [DataMember(Name="WorkLocations", EmitDefaultValue=false)] - public EmployeeWorkLocations? WorkLocations { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs deleted file mode 100644 index bc27ce5b1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeSettings.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeSettings : Entity - { - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="Calendar", EmitDefaultValue=false)] - public StringValue? Calendar { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrencyRateTypeID { get; set; } - - [DataMember(Name="DepartmentID", EmitDefaultValue=false)] - public StringValue? DepartmentID { get; set; } - - [DataMember(Name="EmployeeClass", EmitDefaultValue=false)] - public StringValue? EmployeeClass { get; set; } - - [DataMember(Name="EmployeeRefNbr", EmitDefaultValue=false)] - public StringValue? EmployeeRefNbr { get; set; } - - [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] - public BooleanValue? EnableCurrencyOverride { get; set; } - - [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] - public BooleanValue? EnableRateOverride { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="RegularHoursValidation", EmitDefaultValue=false)] - public StringValue? RegularHoursValidation { get; set; } - - [DataMember(Name="ReportsTo", EmitDefaultValue=false)] - public StringValue? ReportsTo { get; set; } - - [DataMember(Name="RouteEmails", EmitDefaultValue=false)] - public BooleanValue? RouteEmails { get; set; } - - [DataMember(Name="Salesperson", EmitDefaultValue=false)] - public StringValue? Salesperson { get; set; } - - [DataMember(Name="TimeCardIsRequired", EmitDefaultValue=false)] - public BooleanValue? TimeCardIsRequired { get; set; } - - [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] - public StringValue? UnionLocalID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs deleted file mode 100644 index ca8993875..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeTaxDetail.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeTaxDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxCodeSettings", EmitDefaultValue=false)] - public List? TaxCodeSettings { get; set; } - - [DataMember(Name="TaxDescription", EmitDefaultValue=false)] - public StringValue? TaxDescription { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs deleted file mode 100644 index 4c6017054..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocationDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeWorkLocationDetail : Entity - { - - [DataMember(Name="DefaultWorkLocation", EmitDefaultValue=false)] - public BooleanValue? DefaultWorkLocation { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs deleted file mode 100644 index 257e0f12a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployeeWorkLocations.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployeeWorkLocations : Entity - { - - [DataMember(Name="UseClassDefaultValueUsePayrollProjectWorkLocationUseDflt", EmitDefaultValue=false)] - public BooleanValue? UseClassDefaultValueUsePayrollProjectWorkLocationUseDflt { get; set; } - - [DataMember(Name="UsePayrollWorkLocationfromProject", EmitDefaultValue=false)] - public BooleanValue? UsePayrollWorkLocationfromProject { get; set; } - - [DataMember(Name="WorkLocationClassDefaults", EmitDefaultValue=false)] - public BooleanValue? WorkLocationClassDefaults { get; set; } - - [DataMember(Name="WorkLocationDetails", EmitDefaultValue=false)] - public List? WorkLocationDetails { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs deleted file mode 100644 index 41649a2a4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerContribution.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployerContribution : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="ApplicableEarnings", EmitDefaultValue=false)] - public StringValue? ApplicableEarnings { get; set; } - - [DataMember(Name="CalculationMethod", EmitDefaultValue=false)] - public StringValue? CalculationMethod { get; set; } - - [DataMember(Name="CertifiedReportingType", EmitDefaultValue=false)] - public StringValue? CertifiedReportingType { get; set; } - - [DataMember(Name="ContributestoGrossCalculation", EmitDefaultValue=false)] - public BooleanValue? ContributestoGrossCalculation { get; set; } - - [DataMember(Name="MaximumAmount", EmitDefaultValue=false)] - public DecimalValue? MaximumAmount { get; set; } - - [DataMember(Name="MaximumFrequency", EmitDefaultValue=false)] - public StringValue? MaximumFrequency { get; set; } - - [DataMember(Name="NoFinancialTransaction", EmitDefaultValue=false)] - public BooleanValue? NoFinancialTransaction { get; set; } - - [DataMember(Name="Percent", EmitDefaultValue=false)] - public DecimalValue? Percent { get; set; } - - [DataMember(Name="ReportingTypeCA", EmitDefaultValue=false)] - public StringValue? ReportingTypeCA { get; set; } - - [DataMember(Name="ReportingTypeUS", EmitDefaultValue=false)] - public StringValue? ReportingTypeUS { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs deleted file mode 100644 index 3e91c8568..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWage.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployerTaxesIncreasingApplWage : Entity - { - - [DataMember(Name="EmployerTaxesIncreasingApplWageDetails", EmitDefaultValue=false)] - public List? EmployerTaxesIncreasingApplWageDetails { get; set; } - - [DataMember(Name="InclusionType", EmitDefaultValue=false)] - public StringValue? InclusionType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs deleted file mode 100644 index 48b5c0602..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmployerTaxesIncreasingApplWageDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmployerTaxesIncreasingApplWageDetail : Entity - { - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxName", EmitDefaultValue=false)] - public StringValue? TaxName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs deleted file mode 100644 index beb5dde58..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentDates.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmploymentDates : Entity - { - - [DataMember(Name="HireDate", EmitDefaultValue=false)] - public DateTimeValue? HireDate { get; set; } - - [DataMember(Name="TerminationDate", EmitDefaultValue=false)] - public DateTimeValue? TerminationDate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs deleted file mode 100644 index 456e06232..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentHistoryRecord.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmploymentHistoryRecord : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="PositionID", EmitDefaultValue=false)] - public StringValue? PositionID { get; set; } - - [DataMember(Name="RehireEligible", EmitDefaultValue=false)] - public BooleanValue? RehireEligible { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="StartReason", EmitDefaultValue=false)] - public StringValue? StartReason { get; set; } - - [DataMember(Name="Terminated", EmitDefaultValue=false)] - public BooleanValue? Terminated { get; set; } - - [DataMember(Name="TerminationReason", EmitDefaultValue=false)] - public StringValue? TerminationReason { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs deleted file mode 100644 index 982502021..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EmploymentRecord.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EmploymentRecord : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="FinalPayment", EmitDefaultValue=false)] - public GuidValue? FinalPayment { get; set; } - - [DataMember(Name="Position", EmitDefaultValue=false)] - public StringValue? Position { get; set; } - - [DataMember(Name="RehireEligible", EmitDefaultValue=false)] - public BooleanValue? RehireEligible { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="StartReason", EmitDefaultValue=false)] - public StringValue? StartReason { get; set; } - - [DataMember(Name="Terminated", EmitDefaultValue=false)] - public BooleanValue? Terminated { get; set; } - - [DataMember(Name="TerminationReason", EmitDefaultValue=false)] - public StringValue? TerminationReason { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs deleted file mode 100644 index 003f3d310..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Event.cs +++ /dev/null @@ -1,91 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Event : Entity, ITopLevelEntity - { - - [DataMember(Name="AllDay", EmitDefaultValue=false)] - public BooleanValue? AllDay { get; set; } - - [DataMember(Name="Attendees", EmitDefaultValue=false)] - public List? Attendees { get; set; } - - [DataMember(Name="Body", EmitDefaultValue=false)] - public StringValue? Body { get; set; } - - [DataMember(Name="Category", EmitDefaultValue=false)] - public StringValue? Category { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="EndTime", EmitDefaultValue=false)] - public DateTimeValue? EndTime { get; set; } - - [DataMember(Name="Internal", EmitDefaultValue=false)] - public BooleanValue? Internal { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="Priority", EmitDefaultValue=false)] - public StringValue? Priority { get; set; } - - [DataMember(Name="RelatedActivities", EmitDefaultValue=false)] - public List? RelatedActivities { get; set; } - - [DataMember(Name="Reminder", EmitDefaultValue=false)] - public ReminderDetail? Reminder { get; set; } - - [DataMember(Name="ShowAs", EmitDefaultValue=false)] - public StringValue? ShowAs { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Summary", EmitDefaultValue=false)] - public StringValue? Summary { get; set; } - - [DataMember(Name="TimeActivity", EmitDefaultValue=false)] - public EventTimeActivity? TimeActivity { get; set; } - - [DataMember(Name="CreatedByID", EmitDefaultValue=false)] - public StringValue? CreatedByID { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] - public StringValue? RelatedEntityType { get; set; } - - [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] - public GuidValue? RelatedEntityNoteID { get; set; } - - [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] - public StringValue? RelatedEntityDescription { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs deleted file mode 100644 index 03b3b10a3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventAttendee.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EventAttendee : Entity - { - - [DataMember(Name="Comment", EmitDefaultValue=false)] - public StringValue? Comment { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="EventNoteID", EmitDefaultValue=false)] - public GuidValue? EventNoteID { get; set; } - - [DataMember(Name="InvitationStatus", EmitDefaultValue=false)] - public StringValue? InvitationStatus { get; set; } - - [DataMember(Name="Key", EmitDefaultValue=false)] - public StringValue? Key { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="NameAttendeeName", EmitDefaultValue=false)] - public StringValue? NameAttendeeName { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public IntValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs deleted file mode 100644 index 06fcbec1e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/EventTimeActivity.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class EventTimeActivity : Entity - { - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public StringValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="Overtime", EmitDefaultValue=false)] - public StringValue? Overtime { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs deleted file mode 100644 index bfc45728d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaim.cs +++ /dev/null @@ -1,88 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseClaim : Entity, ITopLevelEntity - { - - [DataMember(Name="ApprovalDate", EmitDefaultValue=false)] - public DateTimeValue? ApprovalDate { get; set; } - - [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] - public List? ApprovalDetails { get; set; } - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="ClaimedBy", EmitDefaultValue=false)] - public StringValue? ClaimedBy { get; set; } - - [DataMember(Name="ClaimTotal", EmitDefaultValue=false)] - public DecimalValue? ClaimTotal { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="DepartmentID", EmitDefaultValue=false)] - public StringValue? DepartmentID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] - public ExpenseClaimFinancialDetail? FinancialDetails { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? ReciprocalRate { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] - public DecimalValue? VATExemptTotal { get; set; } - - [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] - public DecimalValue? VATTaxableTotal { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs deleted file mode 100644 index 60a9841a4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimAPDocument.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseClaimAPDocument : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs deleted file mode 100644 index 27a39af92..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimDetails.cs +++ /dev/null @@ -1,111 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseClaimDetails : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="AmountInClaimCurrency", EmitDefaultValue=false)] - public DecimalValue? AmountInClaimCurrency { get; set; } - - [DataMember(Name="APRefNbr", EmitDefaultValue=false)] - public StringValue? APRefNbr { get; set; } - - [DataMember(Name="ARRefNbr", EmitDefaultValue=false)] - public StringValue? ARRefNbr { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ClaimAmount", EmitDefaultValue=false)] - public DecimalValue? ClaimAmount { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EmployeePart", EmitDefaultValue=false)] - public DecimalValue? EmployeePart { get; set; } - - [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccount { get; set; } - - [DataMember(Name="ExpenseItemID", EmitDefaultValue=false)] - public StringValue? ExpenseItemID { get; set; } - - [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? ExpenseSubaccount { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="NetAmount", EmitDefaultValue=false)] - public DecimalValue? NetAmount { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="TipAmount", EmitDefaultValue=false)] - public DecimalValue? TipAmount { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs deleted file mode 100644 index cf3753aff..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimFinancialDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseClaimFinancialDetail : Entity - { - - [DataMember(Name="APDocuments", EmitDefaultValue=false)] - public List? APDocuments { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="PosttoPeriod", EmitDefaultValue=false)] - public StringValue? PosttoPeriod { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs deleted file mode 100644 index 09ece1273..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseClaimTaxDetail.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseClaimTaxDetail : Entity - { - - [DataMember(Name="DeductibleTaxRate", EmitDefaultValue=false)] - public DecimalValue? DeductibleTaxRate { get; set; } - - [DataMember(Name="ExpenseAmount", EmitDefaultValue=false)] - public DecimalValue? ExpenseAmount { get; set; } - - [DataMember(Name="IncludeinVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeinVATExemptTotal { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs deleted file mode 100644 index e9093c8c1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceipt.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseReceipt : Entity, ITopLevelEntity - { - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ClaimAmount", EmitDefaultValue=false)] - public DecimalValue? ClaimAmount { get; set; } - - [DataMember(Name="ClaimedBy", EmitDefaultValue=false)] - public StringValue? ClaimedBy { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="ExpenseItemID", EmitDefaultValue=false)] - public StringValue? ExpenseItemID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ReceiptDetails", EmitDefaultValue=false)] - public ExpenseReceiptDetails? ReceiptDetails { get; set; } - - [DataMember(Name="ReceiptID", EmitDefaultValue=false)] - public StringValue? ReceiptID { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs deleted file mode 100644 index 2ff60288c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptDetails.cs +++ /dev/null @@ -1,96 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseReceiptDetails : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CurrancyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrancyRateTypeID { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EmployeePart", EmitDefaultValue=false)] - public DecimalValue? EmployeePart { get; set; } - - [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccount { get; set; } - - [DataMember(Name="ExpenseClaimID", EmitDefaultValue=false)] - public StringValue? ExpenseClaimID { get; set; } - - [DataMember(Name="ExpenseClaimStatus", EmitDefaultValue=false)] - public StringValue? ExpenseClaimStatus { get; set; } - - [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? ExpenseSubaccount { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? ReciprocalRate { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs deleted file mode 100644 index ade5a321c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExpenseReceiptTaxDetails.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExpenseReceiptTaxDetails : Entity - { - - [DataMember(Name="DeductibleTaxRate", EmitDefaultValue=false)] - public DecimalValue? DeductibleTaxRate { get; set; } - - [DataMember(Name="ExpenseAmount", EmitDefaultValue=false)] - public DecimalValue? ExpenseAmount { get; set; } - - [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeInVATExemptTotal { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs deleted file mode 100644 index 02345249a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ExternalCommitment.cs +++ /dev/null @@ -1,85 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ExternalCommitment : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedCOAmount { get; set; } - - [DataMember(Name="CommittedCOQty", EmitDefaultValue=false)] - public DecimalValue? CommittedCOQty { get; set; } - - [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedAmount { get; set; } - - [DataMember(Name="CommittedInvoicedQty", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedQty { get; set; } - - [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenAmount { get; set; } - - [DataMember(Name="CommittedOpenQty", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenQty { get; set; } - - [DataMember(Name="CommittedReceivedQty", EmitDefaultValue=false)] - public DecimalValue? CommittedReceivedQty { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OriginalCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? OriginalCommittedAmount { get; set; } - - [DataMember(Name="OriginalCommittedQty", EmitDefaultValue=false)] - public DecimalValue? OriginalCommittedQty { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="RelatedDocument", EmitDefaultValue=false)] - public StringValue? RelatedDocument { get; set; } - - [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedAmount { get; set; } - - [DataMember(Name="RevisedCommittedQty", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedQty { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs deleted file mode 100644 index 80b53f3b1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FOBPoint.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FOBPoint : Entity, ITopLevelEntity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="FOBPointID", EmitDefaultValue=false)] - public StringValue? FOBPointID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs deleted file mode 100644 index 3ccb776c7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriod.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FinancialPeriod : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="FinancialYear", EmitDefaultValue=false)] - public StringValue? FinancialYear { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NbrOfPeriods", EmitDefaultValue=false)] - public ShortValue? NbrOfPeriods { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="UserDefinedPeriods", EmitDefaultValue=false)] - public BooleanValue? UserDefinedPeriods { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs deleted file mode 100644 index c915ddcbd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialPeriodDetail.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FinancialPeriodDetail : Entity - { - - [DataMember(Name="AdjustmentPeriod", EmitDefaultValue=false)] - public BooleanValue? AdjustmentPeriod { get; set; } - - [DataMember(Name="ClosedInAP", EmitDefaultValue=false)] - public BooleanValue? ClosedInAP { get; set; } - - [DataMember(Name="ClosedInAR", EmitDefaultValue=false)] - public BooleanValue? ClosedInAR { get; set; } - - [DataMember(Name="ClosedInCA", EmitDefaultValue=false)] - public BooleanValue? ClosedInCA { get; set; } - - [DataMember(Name="ClosedInFA", EmitDefaultValue=false)] - public BooleanValue? ClosedInFA { get; set; } - - [DataMember(Name="ClosedInIN", EmitDefaultValue=false)] - public BooleanValue? ClosedInIN { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="FinancialPeriodID", EmitDefaultValue=false)] - public StringValue? FinancialPeriodID { get; set; } - - [DataMember(Name="LengthInDays", EmitDefaultValue=false)] - public IntValue? LengthInDays { get; set; } - - [DataMember(Name="PeriodNbr", EmitDefaultValue=false)] - public StringValue? PeriodNbr { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs deleted file mode 100644 index 37e0925c1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialSettings.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FinancialSettings : Entity - { - - [DataMember(Name="BillSeparately", EmitDefaultValue=false)] - public BooleanValue? BillSeparately { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CashDiscountDate", EmitDefaultValue=false)] - public DateTimeValue? CashDiscountDate { get; set; } - - [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] - public StringValue? CustomerTaxZone { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="EntityUsageType", EmitDefaultValue=false)] - public StringValue? EntityUsageType { get; set; } - - [DataMember(Name="InvoiceDate", EmitDefaultValue=false)] - public DateTimeValue? InvoiceDate { get; set; } - - [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] - public StringValue? InvoiceNbr { get; set; } - - [DataMember(Name="OriginalOrderNbr", EmitDefaultValue=false)] - public StringValue? OriginalOrderNbr { get; set; } - - [DataMember(Name="OriginalOrderType", EmitDefaultValue=false)] - public StringValue? OriginalOrderType { get; set; } - - [DataMember(Name="OverrideTaxZone", EmitDefaultValue=false)] - public BooleanValue? OverrideTaxZone { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs deleted file mode 100644 index 15d12a7ec..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYear.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FinancialYear : Entity, ITopLevelEntity - { - - [DataMember(Name="AdjustToPeriodStart", EmitDefaultValue=false)] - public BooleanValue? AdjustToPeriodStart { get; set; } - - [DataMember(Name="BelongsToNextYear", EmitDefaultValue=false)] - public BooleanValue? BelongsToNextYear { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="DayOfWeek", EmitDefaultValue=false)] - public StringValue? DayOfWeek { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="FinancialYearStartsOn", EmitDefaultValue=false)] - public DateTimeValue? FinancialYearStartsOn { get; set; } - - [DataMember(Name="FirstFinancialYear", EmitDefaultValue=false)] - public StringValue? FirstFinancialYear { get; set; } - - [DataMember(Name="FirstPeriodStartDate", EmitDefaultValue=false)] - public DateTimeValue? FirstPeriodStartDate { get; set; } - - [DataMember(Name="HasAdjustmentPeriod", EmitDefaultValue=false)] - public BooleanValue? HasAdjustmentPeriod { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LengthOfFinancialPeriodInDays", EmitDefaultValue=false)] - public ShortValue? LengthOfFinancialPeriodInDays { get; set; } - - [DataMember(Name="NbrOfFinancialPeriods", EmitDefaultValue=false)] - public ShortValue? NbrOfFinancialPeriods { get; set; } - - [DataMember(Name="PeriodsStartDayOfWeek", EmitDefaultValue=false)] - public StringValue? PeriodsStartDayOfWeek { get; set; } - - [DataMember(Name="PeriodType", EmitDefaultValue=false)] - public StringValue? PeriodType { get; set; } - - [DataMember(Name="UserDefinedPeriods", EmitDefaultValue=false)] - public BooleanValue? UserDefinedPeriods { get; set; } - - [DataMember(Name="YearEndCalculationMethod", EmitDefaultValue=false)] - public StringValue? YearEndCalculationMethod { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs deleted file mode 100644 index b51da7bbd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/FinancialYearPeriodDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class FinancialYearPeriodDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="PeriodNbr", EmitDefaultValue=false)] - public StringValue? PeriodNbr { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs deleted file mode 100644 index 402d5632c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/GarnishmentDetails.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class GarnishmentDetails : Entity - { - - [DataMember(Name="GarnCourtDate", EmitDefaultValue=false)] - public DateTimeValue? GarnCourtDate { get; set; } - - [DataMember(Name="GarnCourtName", EmitDefaultValue=false)] - public StringValue? GarnCourtName { get; set; } - - [DataMember(Name="GarnDocRefNbr", EmitDefaultValue=false)] - public StringValue? GarnDocRefNbr { get; set; } - - [DataMember(Name="GarnOrigAmount", EmitDefaultValue=false)] - public DecimalValue? GarnOrigAmount { get; set; } - - [DataMember(Name="GarnPaidAmount", EmitDefaultValue=false)] - public DecimalValue? GarnPaidAmount { get; set; } - - [DataMember(Name="GarnVendorID", EmitDefaultValue=false)] - public StringValue? GarnVendorID { get; set; } - - [DataMember(Name="GarnVendorInvDescr", EmitDefaultValue=false)] - public StringValue? GarnVendorInvDescr { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs deleted file mode 100644 index e0cd72078..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContacts.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ISVContacts : Entity, ITopLevelEntity - { - - [DataMember(Name="InternalContactsDetails", EmitDefaultValue=false)] - public List? InternalContactsDetails { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="Contact", EmitDefaultValue=false)] - public StringValue? Contact { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="ContactStatus", EmitDefaultValue=false)] - public StringValue? ContactStatus { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="EmployeeStatus", EmitDefaultValue=false)] - public StringValue? EmployeeStatus { get; set; } - - [DataMember(Name="UserStatus", EmitDefaultValue=false)] - public StringValue? UserStatus { get; set; } - - [DataMember(Name="Login", EmitDefaultValue=false)] - public StringValue? Login { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs deleted file mode 100644 index 48bd8f58f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVContactsDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ISVContactsDetail : Entity - { - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="Contact", EmitDefaultValue=false)] - public StringValue? Contact { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="ContactStatus", EmitDefaultValue=false)] - public StringValue? ContactStatus { get; set; } - - [DataMember(Name="EmployeeStatus", EmitDefaultValue=false)] - public StringValue? EmployeeStatus { get; set; } - - [DataMember(Name="Login", EmitDefaultValue=false)] - public StringValue? Login { get; set; } - - [DataMember(Name="UserStatus", EmitDefaultValue=false)] - public StringValue? UserStatus { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs deleted file mode 100644 index c5edbf7c8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ISVSolution.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ISVSolution : Entity, ITopLevelEntity - { - - [DataMember(Name="Initials", EmitDefaultValue=false)] - public StringValue? Initials { get; set; } - - [DataMember(Name="SolutionCode", EmitDefaultValue=false)] - public StringValue? SolutionCode { get; set; } - - [DataMember(Name="SolutionClass", EmitDefaultValue=false)] - public StringValue? SolutionClass { get; set; } - - [DataMember(Name="SolutionName", EmitDefaultValue=false)] - public StringValue? SolutionName { get; set; } - - [DataMember(Name="CurrentRevision", EmitDefaultValue=false)] - public StringValue? CurrentRevision { get; set; } - - [DataMember(Name="PublishedonMarketplace", EmitDefaultValue=false)] - public BooleanValue? PublishedonMarketplace { get; set; } - - [DataMember(Name="ISV", EmitDefaultValue=false)] - public StringValue? ISV { get; set; } - - [DataMember(Name="SolutionStage", EmitDefaultValue=false)] - public StringValue? SolutionStage { get; set; } - - [DataMember(Name="TAM", EmitDefaultValue=false)] - public StringValue? TAM { get; set; } - - [DataMember(Name="TAMEmployeeName", EmitDefaultValue=false)] - public StringValue? TAMEmployeeName { get; set; } - - [DataMember(Name="ISVCERTND", EmitDefaultValue=false)] - public StringValue? ISVCERTND { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="Repository", EmitDefaultValue=false)] - public List? Repository { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs deleted file mode 100644 index 299e59c63..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustment.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryAdjustment : Entity, ITopLevelEntity - { - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalCost", EmitDefaultValue=false)] - public DecimalValue? TotalCost { get; set; } - - [DataMember(Name="TotalQty", EmitDefaultValue=false)] - public DecimalValue? TotalQty { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs deleted file mode 100644 index b22b8f8e8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAdjustmentDetail.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryAdjustmentDetail : Entity - { - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CostLayerType", EmitDefaultValue=false)] - public StringValue? CostLayerType { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] - public DecimalValue? ExtendedCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="ReceiptNbr", EmitDefaultValue=false)] - public StringValue? ReceiptNbr { get; set; } - - [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] - public StringValue? SpecialOrderNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs deleted file mode 100644 index f1c7d0c93..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationInquiry.cs +++ /dev/null @@ -1,112 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryAllocationInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="Available", EmitDefaultValue=false)] - public DecimalValue? Available { get; set; } - - [DataMember(Name="AvailableForIssue", EmitDefaultValue=false)] - public DecimalValue? AvailableForIssue { get; set; } - - [DataMember(Name="AvailableForShipping", EmitDefaultValue=false)] - public DecimalValue? AvailableForShipping { get; set; } - - [DataMember(Name="BaseUnit", EmitDefaultValue=false)] - public StringValue? BaseUnit { get; set; } - - [DataMember(Name="InTransit", EmitDefaultValue=false)] - public DecimalValue? InTransit { get; set; } - - [DataMember(Name="InTransitToSO", EmitDefaultValue=false)] - public DecimalValue? InTransitToSO { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="InventoryIssues", EmitDefaultValue=false)] - public DecimalValue? InventoryIssues { get; set; } - - [DataMember(Name="InventoryReceipts", EmitDefaultValue=false)] - public DecimalValue? InventoryReceipts { get; set; } - - [DataMember(Name="KitAssemblyDemand", EmitDefaultValue=false)] - public DecimalValue? KitAssemblyDemand { get; set; } - - [DataMember(Name="KitAssemblySupply", EmitDefaultValue=false)] - public DecimalValue? KitAssemblySupply { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="OnHand", EmitDefaultValue=false)] - public DecimalValue? OnHand { get; set; } - - [DataMember(Name="OnLocationNotAvailable", EmitDefaultValue=false)] - public DecimalValue? OnLocationNotAvailable { get; set; } - - [DataMember(Name="PurchaseForSO", EmitDefaultValue=false)] - public DecimalValue? PurchaseForSO { get; set; } - - [DataMember(Name="PurchaseForSOPrepared", EmitDefaultValue=false)] - public DecimalValue? PurchaseForSOPrepared { get; set; } - - [DataMember(Name="PurchaseOrders", EmitDefaultValue=false)] - public DecimalValue? PurchaseOrders { get; set; } - - [DataMember(Name="PurchasePrepared", EmitDefaultValue=false)] - public DecimalValue? PurchasePrepared { get; set; } - - [DataMember(Name="PurchaseReceipts", EmitDefaultValue=false)] - public DecimalValue? PurchaseReceipts { get; set; } - - [DataMember(Name="ReceiptsForSO", EmitDefaultValue=false)] - public DecimalValue? ReceiptsForSO { get; set; } - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - [DataMember(Name="SOAllocated", EmitDefaultValue=false)] - public DecimalValue? SOAllocated { get; set; } - - [DataMember(Name="SOBackOrdered", EmitDefaultValue=false)] - public DecimalValue? SOBackOrdered { get; set; } - - [DataMember(Name="SOBooked", EmitDefaultValue=false)] - public DecimalValue? SOBooked { get; set; } - - [DataMember(Name="SOPrepared", EmitDefaultValue=false)] - public DecimalValue? SOPrepared { get; set; } - - [DataMember(Name="SOShipped", EmitDefaultValue=false)] - public DecimalValue? SOShipped { get; set; } - - [DataMember(Name="SOToPurchase", EmitDefaultValue=false)] - public DecimalValue? SOToPurchase { get; set; } - - [DataMember(Name="TotalAddition", EmitDefaultValue=false)] - public DecimalValue? TotalAddition { get; set; } - - [DataMember(Name="TotalDeduction", EmitDefaultValue=false)] - public DecimalValue? TotalDeduction { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs deleted file mode 100644 index adf249124..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryAllocationRow.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryAllocationRow : Entity - { - - [DataMember(Name="AllocationDate", EmitDefaultValue=false)] - public DateTimeValue? AllocationDate { get; set; } - - [DataMember(Name="AllocationType", EmitDefaultValue=false)] - public StringValue? AllocationType { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="Expired", EmitDefaultValue=false)] - public BooleanValue? Expired { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Module", EmitDefaultValue=false)] - public StringValue? Module { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs deleted file mode 100644 index a41b1f267..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryFileUrls.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryFileUrls : Entity - { - - [DataMember(Name="FileType", EmitDefaultValue=false)] - public StringValue? FileType { get; set; } - - [DataMember(Name="FileURL", EmitDefaultValue=false)] - public StringValue? FileURL { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs deleted file mode 100644 index a9d5d29d7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssue.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryIssue : Entity, ITopLevelEntity - { - - [DataMember(Name="ControlAmount", EmitDefaultValue=false)] - public DecimalValue? ControlAmount { get; set; } - - [DataMember(Name="ControlQty", EmitDefaultValue=false)] - public DecimalValue? ControlQty { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalAmount", EmitDefaultValue=false)] - public DecimalValue? TotalAmount { get; set; } - - [DataMember(Name="TotalCost", EmitDefaultValue=false)] - public DecimalValue? TotalCost { get; set; } - - [DataMember(Name="TotalQty", EmitDefaultValue=false)] - public DecimalValue? TotalQty { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs deleted file mode 100644 index 64a1cdb11..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetail.cs +++ /dev/null @@ -1,87 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryIssueDetail : Entity - { - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CostLayerType", EmitDefaultValue=false)] - public StringValue? CostLayerType { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="ExtCost", EmitDefaultValue=false)] - public DecimalValue? ExtCost { get; set; } - - [DataMember(Name="ExtPrice", EmitDefaultValue=false)] - public DecimalValue? ExtPrice { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNumber", EmitDefaultValue=false)] - public IntValue? LineNumber { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] - public StringValue? SpecialOrderNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TranType", EmitDefaultValue=false)] - public StringValue? TranType { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs deleted file mode 100644 index 2b93ae19d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryIssueDetailAllocation.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryIssueDetailAllocation : Entity - { - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="SplitLineNumber", EmitDefaultValue=false)] - public IntValue? SplitLineNumber { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs deleted file mode 100644 index dcc7a8d6c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemCrossReference.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryItemCrossReference : Entity - { - - [DataMember(Name="AlternateID", EmitDefaultValue=false)] - public StringValue? AlternateID { get; set; } - - [DataMember(Name="AlternateType", EmitDefaultValue=false)] - public StringValue? AlternateType { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="VendorOrCustomer", EmitDefaultValue=false)] - public StringValue? VendorOrCustomer { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs deleted file mode 100644 index c4e848c6e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryItemUOMConversion.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryItemUOMConversion : Entity - { - - [DataMember(Name="ConversionFactor", EmitDefaultValue=false)] - public DecimalValue? ConversionFactor { get; set; } - - [DataMember(Name="FromUOM", EmitDefaultValue=false)] - public StringValue? FromUOM { get; set; } - - [DataMember(Name="MultiplyOrDivide", EmitDefaultValue=false)] - public StringValue? MultiplyOrDivide { get; set; } - - [DataMember(Name="ToUOM", EmitDefaultValue=false)] - public StringValue? ToUOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs deleted file mode 100644 index 82f7f7737..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailable.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryQuantityAvailable : Entity, ITopLevelEntity - { - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs deleted file mode 100644 index 137b61cff..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryQuantityAvailableDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryQuantityAvailableDetail : Entity - { - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="QtyAvailable", EmitDefaultValue=false)] - public DecimalValue? QtyAvailable { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs deleted file mode 100644 index 21789251f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceipt.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryReceipt : Entity, ITopLevelEntity - { - - [DataMember(Name="ControlCost", EmitDefaultValue=false)] - public DecimalValue? ControlCost { get; set; } - - [DataMember(Name="ControlQty", EmitDefaultValue=false)] - public DecimalValue? ControlQty { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalCost", EmitDefaultValue=false)] - public DecimalValue? TotalCost { get; set; } - - [DataMember(Name="TotalQty", EmitDefaultValue=false)] - public DecimalValue? TotalQty { get; set; } - - [DataMember(Name="TransferNbr", EmitDefaultValue=false)] - public StringValue? TransferNbr { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs deleted file mode 100644 index 9803bb8bc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetail.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryReceiptDetail : Entity - { - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CostLayerType", EmitDefaultValue=false)] - public StringValue? CostLayerType { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="ExtCost", EmitDefaultValue=false)] - public DecimalValue? ExtCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNumber", EmitDefaultValue=false)] - public IntValue? LineNumber { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="POReceiptNbr", EmitDefaultValue=false)] - public StringValue? POReceiptNbr { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] - public StringValue? SpecialOrderNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs deleted file mode 100644 index af928f6b6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventoryReceiptDetailAllocation.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventoryReceiptDetailAllocation : Entity - { - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="SplitLineNumber", EmitDefaultValue=false)] - public IntValue? SplitLineNumber { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs deleted file mode 100644 index fcd69b40d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryInquiry.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventorySummaryInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="ExpandByLotSerialNbr", EmitDefaultValue=false)] - public BooleanValue? ExpandByLotSerialNbr { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs deleted file mode 100644 index a60fb1361..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InventorySummaryRow.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InventorySummaryRow : Entity - { - - [DataMember(Name="BaseUOM", EmitDefaultValue=false)] - public StringValue? BaseUOM { get; set; } - - [DataMember(Name="EstimatedTotalCost", EmitDefaultValue=false)] - public DecimalValue? EstimatedTotalCost { get; set; } - - [DataMember(Name="EstimatedUnitCost", EmitDefaultValue=false)] - public DecimalValue? EstimatedUnitCost { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="QtyAvailable", EmitDefaultValue=false)] - public DecimalValue? QtyAvailable { get; set; } - - [DataMember(Name="QtyAvailableForShipment", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableForShipment { get; set; } - - [DataMember(Name="QtyNotAvailable", EmitDefaultValue=false)] - public DecimalValue? QtyNotAvailable { get; set; } - - [DataMember(Name="QtyOnHand", EmitDefaultValue=false)] - public DecimalValue? QtyOnHand { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs deleted file mode 100644 index f543b5ebf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Invoice.cs +++ /dev/null @@ -1,115 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Invoice : Entity, ITopLevelEntity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="ApplicationsCreditMemo", EmitDefaultValue=false)] - public List? ApplicationsCreditMemo { get; set; } - - [DataMember(Name="ApplicationsDefault", EmitDefaultValue=false)] - public List? ApplicationsDefault { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="BillingPrinted", EmitDefaultValue=false)] - public BooleanValue? BillingPrinted { get; set; } - - [DataMember(Name="BillToContact", EmitDefaultValue=false)] - public DocContact? BillToContact { get; set; } - - [DataMember(Name="BillToContactOverride", EmitDefaultValue=false)] - public BooleanValue? BillToContactOverride { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="DiscountDetails", EmitDefaultValue=false)] - public List? DiscountDetails { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LinkARAccount", EmitDefaultValue=false)] - public StringValue? LinkARAccount { get; set; } - - [DataMember(Name="LinkBranch", EmitDefaultValue=false)] - public StringValue? LinkBranch { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="ShipToContact", EmitDefaultValue=false)] - public DocContact? ShipToContact { get; set; } - - [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToContactOverride { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] - public BooleanValue? IsTaxValid { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs deleted file mode 100644 index 19c424ec6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsCreditMemo.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceApplicationsCreditMemo : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs deleted file mode 100644 index 1c55f3623..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceApplicationsDefault.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceApplicationsDefault : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] - public DecimalValue? CashDiscountTaken { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="PaymentDate", EmitDefaultValue=false)] - public DateTimeValue? PaymentDate { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs deleted file mode 100644 index 93d480373..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDetail.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] - public BooleanValue? CalculateDiscountsOnImport { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="ExtendedPrice", EmitDefaultValue=false)] - public DecimalValue? ExtendedPrice { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs deleted file mode 100644 index 36e6c21ce..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceDiscountDetail.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceDiscountDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountableAmount { get; set; } - - [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] - public DecimalValue? DiscountableQty { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="ExternalDiscountCode", EmitDefaultValue=false)] - public StringValue? ExternalDiscountCode { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="RetainedDiscount", EmitDefaultValue=false)] - public DecimalValue? RetainedDiscount { get; set; } - - [DataMember(Name="SequenceID", EmitDefaultValue=false)] - public StringValue? SequenceID { get; set; } - - [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] - public BooleanValue? SkipDiscount { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs deleted file mode 100644 index bcbd84987..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/InvoiceTaxDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class InvoiceTaxDetail : Entity - { - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs deleted file mode 100644 index 9caae6b82..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClass.cs +++ /dev/null @@ -1,76 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemClass : Entity, ITopLevelEntity - { - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="AvailabilityCalculationRule", EmitDefaultValue=false)] - public StringValue? AvailabilityCalculationRule { get; set; } - - [DataMember(Name="BaseUOM", EmitDefaultValue=false)] - public StringValue? BaseUOM { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="CountryOfOrigin", EmitDefaultValue=false)] - public StringValue? CountryOfOrigin { get; set; } - - [DataMember(Name="DefaultWarehouseID", EmitDefaultValue=false)] - public StringValue? DefaultWarehouseID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ItemType", EmitDefaultValue=false)] - public StringValue? ItemType { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LotSerialClass", EmitDefaultValue=false)] - public StringValue? LotSerialClass { get; set; } - - [DataMember(Name="PostingClass", EmitDefaultValue=false)] - public StringValue? PostingClass { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="PurchaseUOM", EmitDefaultValue=false)] - public StringValue? PurchaseUOM { get; set; } - - [DataMember(Name="SalesUOM", EmitDefaultValue=false)] - public StringValue? SalesUOM { get; set; } - - [DataMember(Name="StockItem", EmitDefaultValue=false)] - public BooleanValue? StockItem { get; set; } - - [DataMember(Name="TariffCode", EmitDefaultValue=false)] - public StringValue? TariffCode { get; set; } - - [DataMember(Name="TaxCategoryID", EmitDefaultValue=false)] - public StringValue? TaxCategoryID { get; set; } - - [DataMember(Name="ValuationMethod", EmitDefaultValue=false)] - public StringValue? ValuationMethod { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs deleted file mode 100644 index 1e174d859..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemClassAtrribute.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemClassAtrribute : Entity - { - - [DataMember(Name="AttributeID", EmitDefaultValue=false)] - public StringValue? AttributeID { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public ShortValue? SortOrder { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs deleted file mode 100644 index 80da21d27..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemPriceClassesDetails.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemPriceClassesDetails : Entity - { - - [DataMember(Name="PriceClassID", EmitDefaultValue=false)] - public StringValue? PriceClassID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs deleted file mode 100644 index 462b15b51..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategory.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemSalesCategory : Entity, ITopLevelEntity - { - - [DataMember(Name="CategoryID", EmitDefaultValue=false)] - public IntValue? CategoryID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Members", EmitDefaultValue=false)] - public List? Members { get; set; } - - [DataMember(Name="ParentCategoryID", EmitDefaultValue=false)] - public IntValue? ParentCategoryID { get; set; } - - [DataMember(Name="Path", EmitDefaultValue=false)] - public StringValue? Path { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public IntValue? SortOrder { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs deleted file mode 100644 index 16ebfa22c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemSalesCategoryMember.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemSalesCategoryMember : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="ItemClass", EmitDefaultValue=false)] - public StringValue? ItemClass { get; set; } - - [DataMember(Name="ItemStatus", EmitDefaultValue=false)] - public StringValue? ItemStatus { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs deleted file mode 100644 index a9a70ece7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemWarehouse.cs +++ /dev/null @@ -1,124 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemWarehouse : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="DefaultIssueFrom", EmitDefaultValue=false)] - public StringValue? DefaultIssueFrom { get; set; } - - [DataMember(Name="DefaultReceiptTo", EmitDefaultValue=false)] - public StringValue? DefaultReceiptTo { get; set; } - - [DataMember(Name="DefaultSubitem", EmitDefaultValue=false)] - public StringValue? DefaultSubitem { get; set; } - - [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] - public StringValue? InventoryAccount { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] - public StringValue? InventorySubaccount { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="MaxQty", EmitDefaultValue=false)] - public DecimalValue? MaxQty { get; set; } - - [DataMember(Name="MSRP", EmitDefaultValue=false)] - public DecimalValue? MSRP { get; set; } - - [DataMember(Name="OverrideInventoryAccountSubaccount", EmitDefaultValue=false)] - public BooleanValue? OverrideInventoryAccountSubaccount { get; set; } - - [DataMember(Name="OverridePreferredVendor", EmitDefaultValue=false)] - public BooleanValue? OverridePreferredVendor { get; set; } - - [DataMember(Name="OverridePrice", EmitDefaultValue=false)] - public BooleanValue? OverridePrice { get; set; } - - [DataMember(Name="OverrideReplenishmentSettings", EmitDefaultValue=false)] - public BooleanValue? OverrideReplenishmentSettings { get; set; } - - [DataMember(Name="OverrideServiceLevel", EmitDefaultValue=false)] - public BooleanValue? OverrideServiceLevel { get; set; } - - [DataMember(Name="OverrideStandardCost", EmitDefaultValue=false)] - public BooleanValue? OverrideStandardCost { get; set; } - - [DataMember(Name="OverrideProductManager", EmitDefaultValue=false)] - public BooleanValue? OverrideProductManager { get; set; } - - [DataMember(Name="OverrideMaxQty", EmitDefaultValue=false)] - public BooleanValue? OverrideMaxQty { get; set; } - - [DataMember(Name="OverrideReorderPoint", EmitDefaultValue=false)] - public BooleanValue? OverrideReorderPoint { get; set; } - - [DataMember(Name="OverrideSafetyStock", EmitDefaultValue=false)] - public BooleanValue? OverrideSafetyStock { get; set; } - - [DataMember(Name="PreferredLocation", EmitDefaultValue=false)] - public StringValue? PreferredLocation { get; set; } - - [DataMember(Name="PreferredVendor", EmitDefaultValue=false)] - public StringValue? PreferredVendor { get; set; } - - [DataMember(Name="ProductManager", EmitDefaultValue=false)] - public StringValue? ProductManager { get; set; } - - [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] - public StringValue? ProductWorkgroup { get; set; } - - [DataMember(Name="ReorderPoint", EmitDefaultValue=false)] - public DecimalValue? ReorderPoint { get; set; } - - [DataMember(Name="ReplenishmentClass", EmitDefaultValue=false)] - public StringValue? ReplenishmentClass { get; set; } - - [DataMember(Name="ReplenishmentMethod", EmitDefaultValue=false)] - public StringValue? ReplenishmentMethod { get; set; } - - [DataMember(Name="ReplenishmentSource", EmitDefaultValue=false)] - public StringValue? ReplenishmentSource { get; set; } - - [DataMember(Name="ReplenishmentWarehouse", EmitDefaultValue=false)] - public StringValue? ReplenishmentWarehouse { get; set; } - - [DataMember(Name="SafetyStock", EmitDefaultValue=false)] - public DecimalValue? SafetyStock { get; set; } - - [DataMember(Name="Seasonality", EmitDefaultValue=false)] - public StringValue? Seasonality { get; set; } - - [DataMember(Name="ServiceLevel", EmitDefaultValue=false)] - public DecimalValue? ServiceLevel { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs deleted file mode 100644 index f7b446297..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ItemsDetails.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ItemsDetails : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs deleted file mode 100644 index b98d68212..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransaction.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class JournalTransaction : Entity, ITopLevelEntity - { - - [DataMember(Name="BatchNbr", EmitDefaultValue=false)] - public StringValue? BatchNbr { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LedgerID", EmitDefaultValue=false)] - public StringValue? LedgerID { get; set; } - - [DataMember(Name="Module", EmitDefaultValue=false)] - public StringValue? Module { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TransactionDate", EmitDefaultValue=false)] - public DateTimeValue? TransactionDate { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs deleted file mode 100644 index a51489933..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/JournalTransactionDetail.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class JournalTransactionDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CreditAmount", EmitDefaultValue=false)] - public DecimalValue? CreditAmount { get; set; } - - [DataMember(Name="DebitAmount", EmitDefaultValue=false)] - public DecimalValue? DebitAmount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="IsNonPM", EmitDefaultValue=false)] - public BooleanValue? IsNonPM { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="NonBillable", EmitDefaultValue=false)] - public BooleanValue? NonBillable { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="ProjectTransactionID", EmitDefaultValue=false)] - public LongValue? ProjectTransactionID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="VendorOrCustomer", EmitDefaultValue=false)] - public StringValue? VendorOrCustomer { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs deleted file mode 100644 index 74e6d7a8d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssembly.cs +++ /dev/null @@ -1,79 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitAssembly : Entity, ITopLevelEntity - { - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="KitInventoryID", EmitDefaultValue=false)] - public StringValue? KitInventoryID { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="NonStockComponents", EmitDefaultValue=false)] - public List? NonStockComponents { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Revision", EmitDefaultValue=false)] - public StringValue? Revision { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="StockComponents", EmitDefaultValue=false)] - public List? StockComponents { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs deleted file mode 100644 index 3874e63a6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyAllocation.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitAssemblyAllocation : Entity - { - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] - public IntValue? SplitLineNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs deleted file mode 100644 index 4818a77c6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyNonStockComponent.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitAssemblyNonStockComponent : Entity - { - - [DataMember(Name="ComponentQty", EmitDefaultValue=false)] - public DecimalValue? ComponentQty { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="NonStockInventoryID", EmitDefaultValue=false)] - public StringValue? NonStockInventoryID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs deleted file mode 100644 index 1640b6786..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponent.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitAssemblyStockComponent : Entity - { - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="ComponentQty", EmitDefaultValue=false)] - public DecimalValue? ComponentQty { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="StockInventoryID", EmitDefaultValue=false)] - public StringValue? StockInventoryID { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs deleted file mode 100644 index 237155e74..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitAssemblyStockComponentAllocation.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitAssemblyStockComponentAllocation : Entity - { - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] - public IntValue? SplitLineNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs deleted file mode 100644 index e0964ff37..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitNonStockComponent.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitNonStockComponent : Entity - { - - [DataMember(Name="AllowComponentQtyVariance", EmitDefaultValue=false)] - public BooleanValue? AllowComponentQtyVariance { get; set; } - - [DataMember(Name="ComponentQty", EmitDefaultValue=false)] - public DecimalValue? ComponentQty { get; set; } - - [DataMember(Name="MaxComponentQty", EmitDefaultValue=false)] - public DecimalValue? MaxComponentQty { get; set; } - - [DataMember(Name="MinComponentQty", EmitDefaultValue=false)] - public DecimalValue? MinComponentQty { get; set; } - - [DataMember(Name="NonStockInventoryID", EmitDefaultValue=false)] - public StringValue? NonStockInventoryID { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs deleted file mode 100644 index 5e0d604fe..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitSpecification.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitSpecification : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="IsNonStock", EmitDefaultValue=false)] - public BooleanValue? IsNonStock { get; set; } - - [DataMember(Name="KitInventoryID", EmitDefaultValue=false)] - public StringValue? KitInventoryID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NonStockComponents", EmitDefaultValue=false)] - public List? NonStockComponents { get; set; } - - [DataMember(Name="RevisionID", EmitDefaultValue=false)] - public StringValue? RevisionID { get; set; } - - [DataMember(Name="StockComponents", EmitDefaultValue=false)] - public List? StockComponents { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs deleted file mode 100644 index 74b3fb306..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/KitStockComponent.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class KitStockComponent : Entity - { - - [DataMember(Name="AllowComponentQtyVariance", EmitDefaultValue=false)] - public BooleanValue? AllowComponentQtyVariance { get; set; } - - [DataMember(Name="ComponentQty", EmitDefaultValue=false)] - public DecimalValue? ComponentQty { get; set; } - - [DataMember(Name="MaxComponentQty", EmitDefaultValue=false)] - public DecimalValue? MaxComponentQty { get; set; } - - [DataMember(Name="MinComponentQty", EmitDefaultValue=false)] - public DecimalValue? MinComponentQty { get; set; } - - [DataMember(Name="StockInventoryID", EmitDefaultValue=false)] - public StringValue? StockInventoryID { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs deleted file mode 100644 index 548bb2b69..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborCostRate.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LaborCostRate : Entity, ITopLevelEntity - { - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="Employee", EmitDefaultValue=false)] - public StringValue? Employee { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="LaborRateType", EmitDefaultValue=false)] - public StringValue? LaborRateType { get; set; } - - [DataMember(Name="UnionLocal", EmitDefaultValue=false)] - public StringValue? UnionLocal { get; set; } - - [DataMember(Name="Results", EmitDefaultValue=false)] - public List? Results { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs deleted file mode 100644 index 86c7af925..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LaborRate.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LaborRate : Entity - { - - [DataMember(Name="AnnualRate", EmitDefaultValue=false)] - public DecimalValue? AnnualRate { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="HourlyRate", EmitDefaultValue=false)] - public DecimalValue? HourlyRate { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LaborRateType", EmitDefaultValue=false)] - public StringValue? LaborRateType { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="RegularHoursPerWeek", EmitDefaultValue=false)] - public DecimalValue? RegularHoursPerWeek { get; set; } - - [DataMember(Name="TypeOfEmployment", EmitDefaultValue=false)] - public StringValue? TypeOfEmployment { get; set; } - - [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] - public StringValue? UnionLocalID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs deleted file mode 100644 index 0bfbe8e5e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Lead.cs +++ /dev/null @@ -1,184 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Lead : Entity, ITopLevelEntity - { - - [DataMember(Name="Activities", EmitDefaultValue=false)] - public List? Activities { get; set; } - - [DataMember(Name="Address", EmitDefaultValue=false)] - public Address? Address { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="Campaigns", EmitDefaultValue=false)] - public List? Campaigns { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="ContactMethod", EmitDefaultValue=false)] - public StringValue? ContactMethod { get; set; } - - [DataMember(Name="DoNotCall", EmitDefaultValue=false)] - public BooleanValue? DoNotCall { get; set; } - - [DataMember(Name="DoNotEmail", EmitDefaultValue=false)] - public BooleanValue? DoNotEmail { get; set; } - - [DataMember(Name="DoNotFax", EmitDefaultValue=false)] - public BooleanValue? DoNotFax { get; set; } - - [DataMember(Name="DoNotMail", EmitDefaultValue=false)] - public BooleanValue? DoNotMail { get; set; } - - [DataMember(Name="Duplicate", EmitDefaultValue=false)] - public StringValue? Duplicate { get; set; } - - [DataMember(Name="DuplicateFound", EmitDefaultValue=false)] - public BooleanValue? DuplicateFound { get; set; } - - [DataMember(Name="Duplicates", EmitDefaultValue=false)] - public List? Duplicates { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Fax", EmitDefaultValue=false)] - public StringValue? Fax { get; set; } - - [DataMember(Name="FaxType", EmitDefaultValue=false)] - public StringValue? FaxType { get; set; } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - - [DataMember(Name="LanguageOrLocale", EmitDefaultValue=false)] - public StringValue? LanguageOrLocale { get; set; } - - [DataMember(Name="LastIncomingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastIncomingActivity { get; set; } - - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - - [DataMember(Name="LastOutgoingActivity", EmitDefaultValue=false)] - public DateTimeValue? LastOutgoingActivity { get; set; } - - [DataMember(Name="LeadClass", EmitDefaultValue=false)] - public StringValue? LeadClass { get; set; } - - [DataMember(Name="LeadDisplayName", EmitDefaultValue=false)] - public StringValue? LeadDisplayName { get; set; } - - [DataMember(Name="LeadID", EmitDefaultValue=false)] - public IntValue? LeadID { get; set; } - - [DataMember(Name="MarketingLists", EmitDefaultValue=false)] - public List? MarketingLists { get; set; } - - [DataMember(Name="NoMarketing", EmitDefaultValue=false)] - public BooleanValue? NoMarketing { get; set; } - - [DataMember(Name="NoMassMail", EmitDefaultValue=false)] - public BooleanValue? NoMassMail { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] - public StringValue? OwnerEmployeeName { get; set; } - - [DataMember(Name="ParentAccount", EmitDefaultValue=false)] - public StringValue? ParentAccount { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - - [DataMember(Name="Phone3", EmitDefaultValue=false)] - public StringValue? Phone3 { get; set; } - - [DataMember(Name="Phone3Type", EmitDefaultValue=false)] - public StringValue? Phone3Type { get; set; } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - - [DataMember(Name="Relations", EmitDefaultValue=false)] - public List? Relations { get; set; } - - [DataMember(Name="Source", EmitDefaultValue=false)] - public StringValue? Source { get; set; } - - [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] - public StringValue? SourceCampaign { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Title", EmitDefaultValue=false)] - public StringValue? Title { get; set; } - - [DataMember(Name="WebSite", EmitDefaultValue=false)] - public StringValue? WebSite { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] - public StringValue? WorkgroupDescription { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="RefContactID", EmitDefaultValue=false)] - public IntValue? RefContactID { get; set; } - - [DataMember(Name="ConvertedBy", EmitDefaultValue=false)] - public StringValue? ConvertedBy { get; set; } - - [DataMember(Name="QualificationDate", EmitDefaultValue=false)] - public DateTimeValue? QualificationDate { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs deleted file mode 100644 index 51381513e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Ledger.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Ledger : Entity, ITopLevelEntity - { - - [DataMember(Name="Branches", EmitDefaultValue=false)] - public List? Branches { get; set; } - - [DataMember(Name="Companies", EmitDefaultValue=false)] - public List? Companies { get; set; } - - [DataMember(Name="ConsolidationSource", EmitDefaultValue=false)] - public BooleanValue? ConsolidationSource { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LedgerID", EmitDefaultValue=false)] - public StringValue? LedgerID { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs deleted file mode 100644 index 9aa22169d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerBranches.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LedgerBranches : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="BranchName", EmitDefaultValue=false)] - public StringValue? BranchName { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs deleted file mode 100644 index 56c547ef3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LedgerCompanies.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LedgerCompanies : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Company", EmitDefaultValue=false)] - public StringValue? Company { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="CompanyType", EmitDefaultValue=false)] - public StringValue? CompanyType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs deleted file mode 100644 index f28802a16..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClass.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LotSerialClass : Entity, ITopLevelEntity - { - - [DataMember(Name="AssignmentMethod", EmitDefaultValue=false)] - public StringValue? AssignmentMethod { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="IssueMethod", EmitDefaultValue=false)] - public StringValue? IssueMethod { get; set; } - - [DataMember(Name="Segments", EmitDefaultValue=false)] - public List? Segments { get; set; } - - [DataMember(Name="TrackExpirationDate", EmitDefaultValue=false)] - public BooleanValue? TrackExpirationDate { get; set; } - - [DataMember(Name="TrackingMethod", EmitDefaultValue=false)] - public StringValue? TrackingMethod { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs deleted file mode 100644 index 70e94e0e5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/LotSerialClassSegment.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class LotSerialClassSegment : Entity - { - - [DataMember(Name="SegmentNbr", EmitDefaultValue=false)] - public ShortValue? SegmentNbr { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs deleted file mode 100644 index 2fcf6c41e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/MarketingListDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class MarketingListDetail : Entity - { - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="DynamicList", EmitDefaultValue=false)] - public BooleanValue? DynamicList { get; set; } - - [DataMember(Name="Format", EmitDefaultValue=false)] - public StringValue? Format { get; set; } - - [DataMember(Name="ListName", EmitDefaultValue=false)] - public StringValue? ListName { get; set; } - - [DataMember(Name="MarketingListID", EmitDefaultValue=false)] - public IntValue? MarketingListID { get; set; } - - [DataMember(Name="Subscribed", EmitDefaultValue=false)] - public BooleanValue? Subscribed { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs deleted file mode 100644 index aa80319aa..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/MatrixItems.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class MatrixItems : Entity - { - - [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] - public DecimalValue? DefaultPrice { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="MSRP", EmitDefaultValue=false)] - public DecimalValue? MSRP { get; set; } - - [DataMember(Name="ItemStatus", EmitDefaultValue=false)] - public StringValue? ItemStatus { get; set; } - - [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] - public BooleanValue? ExportToExternal { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs deleted file mode 100644 index 1bf43dd0c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItem.cs +++ /dev/null @@ -1,202 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class NonStockItem : Entity, ITopLevelEntity - { - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BaseUnit", EmitDefaultValue=false)] - public StringValue? BaseUnit { get; set; } - - [DataMember(Name="CrossReferences", EmitDefaultValue=false)] - public List? CrossReferences { get; set; } - - [DataMember(Name="CurrentCost", EmitDefaultValue=false)] - public DecimalValue? CurrentCost { get; set; } - - [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] - public DecimalValue? DefaultPrice { get; set; } - - [DataMember(Name="DeferralAccount", EmitDefaultValue=false)] - public StringValue? DeferralAccount { get; set; } - - [DataMember(Name="DeferralSubaccount", EmitDefaultValue=false)] - public StringValue? DeferralSubaccount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccount { get; set; } - - [DataMember(Name="ExpenseAccrualAccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccrualAccount { get; set; } - - [DataMember(Name="ExpenseAccrualSubaccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccrualSubaccount { get; set; } - - [DataMember(Name="ExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? ExpenseSubaccount { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="IsKit", EmitDefaultValue=false)] - public BooleanValue? IsKit { get; set; } - - [DataMember(Name="ItemClass", EmitDefaultValue=false)] - public StringValue? ItemClass { get; set; } - - [DataMember(Name="ItemStatus", EmitDefaultValue=false)] - public StringValue? ItemStatus { get; set; } - - [DataMember(Name="ItemType", EmitDefaultValue=false)] - public StringValue? ItemType { get; set; } - - [DataMember(Name="LastCost", EmitDefaultValue=false)] - public DecimalValue? LastCost { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PendingCost", EmitDefaultValue=false)] - public DecimalValue? PendingCost { get; set; } - - [DataMember(Name="PendingCostDate", EmitDefaultValue=false)] - public DateTimeValue? PendingCostDate { get; set; } - - [DataMember(Name="POAccrualAccount", EmitDefaultValue=false)] - public StringValue? POAccrualAccount { get; set; } - - [DataMember(Name="POAccrualSubaccount", EmitDefaultValue=false)] - public StringValue? POAccrualSubaccount { get; set; } - - [DataMember(Name="PostingClass", EmitDefaultValue=false)] - public StringValue? PostingClass { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="PurchasePriceVarianceAccount", EmitDefaultValue=false)] - public StringValue? PurchasePriceVarianceAccount { get; set; } - - [DataMember(Name="PurchasePriceVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? PurchasePriceVarianceSubaccount { get; set; } - - [DataMember(Name="PurchaseUnit", EmitDefaultValue=false)] - public StringValue? PurchaseUnit { get; set; } - - [DataMember(Name="ReasonCodeSubaccount", EmitDefaultValue=false)] - public StringValue? ReasonCodeSubaccount { get; set; } - - [DataMember(Name="RequireReceipt", EmitDefaultValue=false)] - public BooleanValue? RequireReceipt { get; set; } - - [DataMember(Name="RequireShipment", EmitDefaultValue=false)] - public BooleanValue? RequireShipment { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesCategories", EmitDefaultValue=false)] - public List? SalesCategories { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="SalesUnit", EmitDefaultValue=false)] - public StringValue? SalesUnit { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="VendorDetails", EmitDefaultValue=false)] - public List? VendorDetails { get; set; } - - [DataMember(Name="Volume", EmitDefaultValue=false)] - public DecimalValue? Volume { get; set; } - - [DataMember(Name="VolumeUOM", EmitDefaultValue=false)] - public StringValue? VolumeUOM { get; set; } - - [DataMember(Name="Weight", EmitDefaultValue=false)] - public DecimalValue? Weight { get; set; } - - [DataMember(Name="WeightUOM", EmitDefaultValue=false)] - public StringValue? WeightUOM { get; set; } - - [DataMember(Name="CurySpecificMSRP", EmitDefaultValue=false)] - public DecimalValue? CurySpecificMSRP { get; set; } - - [DataMember(Name="CurySpecificPrice", EmitDefaultValue=false)] - public DecimalValue? CurySpecificPrice { get; set; } - - [DataMember(Name="Availability", EmitDefaultValue=false)] - public StringValue? Availability { get; set; } - - [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] - public BooleanValue? ExportToExternal { get; set; } - - [DataMember(Name="Categories", EmitDefaultValue=false)] - public List? Categories { get; set; } - - [DataMember(Name="Content", EmitDefaultValue=false)] - public StringValue? Content { get; set; } - - [DataMember(Name="CurrentStdCost", EmitDefaultValue=false)] - public DecimalValue? CurrentStdCost { get; set; } - - [DataMember(Name="CustomURL", EmitDefaultValue=false)] - public StringValue? CustomURL { get; set; } - - [DataMember(Name="DimensionWeight", EmitDefaultValue=false)] - public DecimalValue? DimensionWeight { get; set; } - - [DataMember(Name="FileUrls", EmitDefaultValue=false)] - public List? FileUrls { get; set; } - - [DataMember(Name="MetaDescription", EmitDefaultValue=false)] - public StringValue? MetaDescription { get; set; } - - [DataMember(Name="MetaKeywords", EmitDefaultValue=false)] - public StringValue? MetaKeywords { get; set; } - - [DataMember(Name="MSRP", EmitDefaultValue=false)] - public DecimalValue? MSRP { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="PageTitle", EmitDefaultValue=false)] - public StringValue? PageTitle { get; set; } - - [DataMember(Name="SearchKeywords", EmitDefaultValue=false)] - public StringValue? SearchKeywords { get; set; } - - [DataMember(Name="TemplateItemID", EmitDefaultValue=false)] - public StringValue? TemplateItemID { get; set; } - - [DataMember(Name="Visibility", EmitDefaultValue=false)] - public StringValue? Visibility { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs deleted file mode 100644 index e67daf5bc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemSalesCategory.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class NonStockItemSalesCategory : Entity - { - - [DataMember(Name="CategoryID", EmitDefaultValue=false)] - public IntValue? CategoryID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs deleted file mode 100644 index ada11f7d6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/NonStockItemVendorDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class NonStockItemVendorDetail : Entity - { - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorName", EmitDefaultValue=false)] - public StringValue? VendorName { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs deleted file mode 100644 index 8b5e34ddf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Opportunity.cs +++ /dev/null @@ -1,148 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Opportunity : Entity, ITopLevelEntity - { - - [DataMember(Name="Activities", EmitDefaultValue=false)] - public List? Activities { get; set; } - - [DataMember(Name="Address", EmitDefaultValue=false)] - public Address? Address { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="BusinessAccount", EmitDefaultValue=false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="ContactDisplayName", EmitDefaultValue=false)] - public StringValue? ContactDisplayName { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="ContactInformation", EmitDefaultValue=false)] - public OpportunityContact? ContactInformation { get; set; } - - [DataMember(Name="ConvertedLeadDisplayName", EmitDefaultValue=false)] - public StringValue? ConvertedLeadDisplayName { get; set; } - - [DataMember(Name="ConvertedLeadID", EmitDefaultValue=false)] - public IntValue? ConvertedLeadID { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyViewState", EmitDefaultValue=false)] - public BooleanValue? CurrencyViewState { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public StringValue? Details { get; set; } - - [DataMember(Name="Discount", EmitDefaultValue=false)] - public DecimalValue? Discount { get; set; } - - [DataMember(Name="Discounts", EmitDefaultValue=false)] - public List? Discounts { get; set; } - - [DataMember(Name="Estimation", EmitDefaultValue=false)] - public DateTimeValue? Estimation { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="ManualAmount", EmitDefaultValue=false)] - public BooleanValue? ManualAmount { get; set; } - - [DataMember(Name="OpportunityID", EmitDefaultValue=false)] - public StringValue? OpportunityID { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="OwnerEmployeeName", EmitDefaultValue=false)] - public StringValue? OwnerEmployeeName { get; set; } - - [DataMember(Name="ParentAccount", EmitDefaultValue=false)] - public StringValue? ParentAccount { get; set; } - - [DataMember(Name="Products", EmitDefaultValue=false)] - public List? Products { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="Reason", EmitDefaultValue=false)] - public StringValue? Reason { get; set; } - - [DataMember(Name="Relations", EmitDefaultValue=false)] - public List? Relations { get; set; } - - [DataMember(Name="Source", EmitDefaultValue=false)] - public StringValue? Source { get; set; } - - [DataMember(Name="SourceCampaign", EmitDefaultValue=false)] - public StringValue? SourceCampaign { get; set; } - - [DataMember(Name="Stage", EmitDefaultValue=false)] - public StringValue? Stage { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Total", EmitDefaultValue=false)] - public DecimalValue? Total { get; set; } - - [DataMember(Name="WeightTotal", EmitDefaultValue=false)] - public DecimalValue? WeightTotal { get; set; } - - [DataMember(Name="WorkgroupDescription", EmitDefaultValue=false)] - public StringValue? WorkgroupDescription { get; set; } - - [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] - public StringValue? WorkgroupID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs deleted file mode 100644 index e7a6bb49c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityContact.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpportunityContact : Entity - { - - [DataMember(Name="Attention", EmitDefaultValue=false)] - public StringValue? Attention { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Fax", EmitDefaultValue=false)] - public StringValue? Fax { get; set; } - - [DataMember(Name="FaxType", EmitDefaultValue=false)] - public StringValue? FaxType { get; set; } - - [DataMember(Name="FirstName", EmitDefaultValue=false)] - public StringValue? FirstName { get; set; } - - [DataMember(Name="LastName", EmitDefaultValue=false)] - public StringValue? LastName { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - - [DataMember(Name="Phone2", EmitDefaultValue=false)] - public StringValue? Phone2 { get; set; } - - [DataMember(Name="Phone2Type", EmitDefaultValue=false)] - public StringValue? Phone2Type { get; set; } - - [DataMember(Name="Phone3", EmitDefaultValue=false)] - public StringValue? Phone3 { get; set; } - - [DataMember(Name="Phone3Type", EmitDefaultValue=false)] - public StringValue? Phone3Type { get; set; } - - [DataMember(Name="Position", EmitDefaultValue=false)] - public StringValue? Position { get; set; } - - [DataMember(Name="Title", EmitDefaultValue=false)] - public StringValue? Title { get; set; } - - [DataMember(Name="WebSite", EmitDefaultValue=false)] - public StringValue? WebSite { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs deleted file mode 100644 index a9951e600..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDetail.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpportunityDetail : Entity - { - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="DisplayName", EmitDefaultValue=false)] - public StringValue? DisplayName { get; set; } - - [DataMember(Name="Estimation", EmitDefaultValue=false)] - public DateTimeValue? Estimation { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Probability", EmitDefaultValue=false)] - public IntValue? Probability { get; set; } - - [DataMember(Name="Stage", EmitDefaultValue=false)] - public StringValue? Stage { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - [DataMember(Name="Total", EmitDefaultValue=false)] - public DecimalValue? Total { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs deleted file mode 100644 index 0c22a2afc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityDiscount.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpportunityDiscount : Entity - { - - [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountableAmount { get; set; } - - [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] - public DecimalValue? DiscountableQty { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="FreeItem", EmitDefaultValue=false)] - public StringValue? FreeItem { get; set; } - - [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] - public DecimalValue? FreeItemQty { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="SequenceID", EmitDefaultValue=false)] - public StringValue? SequenceID { get; set; } - - [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] - public BooleanValue? SkipDiscount { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs deleted file mode 100644 index db4179220..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityProduct.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpportunityProduct : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Discount", EmitDefaultValue=false)] - public DecimalValue? Discount { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountSequence", EmitDefaultValue=false)] - public StringValue? DiscountSequence { get; set; } - - [DataMember(Name="ExternalPrice", EmitDefaultValue=false)] - public DecimalValue? ExternalPrice { get; set; } - - [DataMember(Name="FreeItem", EmitDefaultValue=false)] - public BooleanValue? FreeItem { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="OpportunityProductID", EmitDefaultValue=false)] - public IntValue? OpportunityProductID { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - [DataMember(Name="SkipLineDiscounts", EmitDefaultValue=false)] - public BooleanValue? SkipLineDiscounts { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs deleted file mode 100644 index 44f63e27b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OpportunityTaxDetail.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OpportunityTaxDetail : Entity - { - - [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeInVATExemptTotal { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs deleted file mode 100644 index a6c4ace5b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/OrderRisks.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class OrderRisks : Entity - { - - [DataMember(Name="Message", EmitDefaultValue=false)] - public StringValue? Message { get; set; } - - [DataMember(Name="Recommendation", EmitDefaultValue=false)] - public StringValue? Recommendation { get; set; } - - [DataMember(Name="Score", EmitDefaultValue=false)] - public DecimalValue? Score { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs deleted file mode 100644 index 344a08cc4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBank.cs +++ /dev/null @@ -1,82 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PTOBank : Entity, ITopLevelEntity - { - - [DataMember(Name="AccrualLimit", EmitDefaultValue=false)] - public DecimalValue? AccrualLimit { get; set; } - - [DataMember(Name="AccrualMethod", EmitDefaultValue=false)] - public StringValue? AccrualMethod { get; set; } - - [DataMember(Name="AccrueonCertifiedJobOnly", EmitDefaultValue=false)] - public BooleanValue? AccrueonCertifiedJobOnly { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AllowNegativeBalance", EmitDefaultValue=false)] - public BooleanValue? AllowNegativeBalance { get; set; } - - [DataMember(Name="BankStartDate", EmitDefaultValue=false)] - public DateTimeValue? BankStartDate { get; set; } - - [DataMember(Name="CanOnlyDisbursefromCarryover", EmitDefaultValue=false)] - public BooleanValue? CanOnlyDisbursefromCarryover { get; set; } - - [DataMember(Name="CarryoverAmount", EmitDefaultValue=false)] - public DecimalValue? CarryoverAmount { get; set; } - - [DataMember(Name="CarryoverType", EmitDefaultValue=false)] - public StringValue? CarryoverType { get; set; } - - [DataMember(Name="CreateFinTransactions", EmitDefaultValue=false)] - public BooleanValue? CreateFinTransactions { get; set; } - - [DataMember(Name="DefaultAccrualPercent", EmitDefaultValue=false)] - public DecimalValue? DefaultAccrualPercent { get; set; } - - [DataMember(Name="DefaultDisbursingType", EmitDefaultValue=false)] - public StringValue? DefaultDisbursingType { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DisbursingEarningCode", EmitDefaultValue=false)] - public StringValue? DisbursingEarningCode { get; set; } - - [DataMember(Name="FrontLoadingAmount", EmitDefaultValue=false)] - public DecimalValue? FrontLoadingAmount { get; set; } - - [DataMember(Name="GLAccounts", EmitDefaultValue=false)] - public PTOBankGLAccounts? GLAccounts { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OnSettlement", EmitDefaultValue=false)] - public StringValue? OnSettlement { get; set; } - - [DataMember(Name="PayCarryoverafterMonths", EmitDefaultValue=false)] - public IntValue? PayCarryoverafterMonths { get; set; } - - [DataMember(Name="PTOBankID", EmitDefaultValue=false)] - public StringValue? PTOBankID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs deleted file mode 100644 index 94b1cf6b4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PTOBankGLAccounts.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PTOBankGLAccounts : Entity - { - - [DataMember(Name="AssetAccount", EmitDefaultValue=false)] - public StringValue? AssetAccount { get; set; } - - [DataMember(Name="AssetSub", EmitDefaultValue=false)] - public StringValue? AssetSub { get; set; } - - [DataMember(Name="ExpenseAccount", EmitDefaultValue=false)] - public StringValue? ExpenseAccount { get; set; } - - [DataMember(Name="ExpenseSub", EmitDefaultValue=false)] - public StringValue? ExpenseSub { get; set; } - - [DataMember(Name="LiabilityAccount", EmitDefaultValue=false)] - public StringValue? LiabilityAccount { get; set; } - - [DataMember(Name="LiabilitySub", EmitDefaultValue=false)] - public StringValue? LiabilitySub { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs deleted file mode 100644 index 5779cbfa2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayGroup.cs +++ /dev/null @@ -1,91 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PayGroup : Entity, ITopLevelEntity - { - - [DataMember(Name="BenefitExpenseAccount", EmitDefaultValue=false)] - public StringValue? BenefitExpenseAccount { get; set; } - - [DataMember(Name="BenefitExpenseSub", EmitDefaultValue=false)] - public StringValue? BenefitExpenseSub { get; set; } - - [DataMember(Name="BenefitLiabilityAccount", EmitDefaultValue=false)] - public StringValue? BenefitLiabilityAccount { get; set; } - - [DataMember(Name="BenefitLiabilitySub", EmitDefaultValue=false)] - public StringValue? BenefitLiabilitySub { get; set; } - - [DataMember(Name="DeductionLiabilityAccount", EmitDefaultValue=false)] - public StringValue? DeductionLiabilityAccount { get; set; } - - [DataMember(Name="DeductionLiabilitySub", EmitDefaultValue=false)] - public StringValue? DeductionLiabilitySub { get; set; } - - [DataMember(Name="EarningsAccount", EmitDefaultValue=false)] - public StringValue? EarningsAccount { get; set; } - - [DataMember(Name="EarningsSub", EmitDefaultValue=false)] - public StringValue? EarningsSub { get; set; } - - [DataMember(Name="IsDefault", EmitDefaultValue=false)] - public BooleanValue? IsDefault { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PayGroupID", EmitDefaultValue=false)] - public StringValue? PayGroupID { get; set; } - - [DataMember(Name="PayGroupName", EmitDefaultValue=false)] - public StringValue? PayGroupName { get; set; } - - [DataMember(Name="PTOAssetAccount", EmitDefaultValue=false)] - public StringValue? PTOAssetAccount { get; set; } - - [DataMember(Name="PTOAssetSub", EmitDefaultValue=false)] - public StringValue? PTOAssetSub { get; set; } - - [DataMember(Name="PTOExpenseAccount", EmitDefaultValue=false)] - public StringValue? PTOExpenseAccount { get; set; } - - [DataMember(Name="PTOExpenseSub", EmitDefaultValue=false)] - public StringValue? PTOExpenseSub { get; set; } - - [DataMember(Name="PTOLiabilityAccount", EmitDefaultValue=false)] - public StringValue? PTOLiabilityAccount { get; set; } - - [DataMember(Name="PTOLiabilitySub", EmitDefaultValue=false)] - public StringValue? PTOLiabilitySub { get; set; } - - [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] - public StringValue? TaxExpenseAccount { get; set; } - - [DataMember(Name="TaxExpenseSub", EmitDefaultValue=false)] - public StringValue? TaxExpenseSub { get; set; } - - [DataMember(Name="TaxLiabilityAccount", EmitDefaultValue=false)] - public StringValue? TaxLiabilityAccount { get; set; } - - [DataMember(Name="TaxLiabilitySub", EmitDefaultValue=false)] - public StringValue? TaxLiabilitySub { get; set; } - - [DataMember(Name="UserRole", EmitDefaultValue=false)] - public StringValue? UserRole { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs deleted file mode 100644 index baf40f7e9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayPeriod.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PayPeriod : Entity, ITopLevelEntity - { - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NumberofPeriods", EmitDefaultValue=false)] - public ShortValue? NumberofPeriods { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - [DataMember(Name="PayGroup", EmitDefaultValue=false)] - public StringValue? PayGroup { get; set; } - - [DataMember(Name="PaymentPeriods", EmitDefaultValue=false)] - public List? PaymentPeriods { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Year", EmitDefaultValue=false)] - public StringValue? Year { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs deleted file mode 100644 index 6d23e24f4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Payment.cs +++ /dev/null @@ -1,121 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Payment : Entity, ITopLevelEntity - { - - [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] - public DateTimeValue? ApplicationDate { get; set; } - - [DataMember(Name="ApplicationHistory", EmitDefaultValue=false)] - public List? ApplicationHistory { get; set; } - - [DataMember(Name="AppliedToDocuments", EmitDefaultValue=false)] - public DecimalValue? AppliedToDocuments { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CardAccountNbr", EmitDefaultValue=false)] - public IntValue? CardAccountNbr { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="Charges", EmitDefaultValue=false)] - public List? Charges { get; set; } - - [DataMember(Name="CreditCardProcessingInfo", EmitDefaultValue=false)] - public List? CreditCardProcessingInfo { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocumentsToApply", EmitDefaultValue=false)] - public List? DocumentsToApply { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="IsCCPayment", EmitDefaultValue=false)] - public BooleanValue? IsCCPayment { get; set; } - - [DataMember(Name="OrdersToApply", EmitDefaultValue=false)] - public List? OrdersToApply { get; set; } - - [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] - public DecimalValue? PaymentAmount { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ProcessingCenterID", EmitDefaultValue=false)] - public StringValue? ProcessingCenterID { get; set; } - - [DataMember(Name="SaveCard", EmitDefaultValue=false)] - public BooleanValue? SaveCard { get; set; } - - [DataMember(Name="CreditCardTransactionInfo", EmitDefaultValue=false)] - public List? CreditCardTransactionInfo { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - [DataMember(Name="OrigTransaction", EmitDefaultValue=false)] - public StringValue? OrigTransaction { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CustomerLocationID", EmitDefaultValue=false)] - public StringValue? CustomerLocationID { get; set; } - - [DataMember(Name="IsNewCard", EmitDefaultValue=false)] - public BooleanValue? IsNewCard { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="AvailableBalance", EmitDefaultValue=false)] - public DecimalValue? AvailableBalance { get; set; } - - [DataMember(Name="AppliedToOrders", EmitDefaultValue=false)] - public DecimalValue? AppliedToOrders { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs deleted file mode 100644 index 1b4dc9d1b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentApplicationHistoryDetail.cs +++ /dev/null @@ -1,90 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentApplicationHistoryDetail : Entity - { - - [DataMember(Name="AdjustedDocType", EmitDefaultValue=false)] - public StringValue? AdjustedDocType { get; set; } - - [DataMember(Name="AdjustedRefNbr", EmitDefaultValue=false)] - public StringValue? AdjustedRefNbr { get; set; } - - [DataMember(Name="AdjustingDocType", EmitDefaultValue=false)] - public StringValue? AdjustingDocType { get; set; } - - [DataMember(Name="AdjustingRefNbr", EmitDefaultValue=false)] - public StringValue? AdjustingRefNbr { get; set; } - - [DataMember(Name="AdjustmentNbr", EmitDefaultValue=false)] - public IntValue? AdjustmentNbr { get; set; } - - [DataMember(Name="AdjustsVAT", EmitDefaultValue=false)] - public BooleanValue? AdjustsVAT { get; set; } - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="ApplicationPeriod", EmitDefaultValue=false)] - public StringValue? ApplicationPeriod { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="BalanceWriteOff", EmitDefaultValue=false)] - public DecimalValue? BalanceWriteOff { get; set; } - - [DataMember(Name="BatchNbr", EmitDefaultValue=false)] - public StringValue? BatchNbr { get; set; } - - [DataMember(Name="CashDiscountBalance", EmitDefaultValue=false)] - public DecimalValue? CashDiscountBalance { get; set; } - - [DataMember(Name="CashDiscountDate", EmitDefaultValue=false)] - public DateTimeValue? CashDiscountDate { get; set; } - - [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] - public DecimalValue? CashDiscountTaken { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DisplayDocType", EmitDefaultValue=false)] - public StringValue? DisplayDocType { get; set; } - - [DataMember(Name="DisplayRefNbr", EmitDefaultValue=false)] - public StringValue? DisplayRefNbr { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="VATCreditMemo", EmitDefaultValue=false)] - public StringValue? VATCreditMemo { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs deleted file mode 100644 index 4be798df3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentCharge.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentCharge : Entity - { - - [DataMember(Name="AccountID", EmitDefaultValue=false)] - public StringValue? AccountID { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="EntryTypeID", EmitDefaultValue=false)] - public StringValue? EntryTypeID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="SubID", EmitDefaultValue=false)] - public StringValue? SubID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs deleted file mode 100644 index 16bc72c23..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentDetail : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="BalanceWriteOff", EmitDefaultValue=false)] - public DecimalValue? BalanceWriteOff { get; set; } - - [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] - public DecimalValue? CashDiscountTaken { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocLineNbr", EmitDefaultValue=false)] - public IntValue? DocLineNbr { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="WriteOffReasonCode", EmitDefaultValue=false)] - public StringValue? WriteOffReasonCode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs deleted file mode 100644 index ac8e4ee21..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethod.cs +++ /dev/null @@ -1,67 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentMethod : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AllowedCashAccounts", EmitDefaultValue=false)] - public List? AllowedCashAccounts { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="IntegratedProcessing", EmitDefaultValue=false)] - public BooleanValue? IntegratedProcessing { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="MeansOfPayment", EmitDefaultValue=false)] - public StringValue? MeansOfPayment { get; set; } - - [DataMember(Name="PaymentMethodID", EmitDefaultValue=false)] - public StringValue? PaymentMethodID { get; set; } - - [DataMember(Name="ProcessingCenters", EmitDefaultValue=false)] - public List? ProcessingCenters { get; set; } - - [DataMember(Name="RequireRemittanceInformationforCashAccount", EmitDefaultValue=false)] - public BooleanValue? RequireRemittanceInformationforCashAccount { get; set; } - - [DataMember(Name="UseInAP", EmitDefaultValue=false)] - public BooleanValue? UseInAP { get; set; } - - [DataMember(Name="UseInAR", EmitDefaultValue=false)] - public BooleanValue? UseInAR { get; set; } - - [DataMember(Name="UseInPR", EmitDefaultValue=false)] - public BooleanValue? UseInPR { get; set; } - - [DataMember(Name="SetPaymentDatetoBankTransactionDate", EmitDefaultValue=false)] - public BooleanValue? SetPaymentDatetoBankTransactionDate { get; set; } - - [DataMember(Name="SettingsForPR", EmitDefaultValue=false)] - public SettingsForPR? SettingsForPR { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs deleted file mode 100644 index 1b8249a07..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodAllowedCashAccountDetail.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentMethodAllowedCashAccountDetail : Entity - { - - [DataMember(Name="APDefault", EmitDefaultValue=false)] - public BooleanValue? APDefault { get; set; } - - [DataMember(Name="APLastRefNbr", EmitDefaultValue=false)] - public StringValue? APLastRefNbr { get; set; } - - [DataMember(Name="APSuggestNextNbr", EmitDefaultValue=false)] - public BooleanValue? APSuggestNextNbr { get; set; } - - [DataMember(Name="ARDefault", EmitDefaultValue=false)] - public BooleanValue? ARDefault { get; set; } - - [DataMember(Name="ARDefaultForRefund", EmitDefaultValue=false)] - public BooleanValue? ARDefaultForRefund { get; set; } - - [DataMember(Name="ARLastRefNbr", EmitDefaultValue=false)] - public StringValue? ARLastRefNbr { get; set; } - - [DataMember(Name="ARSuggestNextNbr", EmitDefaultValue=false)] - public BooleanValue? ARSuggestNextNbr { get; set; } - - [DataMember(Name="BatchLastRefNbr", EmitDefaultValue=false)] - public StringValue? BatchLastRefNbr { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="UseInAP", EmitDefaultValue=false)] - public BooleanValue? UseInAP { get; set; } - - [DataMember(Name="UseInAR", EmitDefaultValue=false)] - public BooleanValue? UseInAR { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="UseInPR", EmitDefaultValue=false)] - public BooleanValue? UseInPR { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs deleted file mode 100644 index 9474bc5d0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentMethodProcessingCenterDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentMethodProcessingCenterDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="ProcCenterID", EmitDefaultValue=false)] - public StringValue? ProcCenterID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs deleted file mode 100644 index 480e91403..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentOrderDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentOrderDetail : Entity - { - - [DataMember(Name="AppliedToOrder", EmitDefaultValue=false)] - public DecimalValue? AppliedToOrder { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs deleted file mode 100644 index 64fe74ebc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PaymentPeriod.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PaymentPeriod : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="FinYear", EmitDefaultValue=false)] - public StringValue? FinYear { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PayPeriodID", EmitDefaultValue=false)] - public StringValue? PayPeriodID { get; set; } - - [DataMember(Name="PeriodNbr", EmitDefaultValue=false)] - public StringValue? PeriodNbr { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="TransactionDate", EmitDefaultValue=false)] - public DateTimeValue? TransactionDate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs deleted file mode 100644 index 79e0f44a6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollBatch.cs +++ /dev/null @@ -1,76 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PayrollBatch : Entity, ITopLevelEntity - { - - [DataMember(Name="BatchID", EmitDefaultValue=false)] - public StringValue? BatchID { get; set; } - - [DataMember(Name="DeductionsAndBenefitsDetails", EmitDefaultValue=false)] - public List? DeductionsAndBenefitsDetails { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EarningDetails", EmitDefaultValue=false)] - public List? EarningDetails { get; set; } - - [DataMember(Name="EmployeeSummary", EmitDefaultValue=false)] - public List? EmployeeSummary { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NumberofEmployees", EmitDefaultValue=false)] - public IntValue? NumberofEmployees { get; set; } - - [DataMember(Name="OvertimeRules", EmitDefaultValue=false)] - public BatchOvertimeRules? OvertimeRules { get; set; } - - [DataMember(Name="PayGroup", EmitDefaultValue=false)] - public StringValue? PayGroup { get; set; } - - [DataMember(Name="PayPeriod", EmitDefaultValue=false)] - public StringValue? PayPeriod { get; set; } - - [DataMember(Name="TotalEarnings", EmitDefaultValue=false)] - public DecimalValue? TotalEarnings { get; set; } - - [DataMember(Name="TotalHourQty", EmitDefaultValue=false)] - public DecimalValue? TotalHourQty { get; set; } - - [DataMember(Name="PayrollType", EmitDefaultValue=false)] - public StringValue? PayrollType { get; set; } - - [DataMember(Name="PeriodEnd", EmitDefaultValue=false)] - public DateTimeValue? PeriodEnd { get; set; } - - [DataMember(Name="PeriodStart", EmitDefaultValue=false)] - public DateTimeValue? PeriodStart { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TransactionDate", EmitDefaultValue=false)] - public DateTimeValue? TransactionDate { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs deleted file mode 100644 index a54bf6351..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollUnionLocal.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PayrollUnionLocal : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="DeductionsAndBenefits", EmitDefaultValue=false)] - public List? DeductionsAndBenefits { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EarningRates", EmitDefaultValue=false)] - public List? EarningRates { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="PayrollUnionLocalID", EmitDefaultValue=false)] - public StringValue? PayrollUnionLocalID { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs deleted file mode 100644 index 202b711d6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PayrollWCCCode.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PayrollWCCCode : Entity, ITopLevelEntity - { - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="WCCCodes", EmitDefaultValue=false)] - public List? WCCCodes { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs deleted file mode 100644 index a75acf6e8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCount.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PhysicalInventoryCount : Entity, ITopLevelEntity - { - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs deleted file mode 100644 index b6aff6365..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryCountDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PhysicalInventoryCountDetail : Entity - { - - [DataMember(Name="BookQty", EmitDefaultValue=false)] - public DecimalValue? BookQty { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="PhysicalQty", EmitDefaultValue=false)] - public DecimalValue? PhysicalQty { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs deleted file mode 100644 index 0741828a7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReview.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PhysicalInventoryReview : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="FreezeDate", EmitDefaultValue=false)] - public DateTimeValue? FreezeDate { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalPhysicalQty", EmitDefaultValue=false)] - public DecimalValue? TotalPhysicalQty { get; set; } - - [DataMember(Name="TotalVarianceCost", EmitDefaultValue=false)] - public DecimalValue? TotalVarianceCost { get; set; } - - [DataMember(Name="TotalVarianceQty", EmitDefaultValue=false)] - public DecimalValue? TotalVarianceQty { get; set; } - - [DataMember(Name="TypeID", EmitDefaultValue=false)] - public StringValue? TypeID { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs deleted file mode 100644 index 2a9bfdbf3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PhysicalInventoryReviewDetail.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PhysicalInventoryReviewDetail : Entity - { - - [DataMember(Name="BookQty", EmitDefaultValue=false)] - public DecimalValue? BookQty { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="ExtendedVarianceCost", EmitDefaultValue=false)] - public DecimalValue? ExtendedVarianceCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="PhysicalQty", EmitDefaultValue=false)] - public DecimalValue? PhysicalQty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TagNbr", EmitDefaultValue=false)] - public IntValue? TagNbr { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="VarianceQty", EmitDefaultValue=false)] - public DecimalValue? VarianceQty { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs deleted file mode 100644 index ace849ab4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaFinancialDetails.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProFormaFinancialDetails : Entity - { - - [DataMember(Name="ARDocType", EmitDefaultValue=false)] - public StringValue? ARDocType { get; set; } - - [DataMember(Name="ARRefNbr", EmitDefaultValue=false)] - public StringValue? ARRefNbr { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CashDiscountDate", EmitDefaultValue=false)] - public DateTimeValue? CashDiscountDate { get; set; } - - [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] - public StringValue? CustomerTaxZone { get; set; } - - [DataMember(Name="CustomerUsageType", EmitDefaultValue=false)] - public StringValue? CustomerUsageType { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs deleted file mode 100644 index 6e55297d4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaInvoice.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProFormaInvoice : Entity, ITopLevelEntity - { - - [DataMember(Name="AmountDue", EmitDefaultValue=false)] - public DecimalValue? AmountDue { get; set; } - - [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] - public List? ApprovalDetails { get; set; } - - [DataMember(Name="BillingSettings", EmitDefaultValue=false)] - public BillToSettings? BillingSettings { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] - public ProFormaFinancialDetails? FinancialDetails { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="InvoiceDate", EmitDefaultValue=false)] - public DateTimeValue? InvoiceDate { get; set; } - - [DataMember(Name="InvoiceTotal", EmitDefaultValue=false)] - public DecimalValue? InvoiceTotal { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ProgressBilling", EmitDefaultValue=false)] - public List? ProgressBilling { get; set; } - - [DataMember(Name="ProgressBillingTotal", EmitDefaultValue=false)] - public DecimalValue? ProgressBillingTotal { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="RefNbr", EmitDefaultValue=false)] - public StringValue? RefNbr { get; set; } - - [DataMember(Name="RetainageTotal", EmitDefaultValue=false)] - public DecimalValue? RetainageTotal { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="TimeAndMaterial", EmitDefaultValue=false)] - public List? TimeAndMaterial { get; set; } - - [DataMember(Name="TimeAndMaterialTotal", EmitDefaultValue=false)] - public DecimalValue? TimeAndMaterialTotal { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs deleted file mode 100644 index f738f98c2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProFormaTaxDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProFormaTaxDetail : Entity - { - - [DataMember(Name="RetainedTax", EmitDefaultValue=false)] - public DecimalValue? RetainedTax { get; set; } - - [DataMember(Name="RetainedTaxable", EmitDefaultValue=false)] - public DecimalValue? RetainedTaxable { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs deleted file mode 100644 index a2ab6d0da..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProgressBilling.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProgressBilling : Entity - { - - [DataMember(Name="ActualAmount", EmitDefaultValue=false)] - public DecimalValue? ActualAmount { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="AmountToInvoice", EmitDefaultValue=false)] - public DecimalValue? AmountToInvoice { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CurrentInvoiced", EmitDefaultValue=false)] - public DecimalValue? CurrentInvoiced { get; set; } - - [DataMember(Name="DeferralCode", EmitDefaultValue=false)] - public StringValue? DeferralCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DraftInvoicesAmount", EmitDefaultValue=false)] - public DecimalValue? DraftInvoicesAmount { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="PreviouslyInvoiced", EmitDefaultValue=false)] - public DecimalValue? PreviouslyInvoiced { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Retainage", EmitDefaultValue=false)] - public DecimalValue? Retainage { get; set; } - - [DataMember(Name="RetainageAmount", EmitDefaultValue=false)] - public DecimalValue? RetainageAmount { get; set; } - - [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedAmount { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="StoredMaterial", EmitDefaultValue=false)] - public DecimalValue? StoredMaterial { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TotalCompleted", EmitDefaultValue=false)] - public DecimalValue? TotalCompleted { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs deleted file mode 100644 index 9564baddf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Project.cs +++ /dev/null @@ -1,103 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Project : Entity, ITopLevelEntity - { - - [DataMember(Name="ActivityHistory", EmitDefaultValue=false)] - public List? ActivityHistory { get; set; } - - [DataMember(Name="ApprovalDetails", EmitDefaultValue=false)] - public List? ApprovalDetails { get; set; } - - [DataMember(Name="Assets", EmitDefaultValue=false)] - public DecimalValue? Assets { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="Balances", EmitDefaultValue=false)] - public List? Balances { get; set; } - - [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] - public ProjectBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } - - [DataMember(Name="BillToSettings", EmitDefaultValue=false)] - public BillToSettings? BillToSettings { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Employees", EmitDefaultValue=false)] - public List? Employees { get; set; } - - [DataMember(Name="Equipments", EmitDefaultValue=false)] - public List? Equipments { get; set; } - - [DataMember(Name="Expenses", EmitDefaultValue=false)] - public DecimalValue? Expenses { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="GLAccounts", EmitDefaultValue=false)] - public ProjectGLAccount? GLAccounts { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="Income", EmitDefaultValue=false)] - public DecimalValue? Income { get; set; } - - [DataMember(Name="Invoices", EmitDefaultValue=false)] - public List? Invoices { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Liabilities", EmitDefaultValue=false)] - public DecimalValue? Liabilities { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectProperties", EmitDefaultValue=false)] - public ProjectProperties? ProjectProperties { get; set; } - - [DataMember(Name="ProjectTemplateID", EmitDefaultValue=false)] - public StringValue? ProjectTemplateID { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="UnionLocals", EmitDefaultValue=false)] - public List? UnionLocals { get; set; } - - [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] - public VisibilitySettings? VisibilitySettings { get; set; } - - [DataMember(Name="Retainage", EmitDefaultValue=false)] - public ProjectRetainage? Retainage { get; set; } - - [DataMember(Name="ProjectAddress", EmitDefaultValue=false)] - public ProjectAddress? ProjectAddress { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs deleted file mode 100644 index 608db6a5d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectActivity.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectActivity : Entity - { - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public StringValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="Category", EmitDefaultValue=false)] - public StringValue? Category { get; set; } - - [DataMember(Name="Overtime", EmitDefaultValue=false)] - public StringValue? Overtime { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Summary", EmitDefaultValue=false)] - public StringValue? Summary { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="Workgroup", EmitDefaultValue=false)] - public StringValue? Workgroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs deleted file mode 100644 index 90cfefb3b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectAddress.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectAddress : Entity - { - - [DataMember(Name="AddressLine1", EmitDefaultValue=false)] - public StringValue? AddressLine1 { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="PostalCode", EmitDefaultValue=false)] - public StringValue? PostalCode { get; set; } - - [DataMember(Name="Latitude", EmitDefaultValue=false)] - public DecimalValue? Latitude { get; set; } - - [DataMember(Name="Longitude", EmitDefaultValue=false)] - public DecimalValue? Longitude { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs deleted file mode 100644 index 8637348c5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBalance.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectBalance : Entity - { - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="ActualAmount", EmitDefaultValue=false)] - public DecimalValue? ActualAmount { get; set; } - - [DataMember(Name="ActualOpenCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? ActualOpenCommittedAmount { get; set; } - - [DataMember(Name="BudgetedCOAmount", EmitDefaultValue=false)] - public DecimalValue? BudgetedCOAmount { get; set; } - - [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedCOAmount { get; set; } - - [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedAmount { get; set; } - - [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenAmount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="OriginalBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? OriginalBudgetedAmount { get; set; } - - [DataMember(Name="OriginalCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? OriginalCommittedAmount { get; set; } - - [DataMember(Name="Performance", EmitDefaultValue=false)] - public DecimalValue? Performance { get; set; } - - [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedAmount { get; set; } - - [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedAmount { get; set; } - - [DataMember(Name="VarianceAmount", EmitDefaultValue=false)] - public DecimalValue? VarianceAmount { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs deleted file mode 100644 index b09dd6864..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBillingAndAllocationSettings.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectBillingAndAllocationSettings : Entity - { - - [DataMember(Name="AllocationRule", EmitDefaultValue=false)] - public StringValue? AllocationRule { get; set; } - - [DataMember(Name="AutomaticallyReleaseARDocuments", EmitDefaultValue=false)] - public BooleanValue? AutomaticallyReleaseARDocuments { get; set; } - - [DataMember(Name="BillingPeriod", EmitDefaultValue=false)] - public StringValue? BillingPeriod { get; set; } - - [DataMember(Name="BillingRule", EmitDefaultValue=false)] - public StringValue? BillingRule { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CreateProFormaOnBilling", EmitDefaultValue=false)] - public BooleanValue? CreateProFormaOnBilling { get; set; } - - [DataMember(Name="LastBillingDate", EmitDefaultValue=false)] - public DateTimeValue? LastBillingDate { get; set; } - - [DataMember(Name="NextBillingDate", EmitDefaultValue=false)] - public DateTimeValue? NextBillingDate { get; set; } - - [DataMember(Name="RateTable", EmitDefaultValue=false)] - public StringValue? RateTable { get; set; } - - [DataMember(Name="RunAllocationOnReleaseOfProjectTransactions", EmitDefaultValue=false)] - public BooleanValue? RunAllocationOnReleaseOfProjectTransactions { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="UseTMRevenueBudgetLimits", EmitDefaultValue=false)] - public BooleanValue? UseTMRevenueBudgetLimits { get; set; } - - [DataMember(Name="BillingCurrency", EmitDefaultValue=false)] - public StringValue? BillingCurrency { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs deleted file mode 100644 index e61b54a33..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectBudget.cs +++ /dev/null @@ -1,157 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectBudget : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="ActualAmount", EmitDefaultValue=false)] - public DecimalValue? ActualAmount { get; set; } - - [DataMember(Name="ActualPlusOpenCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? ActualPlusOpenCommittedAmount { get; set; } - - [DataMember(Name="ActualQty", EmitDefaultValue=false)] - public DecimalValue? ActualQty { get; set; } - - [DataMember(Name="AutoCompleted", EmitDefaultValue=false)] - public BooleanValue? AutoCompleted { get; set; } - - [DataMember(Name="BudgetedCOAmount", EmitDefaultValue=false)] - public DecimalValue? BudgetedCOAmount { get; set; } - - [DataMember(Name="BudgetedCOQty", EmitDefaultValue=false)] - public DecimalValue? BudgetedCOQty { get; set; } - - [DataMember(Name="CommittedCOAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedCOAmount { get; set; } - - [DataMember(Name="CommittedCOQty", EmitDefaultValue=false)] - public DecimalValue? CommittedCOQty { get; set; } - - [DataMember(Name="CommittedInvoicedAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedAmount { get; set; } - - [DataMember(Name="CommittedInvoicedQty", EmitDefaultValue=false)] - public DecimalValue? CommittedInvoicedQty { get; set; } - - [DataMember(Name="CommittedOpenAmount", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenAmount { get; set; } - - [DataMember(Name="CommittedOpenQty", EmitDefaultValue=false)] - public DecimalValue? CommittedOpenQty { get; set; } - - [DataMember(Name="CommittedReceivedQty", EmitDefaultValue=false)] - public DecimalValue? CommittedReceivedQty { get; set; } - - [DataMember(Name="Completed", EmitDefaultValue=false)] - public DecimalValue? Completed { get; set; } - - [DataMember(Name="CostAtCompletion", EmitDefaultValue=false)] - public DecimalValue? CostAtCompletion { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CostToComplete", EmitDefaultValue=false)] - public DecimalValue? CostToComplete { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DraftInvoicesAmount", EmitDefaultValue=false)] - public DecimalValue? DraftInvoicesAmount { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastCostAtCompletion", EmitDefaultValue=false)] - public DecimalValue? LastCostAtCompletion { get; set; } - - [DataMember(Name="LastCostToComplete", EmitDefaultValue=false)] - public DecimalValue? LastCostToComplete { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LastPercentageOfCompletion", EmitDefaultValue=false)] - public DecimalValue? LastPercentageOfCompletion { get; set; } - - [DataMember(Name="OriginalBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? OriginalBudgetedAmount { get; set; } - - [DataMember(Name="OriginalBudgetedQty", EmitDefaultValue=false)] - public DecimalValue? OriginalBudgetedQty { get; set; } - - [DataMember(Name="OriginalCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? OriginalCommittedAmount { get; set; } - - [DataMember(Name="OriginalCommittedQty", EmitDefaultValue=false)] - public DecimalValue? OriginalCommittedQty { get; set; } - - [DataMember(Name="PendingInvoiceAmount", EmitDefaultValue=false)] - public DecimalValue? PendingInvoiceAmount { get; set; } - - [DataMember(Name="PercentageOfCompletion", EmitDefaultValue=false)] - public DecimalValue? PercentageOfCompletion { get; set; } - - [DataMember(Name="Performance", EmitDefaultValue=false)] - public DecimalValue? Performance { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Retainage", EmitDefaultValue=false)] - public DecimalValue? Retainage { get; set; } - - [DataMember(Name="RevenueTask", EmitDefaultValue=false)] - public IntValue? RevenueTask { get; set; } - - [DataMember(Name="RevisedBudgetedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedAmount { get; set; } - - [DataMember(Name="RevisedBudgetedQty", EmitDefaultValue=false)] - public DecimalValue? RevisedBudgetedQty { get; set; } - - [DataMember(Name="RevisedCommittedAmount", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedAmount { get; set; } - - [DataMember(Name="RevisedCommittedQty", EmitDefaultValue=false)] - public DecimalValue? RevisedCommittedQty { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UnitRate", EmitDefaultValue=false)] - public DecimalValue? UnitRate { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="VarianceAmount", EmitDefaultValue=false)] - public DecimalValue? VarianceAmount { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs deleted file mode 100644 index 05ac170db..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEmployee.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectEmployee : Entity - { - - [DataMember(Name="Department", EmitDefaultValue=false)] - public StringValue? Department { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="EmployeeName", EmitDefaultValue=false)] - public StringValue? EmployeeName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs deleted file mode 100644 index 00ab1a317..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectEquipment.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectEquipment : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EquipmentID", EmitDefaultValue=false)] - public StringValue? EquipmentID { get; set; } - - [DataMember(Name="RunRate", EmitDefaultValue=false)] - public DecimalValue? RunRate { get; set; } - - [DataMember(Name="RunRateItem", EmitDefaultValue=false)] - public StringValue? RunRateItem { get; set; } - - [DataMember(Name="SetupRate", EmitDefaultValue=false)] - public DecimalValue? SetupRate { get; set; } - - [DataMember(Name="SetupRateItem", EmitDefaultValue=false)] - public StringValue? SetupRateItem { get; set; } - - [DataMember(Name="SuspendRate", EmitDefaultValue=false)] - public DecimalValue? SuspendRate { get; set; } - - [DataMember(Name="SuspendRateItem", EmitDefaultValue=false)] - public StringValue? SuspendRateItem { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs deleted file mode 100644 index 0f2b31da5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectGLAccount.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectGLAccount : Entity - { - - [DataMember(Name="AccrualAccount", EmitDefaultValue=false)] - public StringValue? AccrualAccount { get; set; } - - [DataMember(Name="AccrualSubaccount", EmitDefaultValue=false)] - public StringValue? AccrualSubaccount { get; set; } - - [DataMember(Name="DefaultAccount", EmitDefaultValue=false)] - public StringValue? DefaultAccount { get; set; } - - [DataMember(Name="DefaultSubaccount", EmitDefaultValue=false)] - public StringValue? DefaultSubaccount { get; set; } - - [DataMember(Name="DefaultCostAccount", EmitDefaultValue=false)] - public StringValue? DefaultCostAccount { get; set; } - - [DataMember(Name="DefaultCostSubaccount", EmitDefaultValue=false)] - public StringValue? DefaultCostSubaccount { get; set; } - - [DataMember(Name="DefaultTaskForGLAccounts", EmitDefaultValue=false)] - public List? DefaultTaskForGLAccounts { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs deleted file mode 100644 index fdaec8bcc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProFormaDetails.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectProFormaDetails : Entity - { - - [DataMember(Name="ARDocDate", EmitDefaultValue=false)] - public DateTimeValue? ARDocDate { get; set; } - - [DataMember(Name="ARDocDescription", EmitDefaultValue=false)] - public StringValue? ARDocDescription { get; set; } - - [DataMember(Name="ARDocOriginalAmount", EmitDefaultValue=false)] - public DecimalValue? ARDocOriginalAmount { get; set; } - - [DataMember(Name="ARDocStatus", EmitDefaultValue=false)] - public StringValue? ARDocStatus { get; set; } - - [DataMember(Name="ARDocType", EmitDefaultValue=false)] - public StringValue? ARDocType { get; set; } - - [DataMember(Name="ARReferenceNbr", EmitDefaultValue=false)] - public StringValue? ARReferenceNbr { get; set; } - - [DataMember(Name="BillingNbr", EmitDefaultValue=false)] - public IntValue? BillingNbr { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InvoiceTotal", EmitDefaultValue=false)] - public DecimalValue? InvoiceTotal { get; set; } - - [DataMember(Name="OpenARBalance", EmitDefaultValue=false)] - public DecimalValue? OpenARBalance { get; set; } - - [DataMember(Name="OriginalRefNbr", EmitDefaultValue=false)] - public StringValue? OriginalRefNbr { get; set; } - - [DataMember(Name="OriginalRetainage", EmitDefaultValue=false)] - public DecimalValue? OriginalRetainage { get; set; } - - [DataMember(Name="PaidRetainage", EmitDefaultValue=false)] - public DecimalValue? PaidRetainage { get; set; } - - [DataMember(Name="ProFormaDate", EmitDefaultValue=false)] - public DateTimeValue? ProFormaDate { get; set; } - - [DataMember(Name="ProFormaReferenceNbr", EmitDefaultValue=false)] - public StringValue? ProFormaReferenceNbr { get; set; } - - [DataMember(Name="RetainageInvoice", EmitDefaultValue=false)] - public BooleanValue? RetainageInvoice { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalAmount", EmitDefaultValue=false)] - public DecimalValue? TotalAmount { get; set; } - - [DataMember(Name="UnpaidRetainage", EmitDefaultValue=false)] - public DecimalValue? UnpaidRetainage { get; set; } - - [DataMember(Name="UnreleasedRetainage", EmitDefaultValue=false)] - public DecimalValue? UnreleasedRetainage { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs deleted file mode 100644 index 45c6eb8f5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectProperties.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectProperties : Entity - { - - [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] - public BooleanValue? CertifiedJob { get; set; } - - [DataMember(Name="ChangeOrderWorkflow", EmitDefaultValue=false)] - public BooleanValue? ChangeOrderWorkflow { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="LastRevenueChangeNbr", EmitDefaultValue=false)] - public StringValue? LastRevenueChangeNbr { get; set; } - - [DataMember(Name="ProjectManager", EmitDefaultValue=false)] - public StringValue? ProjectManager { get; set; } - - [DataMember(Name="RestrictEmployees", EmitDefaultValue=false)] - public BooleanValue? RestrictEmployees { get; set; } - - [DataMember(Name="RestrictEquipment", EmitDefaultValue=false)] - public BooleanValue? RestrictEquipment { get; set; } - - [DataMember(Name="RevenueBudgetLevel", EmitDefaultValue=false)] - public StringValue? RevenueBudgetLevel { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="TrackProductionData", EmitDefaultValue=false)] - public BooleanValue? TrackProductionData { get; set; } - - [DataMember(Name="CostBudgetLevel", EmitDefaultValue=false)] - public StringValue? CostBudgetLevel { get; set; } - - [DataMember(Name="TimeActivityApprover", EmitDefaultValue=false)] - public StringValue? TimeActivityApprover { get; set; } - - [DataMember(Name="ProjectCurrency", EmitDefaultValue=false)] - public StringValue? ProjectCurrency { get; set; } - - [DataMember(Name="RateType", EmitDefaultValue=false)] - public StringValue? RateType { get; set; } - - [DataMember(Name="InventoryTrackingMode", EmitDefaultValue=false)] - public StringValue? InventoryTrackingMode { get; set; } - - [DataMember(Name="CostTaxZone", EmitDefaultValue=false)] - public StringValue? CostTaxZone { get; set; } - - [DataMember(Name="RevenueTaxZone", EmitDefaultValue=false)] - public StringValue? RevenueTaxZone { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs deleted file mode 100644 index fbf0bc2da..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectRetainage.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectRetainage : Entity - { - - [DataMember(Name="RetainageMode", EmitDefaultValue=false)] - public StringValue? RetainageMode { get; set; } - - [DataMember(Name="IncludeCO", EmitDefaultValue=false)] - public BooleanValue? IncludeCO { get; set; } - - [DataMember(Name="UseSteps", EmitDefaultValue=false)] - public BooleanValue? UseSteps { get; set; } - - [DataMember(Name="CapPct", EmitDefaultValue=false)] - public DecimalValue? CapPct { get; set; } - - [DataMember(Name="CapAmount", EmitDefaultValue=false)] - public DecimalValue? CapAmount { get; set; } - - [DataMember(Name="RetainagePct", EmitDefaultValue=false)] - public DecimalValue? RetainagePct { get; set; } - - [DataMember(Name="RetainTotal", EmitDefaultValue=false)] - public DecimalValue? RetainTotal { get; set; } - - [DataMember(Name="ContractTotal", EmitDefaultValue=false)] - public DecimalValue? ContractTotal { get; set; } - - [DataMember(Name="CompletedPct", EmitDefaultValue=false)] - public DecimalValue? CompletedPct { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs deleted file mode 100644 index 183612e06..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTask.cs +++ /dev/null @@ -1,64 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTask : Entity, ITopLevelEntity - { - - [DataMember(Name="ActivityHistory", EmitDefaultValue=false)] - public List? ActivityHistory { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] - public ProjectTaskBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } - - [DataMember(Name="CRMLink", EmitDefaultValue=false)] - public ProjectTaskToCRMLink? CRMLink { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="DefaultValues", EmitDefaultValue=false)] - public ProjectTaskDefaultValues? DefaultValues { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Properties", EmitDefaultValue=false)] - public ProjectTaskProperties? Properties { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] - public VisibilitySettings? VisibilitySettings { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs deleted file mode 100644 index 62ed55fe2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskBillingAndAllocationSettings.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTaskBillingAndAllocationSettings : Entity - { - - [DataMember(Name="AllocationRule", EmitDefaultValue=false)] - public StringValue? AllocationRule { get; set; } - - [DataMember(Name="BillingOption", EmitDefaultValue=false)] - public StringValue? BillingOption { get; set; } - - [DataMember(Name="BillingRule", EmitDefaultValue=false)] - public StringValue? BillingRule { get; set; } - - [DataMember(Name="BillSeparately", EmitDefaultValue=false)] - public BooleanValue? BillSeparately { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="RateTable", EmitDefaultValue=false)] - public StringValue? RateTable { get; set; } - - [DataMember(Name="WIPAccountGroup", EmitDefaultValue=false)] - public StringValue? WIPAccountGroup { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs deleted file mode 100644 index b3a831db4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskDefaultValues.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTaskDefaultValues : Entity - { - - [DataMember(Name="AccrualAccount", EmitDefaultValue=false)] - public StringValue? AccrualAccount { get; set; } - - [DataMember(Name="AccrualSubaccount", EmitDefaultValue=false)] - public StringValue? AccrualSubaccount { get; set; } - - [DataMember(Name="DefaultAccount", EmitDefaultValue=false)] - public StringValue? DefaultAccount { get; set; } - - [DataMember(Name="DefaultSubaccount", EmitDefaultValue=false)] - public StringValue? DefaultSubaccount { get; set; } - - [DataMember(Name="DefaultCostAccount", EmitDefaultValue=false)] - public StringValue? DefaultCostAccount { get; set; } - - [DataMember(Name="DefaultCostSubaccount", EmitDefaultValue=false)] - public StringValue? DefaultCostSubaccount { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs deleted file mode 100644 index 72b61b781..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskProperties.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTaskProperties : Entity - { - - [DataMember(Name="Approver", EmitDefaultValue=false)] - public StringValue? Approver { get; set; } - - [DataMember(Name="Completed", EmitDefaultValue=false)] - public DecimalValue? Completed { get; set; } - - [DataMember(Name="CompletionMethod", EmitDefaultValue=false)] - public StringValue? CompletionMethod { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="PlannedEndDate", EmitDefaultValue=false)] - public DateTimeValue? PlannedEndDate { get; set; } - - [DataMember(Name="PlannedStartDate", EmitDefaultValue=false)] - public DateTimeValue? PlannedStartDate { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs deleted file mode 100644 index ea666f2d8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTaskToCRMLink.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTaskToCRMLink : Entity - { - - [DataMember(Name="AccountedCampaign", EmitDefaultValue=false)] - public StringValue? AccountedCampaign { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs deleted file mode 100644 index d73470ffe..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplate.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTemplate : Entity, ITopLevelEntity - { - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] - public ProjectBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Employees", EmitDefaultValue=false)] - public List? Employees { get; set; } - - [DataMember(Name="Equipments", EmitDefaultValue=false)] - public List? Equipments { get; set; } - - [DataMember(Name="GLAccounts", EmitDefaultValue=false)] - public ProjectGLAccount? GLAccounts { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ProjectProperties", EmitDefaultValue=false)] - public ProjectProperties? ProjectProperties { get; set; } - - [DataMember(Name="ProjectTemplateID", EmitDefaultValue=false)] - public StringValue? ProjectTemplateID { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] - public VisibilitySettings? VisibilitySettings { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs deleted file mode 100644 index 52c79ad7c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTask.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTemplateTask : Entity, ITopLevelEntity - { - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BillingAndAllocationSettings", EmitDefaultValue=false)] - public ProjectTaskBillingAndAllocationSettings? BillingAndAllocationSettings { get; set; } - - [DataMember(Name="DefaultValues", EmitDefaultValue=false)] - public ProjectTaskDefaultValues? DefaultValues { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="ProjectTemplateID", EmitDefaultValue=false)] - public StringValue? ProjectTemplateID { get; set; } - - [DataMember(Name="ProjectTemplateTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTemplateTaskID { get; set; } - - [DataMember(Name="Properties", EmitDefaultValue=false)] - public ProjectTemplateTaskProperties? Properties { get; set; } - - [DataMember(Name="VisibilitySettings", EmitDefaultValue=false)] - public VisibilitySettings? VisibilitySettings { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs deleted file mode 100644 index 0e2bb87d7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTemplateTaskProperties.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTemplateTaskProperties : Entity - { - - [DataMember(Name="Approver", EmitDefaultValue=false)] - public StringValue? Approver { get; set; } - - [DataMember(Name="AutomaticallyIncludeInProject", EmitDefaultValue=false)] - public BooleanValue? AutomaticallyIncludeInProject { get; set; } - - [DataMember(Name="CompletionMethod", EmitDefaultValue=false)] - public StringValue? CompletionMethod { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs deleted file mode 100644 index 75f5881b6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransaction.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTransaction : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Module", EmitDefaultValue=false)] - public StringValue? Module { get; set; } - - [DataMember(Name="OriginalDocNbr", EmitDefaultValue=false)] - public StringValue? OriginalDocNbr { get; set; } - - [DataMember(Name="OriginalDocType", EmitDefaultValue=false)] - public StringValue? OriginalDocType { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalAmount", EmitDefaultValue=false)] - public DecimalValue? TotalAmount { get; set; } - - [DataMember(Name="TotalBillableQty", EmitDefaultValue=false)] - public DecimalValue? TotalBillableQty { get; set; } - - [DataMember(Name="TotalQty", EmitDefaultValue=false)] - public DecimalValue? TotalQty { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs deleted file mode 100644 index f80150466..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectTransactionDetail.cs +++ /dev/null @@ -1,120 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectTransactionDetail : Entity - { - - [DataMember(Name="AccountGroup", EmitDefaultValue=false)] - public StringValue? AccountGroup { get; set; } - - [DataMember(Name="AccountGroupDescription", EmitDefaultValue=false)] - public StringValue? AccountGroupDescription { get; set; } - - [DataMember(Name="Allocated", EmitDefaultValue=false)] - public BooleanValue? Allocated { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="BatchNbr", EmitDefaultValue=false)] - public StringValue? BatchNbr { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillableQty", EmitDefaultValue=false)] - public DecimalValue? BillableQty { get; set; } - - [DataMember(Name="Billed", EmitDefaultValue=false)] - public BooleanValue? Billed { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CreditAccount", EmitDefaultValue=false)] - public StringValue? CreditAccount { get; set; } - - [DataMember(Name="CreditSubaccount", EmitDefaultValue=false)] - public StringValue? CreditSubaccount { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="DebitAccount", EmitDefaultValue=false)] - public StringValue? DebitAccount { get; set; } - - [DataMember(Name="DebitSubaccount", EmitDefaultValue=false)] - public StringValue? DebitSubaccount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EarningType", EmitDefaultValue=false)] - public StringValue? EarningType { get; set; } - - [DataMember(Name="Employee", EmitDefaultValue=false)] - public StringValue? Employee { get; set; } - - [DataMember(Name="EndDate", EmitDefaultValue=false)] - public DateTimeValue? EndDate { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="FinPeriod", EmitDefaultValue=false)] - public StringValue? FinPeriod { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="Multiplier", EmitDefaultValue=false)] - public DecimalValue? Multiplier { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Released", EmitDefaultValue=false)] - public BooleanValue? Released { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="TransactionID", EmitDefaultValue=false)] - public LongValue? TransactionID { get; set; } - - [DataMember(Name="UnitRate", EmitDefaultValue=false)] - public DecimalValue? UnitRate { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="UseBillableQtyInAmountFormula", EmitDefaultValue=false)] - public BooleanValue? UseBillableQtyInAmountFormula { get; set; } - - [DataMember(Name="VendorOrCustomer", EmitDefaultValue=false)] - public StringValue? VendorOrCustomer { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs deleted file mode 100644 index 58b018fe1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ProjectUnionLocal.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ProjectUnionLocal : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] - public StringValue? UnionLocalID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs deleted file mode 100644 index 1d3c567d0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrder.cs +++ /dev/null @@ -1,112 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseOrder : Entity, ITopLevelEntity - { - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ControlTotal", EmitDefaultValue=false)] - public DecimalValue? ControlTotal { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyEffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? CurrencyEffectiveDate { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrencyRateTypeID { get; set; } - - [DataMember(Name="CurrencyReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyReciprocalRate { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] - public BooleanValue? IsTaxValid { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LineTotal", EmitDefaultValue=false)] - public DecimalValue? LineTotal { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderTotal", EmitDefaultValue=false)] - public DecimalValue? OrderTotal { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="PromisedOn", EmitDefaultValue=false)] - public DateTimeValue? PromisedOn { get; set; } - - [DataMember(Name="ShippingInstructions", EmitDefaultValue=false)] - public ShippingInstructions? ShippingInstructions { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorRef", EmitDefaultValue=false)] - public StringValue? VendorRef { get; set; } - - [DataMember(Name="VendorTaxZone", EmitDefaultValue=false)] - public StringValue? VendorTaxZone { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs deleted file mode 100644 index 02d4ca8b3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderDetail.cs +++ /dev/null @@ -1,123 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseOrderDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="AlternateID", EmitDefaultValue=false)] - public StringValue? AlternateID { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] - public BooleanValue? CalculateDiscountsOnImport { get; set; } - - [DataMember(Name="Cancelled", EmitDefaultValue=false)] - public BooleanValue? Cancelled { get; set; } - - [DataMember(Name="Completed", EmitDefaultValue=false)] - public BooleanValue? Completed { get; set; } - - [DataMember(Name="CompleteOn", EmitDefaultValue=false)] - public DecimalValue? CompleteOn { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] - public DecimalValue? ExtendedCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineDescription", EmitDefaultValue=false)] - public StringValue? LineDescription { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LineType", EmitDefaultValue=false)] - public StringValue? LineType { get; set; } - - [DataMember(Name="MaxReceiptPercent", EmitDefaultValue=false)] - public DecimalValue? MaxReceiptPercent { get; set; } - - [DataMember(Name="MinReceiptPercent", EmitDefaultValue=false)] - public DecimalValue? MinReceiptPercent { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderQty", EmitDefaultValue=false)] - public DecimalValue? OrderQty { get; set; } - - [DataMember(Name="OrderedQty", EmitDefaultValue=false)] - public DecimalValue? OrderedQty { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="OrigPONbr", EmitDefaultValue=false)] - public StringValue? OrigPONbr { get; set; } - - [DataMember(Name="OrigPOType", EmitDefaultValue=false)] - public StringValue? OrigPOType { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Promised", EmitDefaultValue=false)] - public DateTimeValue? Promised { get; set; } - - [DataMember(Name="QtyOnReceipts", EmitDefaultValue=false)] - public DecimalValue? QtyOnReceipts { get; set; } - - [DataMember(Name="ReceiptAction", EmitDefaultValue=false)] - public StringValue? ReceiptAction { get; set; } - - [DataMember(Name="ReceivedAmount", EmitDefaultValue=false)] - public DecimalValue? ReceivedAmount { get; set; } - - [DataMember(Name="Requested", EmitDefaultValue=false)] - public DateTimeValue? Requested { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs deleted file mode 100644 index 89c1c5911..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseOrderTaxDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseOrderTaxDetail : Entity - { - - [DataMember(Name="RetainedTaxableAmount", EmitDefaultValue=false)] - public DecimalValue? RetainedTaxableAmount { get; set; } - - [DataMember(Name="RetainedTaxAmount", EmitDefaultValue=false)] - public DecimalValue? RetainedTaxAmount { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs deleted file mode 100644 index e8f23ccf0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceipt.cs +++ /dev/null @@ -1,103 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseReceipt : Entity, ITopLevelEntity - { - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="BillDate", EmitDefaultValue=false)] - public DateTimeValue? BillDate { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ControlQty", EmitDefaultValue=false)] - public DecimalValue? ControlQty { get; set; } - - [DataMember(Name="CreateBill", EmitDefaultValue=false)] - public BooleanValue? CreateBill { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyEffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? CurrencyEffectiveDate { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrencyRateTypeID { get; set; } - - [DataMember(Name="CurrencyReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyReciprocalRate { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] - public StringValue? InventoryRefNbr { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ProcessReturnWithOriginalCost", EmitDefaultValue=false)] - public BooleanValue? ProcessReturnWithOriginalCost { get; set; } - - [DataMember(Name="ReceiptNbr", EmitDefaultValue=false)] - public StringValue? ReceiptNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalCost", EmitDefaultValue=false)] - public DecimalValue? TotalCost { get; set; } - - [DataMember(Name="TotalQty", EmitDefaultValue=false)] - public DecimalValue? TotalQty { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UnbilledQuantity", EmitDefaultValue=false)] - public DecimalValue? UnbilledQuantity { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorRef", EmitDefaultValue=false)] - public StringValue? VendorRef { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs deleted file mode 100644 index 2c2936953..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetail.cs +++ /dev/null @@ -1,120 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseReceiptDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="AccrualAccount", EmitDefaultValue=false)] - public StringValue? AccrualAccount { get; set; } - - [DataMember(Name="AccrualSubaccount", EmitDefaultValue=false)] - public StringValue? AccrualSubaccount { get; set; } - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EditableUnitCost", EmitDefaultValue=false)] - public BooleanValue? EditableUnitCost { get; set; } - - [DataMember(Name="EstimatedINExtendedCost", EmitDefaultValue=false)] - public DecimalValue? EstimatedINExtendedCost { get; set; } - - [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] - public DecimalValue? ExtendedCost { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="FinalINExtendedCost", EmitDefaultValue=false)] - public DecimalValue? FinalINExtendedCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LineType", EmitDefaultValue=false)] - public StringValue? LineType { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="OpenQty", EmitDefaultValue=false)] - public DecimalValue? OpenQty { get; set; } - - [DataMember(Name="OrderedQty", EmitDefaultValue=false)] - public DecimalValue? OrderedQty { get; set; } - - [DataMember(Name="POLineNbr", EmitDefaultValue=false)] - public IntValue? POLineNbr { get; set; } - - [DataMember(Name="POOrderNbr", EmitDefaultValue=false)] - public StringValue? POOrderNbr { get; set; } - - [DataMember(Name="POOrderType", EmitDefaultValue=false)] - public StringValue? POOrderType { get; set; } - - [DataMember(Name="POReceiptLineNbr", EmitDefaultValue=false)] - public IntValue? POReceiptLineNbr { get; set; } - - [DataMember(Name="POReceiptNbr", EmitDefaultValue=false)] - public StringValue? POReceiptNbr { get; set; } - - [DataMember(Name="ReceiptQty", EmitDefaultValue=false)] - public DecimalValue? ReceiptQty { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TransactionDescription", EmitDefaultValue=false)] - public StringValue? TransactionDescription { get; set; } - - [DataMember(Name="TransferOrderNbr", EmitDefaultValue=false)] - public StringValue? TransferOrderNbr { get; set; } - - [DataMember(Name="TransferOrderLineNbr", EmitDefaultValue=false)] - public IntValue? TransferOrderLineNbr { get; set; } - - [DataMember(Name="TransferOrderType", EmitDefaultValue=false)] - public StringValue? TransferOrderType { get; set; } - - [DataMember(Name="TransferShipmentNbr", EmitDefaultValue=false)] - public StringValue? TransferShipmentNbr { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs deleted file mode 100644 index 69562348d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseReceiptDetailAllocation.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseReceiptDetailAllocation : Entity - { - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReceiptNbr", EmitDefaultValue=false)] - public StringValue? ReceiptNbr { get; set; } - - [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] - public IntValue? SplitLineNbr { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs deleted file mode 100644 index 73dca72b6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchaseSettings.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchaseSettings : Entity - { - - [DataMember(Name="POSiteID", EmitDefaultValue=false)] - public StringValue? POSiteID { get; set; } - - [DataMember(Name="POSource", EmitDefaultValue=false)] - public StringValue? POSource { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs deleted file mode 100644 index b1effdad1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/PurchasingDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class PurchasingDetail : Entity - { - - [DataMember(Name="POOrderLineNbr", EmitDefaultValue=false)] - public IntValue? POOrderLineNbr { get; set; } - - [DataMember(Name="POOrderNbr", EmitDefaultValue=false)] - public StringValue? POOrderNbr { get; set; } - - [DataMember(Name="POOrderType", EmitDefaultValue=false)] - public StringValue? POOrderType { get; set; } - - [DataMember(Name="Selected", EmitDefaultValue=false)] - public BooleanValue? Selected { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs deleted file mode 100644 index 6710f19f4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/RelationDetail.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RelationDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="AddToCc", EmitDefaultValue=false)] - public BooleanValue? AddToCc { get; set; } - - [DataMember(Name="ContactDisplayName", EmitDefaultValue=false)] - public StringValue? ContactDisplayName { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public IntValue? ContactID { get; set; } - - [DataMember(Name="Document", EmitDefaultValue=false)] - public GuidValue? Document { get; set; } - - [DataMember(Name="DocumentTargetNoteIDDescription", EmitDefaultValue=false)] - public StringValue? DocumentTargetNoteIDDescription { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="Primary", EmitDefaultValue=false)] - public BooleanValue? Primary { get; set; } - - [DataMember(Name="RelationID", EmitDefaultValue=false)] - public IntValue? RelationID { get; set; } - - [DataMember(Name="Role", EmitDefaultValue=false)] - public StringValue? Role { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="DocumentDate", EmitDefaultValue=false)] - public DateTimeValue? DocumentDate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs deleted file mode 100644 index 5b3b39910..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReminderDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReminderDetail : Entity - { - - [DataMember(Name="IsActive", EmitDefaultValue=false)] - public BooleanValue? IsActive { get; set; } - - [DataMember(Name="RemindAtDate", EmitDefaultValue=false)] - public DateTimeValue? RemindAtDate { get; set; } - - [DataMember(Name="RemindAtTime", EmitDefaultValue=false)] - public DateTimeValue? RemindAtTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs deleted file mode 100644 index df036b3ed..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReplenishmentParameterStockItem.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReplenishmentParameterStockItem : Entity - { - - [DataMember(Name="DemandForecastModel", EmitDefaultValue=false)] - public StringValue? DemandForecastModel { get; set; } - - [DataMember(Name="ForecastPeriodType", EmitDefaultValue=false)] - public StringValue? ForecastPeriodType { get; set; } - - [DataMember(Name="LaunchDate", EmitDefaultValue=false)] - public DateTimeValue? LaunchDate { get; set; } - - [DataMember(Name="MaxQty", EmitDefaultValue=false)] - public DecimalValue? MaxQty { get; set; } - - [DataMember(Name="MaxShelfLifeInDays", EmitDefaultValue=false)] - public IntValue? MaxShelfLifeInDays { get; set; } - - [DataMember(Name="Method", EmitDefaultValue=false)] - public StringValue? Method { get; set; } - - [DataMember(Name="PeriodsToAnalyze", EmitDefaultValue=false)] - public IntValue? PeriodsToAnalyze { get; set; } - - [DataMember(Name="ReorderPoint", EmitDefaultValue=false)] - public DecimalValue? ReorderPoint { get; set; } - - [DataMember(Name="ReplenishmentClass", EmitDefaultValue=false)] - public StringValue? ReplenishmentClass { get; set; } - - [DataMember(Name="ReplenishmentWarehouse", EmitDefaultValue=false)] - public StringValue? ReplenishmentWarehouse { get; set; } - - [DataMember(Name="SafetyStock", EmitDefaultValue=false)] - public DecimalValue? SafetyStock { get; set; } - - [DataMember(Name="Seasonality", EmitDefaultValue=false)] - public StringValue? Seasonality { get; set; } - - [DataMember(Name="ServiceLevel", EmitDefaultValue=false)] - public DecimalValue? ServiceLevel { get; set; } - - [DataMember(Name="Source", EmitDefaultValue=false)] - public StringValue? Source { get; set; } - - [DataMember(Name="TerminationDate", EmitDefaultValue=false)] - public DateTimeValue? TerminationDate { get; set; } - - [DataMember(Name="TransferERQ", EmitDefaultValue=false)] - public DecimalValue? TransferERQ { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs deleted file mode 100644 index c403d22b3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ReportingGroup.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ReportingGroup : Entity - { - - [DataMember(Name="GroupType", EmitDefaultValue=false)] - public StringValue? GroupType { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs deleted file mode 100644 index 88a3fc810..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/RepositoryLines.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class RepositoryLines : Entity - { - - [DataMember(Name="AcumaticaBuild", EmitDefaultValue=false)] - public StringValue? AcumaticaBuild { get; set; } - - [DataMember(Name="ClientApplication", EmitDefaultValue=false)] - public StringValue? ClientApplication { get; set; } - - [DataMember(Name="CustomizationProject", EmitDefaultValue=false)] - public StringValue? CustomizationProject { get; set; } - - [DataMember(Name="Documentation", EmitDefaultValue=false)] - public StringValue? Documentation { get; set; } - - [DataMember(Name="Certified", EmitDefaultValue=false)] - public BooleanValue? Certified { get; set; } - - [DataMember(Name="IsStatusISVApproved", EmitDefaultValue=false)] - public BooleanValue? IsStatusISVApproved { get; set; } - - [DataMember(Name="IsStatusPassed", EmitDefaultValue=false)] - public BooleanValue? IsStatusPassed { get; set; } - - [DataMember(Name="IsStatusSubmitted", EmitDefaultValue=false)] - public BooleanValue? IsStatusSubmitted { get; set; } - - [DataMember(Name="ISVVersion", EmitDefaultValue=false)] - public StringValue? ISVVersion { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="PortalCustomization", EmitDefaultValue=false)] - public StringValue? PortalCustomization { get; set; } - - [DataMember(Name="Issues", EmitDefaultValue=false)] - public StringValue? Issues { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TestFiles", EmitDefaultValue=false)] - public StringValue? TestFiles { get; set; } - - [DataMember(Name="CreatedBy", EmitDefaultValue=false)] - public StringValue? CreatedBy { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs deleted file mode 100644 index 659a200cf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoice.cs +++ /dev/null @@ -1,121 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoice : Entity, ITopLevelEntity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="ApplicationsCreditMemo", EmitDefaultValue=false)] - public List? ApplicationsCreditMemo { get; set; } - - [DataMember(Name="ApplicationsInvoice", EmitDefaultValue=false)] - public List? ApplicationsInvoice { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="BillingSettings", EmitDefaultValue=false)] - public BillToSettings? BillingSettings { get; set; } - - [DataMember(Name="CashDiscount", EmitDefaultValue=false)] - public DecimalValue? CashDiscount { get; set; } - - [DataMember(Name="Commissions", EmitDefaultValue=false)] - public SalesInvoiceCommissions? Commissions { get; set; } - - [DataMember(Name="CreditHold", EmitDefaultValue=false)] - public BooleanValue? CreditHold { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="DetailTotal", EmitDefaultValue=false)] - public DecimalValue? DetailTotal { get; set; } - - [DataMember(Name="DiscountDetails", EmitDefaultValue=false)] - public List? DiscountDetails { get; set; } - - [DataMember(Name="DiscountTotal", EmitDefaultValue=false)] - public DecimalValue? DiscountTotal { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] - public BooleanValue? IsTaxValid { get; set; } - - [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] - public SalesInvoiceFinancialDetails? FinancialDetails { get; set; } - - [DataMember(Name="FreightDetails", EmitDefaultValue=false)] - public List? FreightDetails { get; set; } - - [DataMember(Name="FreightPrice", EmitDefaultValue=false)] - public DecimalValue? FreightPrice { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PaymentTotal", EmitDefaultValue=false)] - public DecimalValue? PaymentTotal { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] - public DecimalValue? VATExemptTotal { get; set; } - - [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] - public DecimalValue? VATTaxableTotal { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs deleted file mode 100644 index dc0379a91..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationCreditMemo.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceApplicationCreditMemo : Entity - { - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs deleted file mode 100644 index 1e1d7030d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceApplicationInvoice.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceApplicationInvoice : Entity - { - - [DataMember(Name="AdjustedDocReferenceNbr", EmitDefaultValue=false)] - public StringValue? AdjustedDocReferenceNbr { get; set; } - - [DataMember(Name="AdjustingDocReferenceNbr", EmitDefaultValue=false)] - public StringValue? AdjustingDocReferenceNbr { get; set; } - - [DataMember(Name="AdjustmentNbr", EmitDefaultValue=false)] - public IntValue? AdjustmentNbr { get; set; } - - [DataMember(Name="AmountPaid", EmitDefaultValue=false)] - public DecimalValue? AmountPaid { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="CashDiscountTaken", EmitDefaultValue=false)] - public DecimalValue? CashDiscountTaken { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="DocumentType", EmitDefaultValue=false)] - public StringValue? DocumentType { get; set; } - - [DataMember(Name="PaymentDate", EmitDefaultValue=false)] - public DateTimeValue? PaymentDate { get; set; } - - [DataMember(Name="PaymentPeriod", EmitDefaultValue=false)] - public StringValue? PaymentPeriod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs deleted file mode 100644 index cab8be56a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceCommissions.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceCommissions : Entity - { - - [DataMember(Name="CommissionAmount", EmitDefaultValue=false)] - public DecimalValue? CommissionAmount { get; set; } - - [DataMember(Name="SalesPersons", EmitDefaultValue=false)] - public List? SalesPersons { get; set; } - - [DataMember(Name="TotalCommissionableAmount", EmitDefaultValue=false)] - public DecimalValue? TotalCommissionableAmount { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs deleted file mode 100644 index aebe75bb1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDetail.cs +++ /dev/null @@ -1,108 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceDetail : Entity - { - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] - public BooleanValue? CalculateDiscountsOnImport { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryDocType", EmitDefaultValue=false)] - public StringValue? InventoryDocType { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] - public StringValue? InventoryRefNbr { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="OrderLineNbr", EmitDefaultValue=false)] - public IntValue? OrderLineNbr { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="OrigInvLineNbr", EmitDefaultValue=false)] - public IntValue? OrigInvLineNbr { get; set; } - - [DataMember(Name="OrigInvNbr", EmitDefaultValue=false)] - public StringValue? OrigInvNbr { get; set; } - - [DataMember(Name="OrigInvType", EmitDefaultValue=false)] - public StringValue? OrigInvType { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] - public StringValue? ShipmentNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TransactionDescr", EmitDefaultValue=false)] - public StringValue? TransactionDescr { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs deleted file mode 100644 index c6d26c4a1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceDiscountDetails.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceDiscountDetails : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountableAmount { get; set; } - - [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] - public DecimalValue? DiscountableQty { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="ExternalDiscountCode", EmitDefaultValue=false)] - public StringValue? ExternalDiscountCode { get; set; } - - [DataMember(Name="FreeItem", EmitDefaultValue=false)] - public StringValue? FreeItem { get; set; } - - [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] - public DecimalValue? FreeItemQty { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="SequenceID", EmitDefaultValue=false)] - public StringValue? SequenceID { get; set; } - - [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] - public BooleanValue? SkipDiscount { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs deleted file mode 100644 index 5b6673f78..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFinancialDetails.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceFinancialDetails : Entity - { - - [DataMember(Name="BatchNbr", EmitDefaultValue=false)] - public StringValue? BatchNbr { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] - public StringValue? CustomerTaxZone { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs deleted file mode 100644 index 884312448..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceFreightDetail.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceFreightDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="FreightAmount", EmitDefaultValue=false)] - public DecimalValue? FreightAmount { get; set; } - - [DataMember(Name="FreightCost", EmitDefaultValue=false)] - public DecimalValue? FreightCost { get; set; } - - [DataMember(Name="LineTotal", EmitDefaultValue=false)] - public DecimalValue? LineTotal { get; set; } - - [DataMember(Name="PremiumFreightAmount", EmitDefaultValue=false)] - public DecimalValue? PremiumFreightAmount { get; set; } - - [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] - public StringValue? ShipmentNbr { get; set; } - - [DataMember(Name="ShipmentType", EmitDefaultValue=false)] - public StringValue? ShipmentType { get; set; } - - [DataMember(Name="TotalFreightAmount", EmitDefaultValue=false)] - public DecimalValue? TotalFreightAmount { get; set; } - - [DataMember(Name="Volume", EmitDefaultValue=false)] - public DecimalValue? Volume { get; set; } - - [DataMember(Name="Weight", EmitDefaultValue=false)] - public DecimalValue? Weight { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs deleted file mode 100644 index 1a3faa7c6..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceSalesPersonDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceSalesPersonDetail : Entity - { - - [DataMember(Name="CommissionableAmount", EmitDefaultValue=false)] - public DecimalValue? CommissionableAmount { get; set; } - - [DataMember(Name="CommissionAmount", EmitDefaultValue=false)] - public DecimalValue? CommissionAmount { get; set; } - - [DataMember(Name="CommissionPercent", EmitDefaultValue=false)] - public DecimalValue? CommissionPercent { get; set; } - - [DataMember(Name="SalespersonID", EmitDefaultValue=false)] - public StringValue? SalespersonID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs deleted file mode 100644 index 88b61c617..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesInvoiceTaxDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesInvoiceTaxDetail : Entity - { - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs deleted file mode 100644 index b7d124418..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrder.cs +++ /dev/null @@ -1,229 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrder : Entity, ITopLevelEntity - { - - [DataMember(Name="Approved", EmitDefaultValue=false)] - public BooleanValue? Approved { get; set; } - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="BillToAddress", EmitDefaultValue=false)] - public Address? BillToAddress { get; set; } - - [DataMember(Name="BillToAddressOverride", EmitDefaultValue=false)] - public BooleanValue? BillToAddressOverride { get; set; } - - [DataMember(Name="BillToAddressValidated", EmitDefaultValue=false)] - public BooleanValue? BillToAddressValidated { get; set; } - - [DataMember(Name="BillToContact", EmitDefaultValue=false)] - public DocContact? BillToContact { get; set; } - - [DataMember(Name="BillToContactOverride", EmitDefaultValue=false)] - public BooleanValue? BillToContactOverride { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="Commissions", EmitDefaultValue=false)] - public Commissions? Commissions { get; set; } - - [DataMember(Name="ContactID", EmitDefaultValue=false)] - public StringValue? ContactID { get; set; } - - [DataMember(Name="ControlTotal", EmitDefaultValue=false)] - public DecimalValue? ControlTotal { get; set; } - - [DataMember(Name="CreditHold", EmitDefaultValue=false)] - public BooleanValue? CreditHold { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrencyRateTypeID { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DestinationWarehouseID", EmitDefaultValue=false)] - public StringValue? DestinationWarehouseID { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="DisableAutomaticDiscountUpdate", EmitDefaultValue=false)] - public BooleanValue? DisableAutomaticDiscountUpdate { get; set; } - - [DataMember(Name="DisableAutomaticTaxCalculation", EmitDefaultValue=false)] - public BooleanValue? DisableAutomaticTaxCalculation { get; set; } - - [DataMember(Name="DiscountDetails", EmitDefaultValue=false)] - public List? DiscountDetails { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - [DataMember(Name="FinancialSettings", EmitDefaultValue=false)] - public FinancialSettings? FinancialSettings { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="IsTaxValid", EmitDefaultValue=false)] - public BooleanValue? IsTaxValid { get; set; } - - [DataMember(Name="LastModified", EmitDefaultValue=false)] - public DateTimeValue? LastModified { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="MaxRiskScore", EmitDefaultValue=false)] - public DecimalValue? MaxRiskScore { get; set; } - - [DataMember(Name="OrderedQty", EmitDefaultValue=false)] - public DecimalValue? OrderedQty { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderRisks", EmitDefaultValue=false)] - public List? OrderRisks { get; set; } - - [DataMember(Name="OrderTotal", EmitDefaultValue=false)] - public DecimalValue? OrderTotal { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="Payments", EmitDefaultValue=false)] - public List? Payments { get; set; } - - [DataMember(Name="PreferredWarehouseID", EmitDefaultValue=false)] - public StringValue? PreferredWarehouseID { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? ReciprocalRate { get; set; } - - [DataMember(Name="Relations", EmitDefaultValue=false)] - public List? Relations { get; set; } - - [DataMember(Name="RequestedOn", EmitDefaultValue=false)] - public DateTimeValue? RequestedOn { get; set; } - - [DataMember(Name="Shipments", EmitDefaultValue=false)] - public List? Shipments { get; set; } - - [DataMember(Name="ShippingSettings", EmitDefaultValue=false)] - public ShippingSettings? ShippingSettings { get; set; } - - [DataMember(Name="ShipToAddress", EmitDefaultValue=false)] - public Address? ShipToAddress { get; set; } - - [DataMember(Name="ShipToAddressOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToAddressOverride { get; set; } - - [DataMember(Name="ShipToAddressValidated", EmitDefaultValue=false)] - public BooleanValue? ShipToAddressValidated { get; set; } - - [DataMember(Name="ShipToContact", EmitDefaultValue=false)] - public DocContact? ShipToContact { get; set; } - - [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToContactOverride { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Totals", EmitDefaultValue=false)] - public Totals? Totals { get; set; } - - [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] - public DecimalValue? VATExemptTotal { get; set; } - - [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] - public DecimalValue? VATTaxableTotal { get; set; } - - [DataMember(Name="ExternalOrderOriginal", EmitDefaultValue=false)] - public BooleanValue? ExternalOrderOriginal { get; set; } - - [DataMember(Name="ExternalRefundRef", EmitDefaultValue=false)] - public StringValue? ExternalRefundRef { get; set; } - - [DataMember(Name="WillCall", EmitDefaultValue=false)] - public BooleanValue? WillCall { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="UsrExternalOrderOriginal", EmitDefaultValue=false)] - public BooleanValue? UsrExternalOrderOriginal { get; set; } - - [DataMember(Name="ExternalOrderOrigin", EmitDefaultValue=false)] - public StringValue? ExternalOrderOrigin { get; set; } - - [DataMember(Name="ExternalOrderSource", EmitDefaultValue=false)] - public StringValue? ExternalOrderSource { get; set; } - - [DataMember(Name="TaxCalcMode", EmitDefaultValue=false)] - public StringValue? TaxCalcMode { get; set; } - - [DataMember(Name="CreatedDate", EmitDefaultValue=false)] - public DateTimeValue? CreatedDate { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs deleted file mode 100644 index 2b2ebdbdd..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderCreditCardTransactionDetail.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderCreditCardTransactionDetail : Entity - { - - [DataMember(Name="AuthNbr", EmitDefaultValue=false)] - public StringValue? AuthNbr { get; set; } - - [DataMember(Name="ExtProfileId", EmitDefaultValue=false)] - public StringValue? ExtProfileId { get; set; } - - [DataMember(Name="NeedValidation", EmitDefaultValue=false)] - public BooleanValue? NeedValidation { get; set; } - - [DataMember(Name="TranDate", EmitDefaultValue=false)] - public DateTimeValue? TranDate { get; set; } - - [DataMember(Name="TranNbr", EmitDefaultValue=false)] - public StringValue? TranNbr { get; set; } - - [DataMember(Name="TranType", EmitDefaultValue=false)] - public StringValue? TranType { get; set; } - - [DataMember(Name="CardType", EmitDefaultValue=false)] - public StringValue? CardType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs deleted file mode 100644 index d74a8cdde..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetail.cs +++ /dev/null @@ -1,201 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="AlternateID", EmitDefaultValue=false)] - public StringValue? AlternateID { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="AutoCreateIssue", EmitDefaultValue=false)] - public BooleanValue? AutoCreateIssue { get; set; } - - [DataMember(Name="AverageCost", EmitDefaultValue=false)] - public DecimalValue? AverageCost { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CalculateDiscountsOnImport", EmitDefaultValue=false)] - public BooleanValue? CalculateDiscountsOnImport { get; set; } - - [DataMember(Name="Commissionable", EmitDefaultValue=false)] - public BooleanValue? Commissionable { get; set; } - - [DataMember(Name="Completed", EmitDefaultValue=false)] - public BooleanValue? Completed { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CustomerOrderNbr", EmitDefaultValue=false)] - public StringValue? CustomerOrderNbr { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountedUnitPrice", EmitDefaultValue=false)] - public DecimalValue? DiscountedUnitPrice { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="ExtendedPrice", EmitDefaultValue=false)] - public DecimalValue? ExtendedPrice { get; set; } - - [DataMember(Name="FreeItem", EmitDefaultValue=false)] - public BooleanValue? FreeItem { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="InvoiceLineNbr", EmitDefaultValue=false)] - public IntValue? InvoiceLineNbr { get; set; } - - [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] - public StringValue? InvoiceNbr { get; set; } - - [DataMember(Name="InvoiceType", EmitDefaultValue=false)] - public StringValue? InvoiceType { get; set; } - - [DataMember(Name="LastModifiedDate", EmitDefaultValue=false)] - public StringValue? LastModifiedDate { get; set; } - - [DataMember(Name="LineDescription", EmitDefaultValue=false)] - public StringValue? LineDescription { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LineType", EmitDefaultValue=false)] - public StringValue? LineType { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="MarkForPO", EmitDefaultValue=false)] - public BooleanValue? MarkForPO { get; set; } - - [DataMember(Name="OpenQty", EmitDefaultValue=false)] - public DecimalValue? OpenQty { get; set; } - - [DataMember(Name="Operation", EmitDefaultValue=false)] - public StringValue? Operation { get; set; } - - [DataMember(Name="OrderQty", EmitDefaultValue=false)] - public DecimalValue? OrderQty { get; set; } - - [DataMember(Name="OvershipThreshold", EmitDefaultValue=false)] - public DecimalValue? OvershipThreshold { get; set; } - - [DataMember(Name="POSource", EmitDefaultValue=false)] - public StringValue? POSource { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="PurchaseWarehouse", EmitDefaultValue=false)] - public StringValue? PurchaseWarehouse { get; set; } - - [DataMember(Name="PurchasingDetails", EmitDefaultValue=false)] - public List? PurchasingDetails { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="QtyOnShipments", EmitDefaultValue=false)] - public DecimalValue? QtyOnShipments { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="RequestedOn", EmitDefaultValue=false)] - public DateTimeValue? RequestedOn { get; set; } - - [DataMember(Name="SalespersonID", EmitDefaultValue=false)] - public StringValue? SalespersonID { get; set; } - - [DataMember(Name="SchedOrderDate", EmitDefaultValue=false)] - public DateTimeValue? SchedOrderDate { get; set; } - - [DataMember(Name="ShipOn", EmitDefaultValue=false)] - public DateTimeValue? ShipOn { get; set; } - - [DataMember(Name="ShippingRule", EmitDefaultValue=false)] - public StringValue? ShippingRule { get; set; } - - [DataMember(Name="ShipToLocation", EmitDefaultValue=false)] - public StringValue? ShipToLocation { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="UnbilledAmount", EmitDefaultValue=false)] - public DecimalValue? UnbilledAmount { get; set; } - - [DataMember(Name="UndershipThreshold", EmitDefaultValue=false)] - public DecimalValue? UndershipThreshold { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - [DataMember(Name="AssociatedOrderLineNbr", EmitDefaultValue=false)] - public IntValue? AssociatedOrderLineNbr { get; set; } - - [DataMember(Name="GiftMessage", EmitDefaultValue=false)] - public StringValue? GiftMessage { get; set; } - - [DataMember(Name="ManualPrice", EmitDefaultValue=false)] - public BooleanValue? ManualPrice { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs deleted file mode 100644 index 8a9235de2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderDetailAllocation.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderDetailAllocation : Entity - { - - [DataMember(Name="Allocated", EmitDefaultValue=false)] - public BooleanValue? Allocated { get; set; } - - [DataMember(Name="AllocWarehouseID", EmitDefaultValue=false)] - public StringValue? AllocWarehouseID { get; set; } - - [DataMember(Name="Completed", EmitDefaultValue=false)] - public BooleanValue? Completed { get; set; } - - [DataMember(Name="CustomerOrderNbr", EmitDefaultValue=false)] - public StringValue? CustomerOrderNbr { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="QtyOnShipments", EmitDefaultValue=false)] - public DecimalValue? QtyOnShipments { get; set; } - - [DataMember(Name="QtyReceived", EmitDefaultValue=false)] - public DecimalValue? QtyReceived { get; set; } - - [DataMember(Name="RelatedDocument", EmitDefaultValue=false)] - public StringValue? RelatedDocument { get; set; } - - [DataMember(Name="SchedOrderDate", EmitDefaultValue=false)] - public DateTimeValue? SchedOrderDate { get; set; } - - [DataMember(Name="ShipOn", EmitDefaultValue=false)] - public DateTimeValue? ShipOn { get; set; } - - [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] - public IntValue? SplitLineNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs deleted file mode 100644 index 8f43e3583..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderPayment.cs +++ /dev/null @@ -1,96 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderPayment : Entity - { - - [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] - public DateTimeValue? ApplicationDate { get; set; } - - [DataMember(Name="AppliedToOrder", EmitDefaultValue=false)] - public DecimalValue? AppliedToOrder { get; set; } - - [DataMember(Name="Authorize", EmitDefaultValue=false)] - public BooleanValue? Authorize { get; set; } - - [DataMember(Name="Balance", EmitDefaultValue=false)] - public DecimalValue? Balance { get; set; } - - [DataMember(Name="CardAccountNbr", EmitDefaultValue=false)] - public StringValue? CardAccountNbr { get; set; } - - [DataMember(Name="Capture", EmitDefaultValue=false)] - public BooleanValue? Capture { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="CreditCardTransactionInfo", EmitDefaultValue=false)] - public List? CreditCardTransactionInfo { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocType", EmitDefaultValue=false)] - public StringValue? DocType { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OrigTransactionNbr", EmitDefaultValue=false)] - public StringValue? OrigTransactionNbr { get; set; } - - [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] - public DecimalValue? PaymentAmount { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="ProcessingCenterID", EmitDefaultValue=false)] - public StringValue? ProcessingCenterID { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Refund", EmitDefaultValue=false)] - public BooleanValue? Refund { get; set; } - - [DataMember(Name="SaveCard", EmitDefaultValue=false)] - public BooleanValue? SaveCard { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TransferredtoInvoice", EmitDefaultValue=false)] - public DecimalValue? TransferredtoInvoice { get; set; } - - [DataMember(Name="ValidateCCRefundOrigTransaction", EmitDefaultValue=false)] - public BooleanValue? ValidateCCRefundOrigTransaction { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs deleted file mode 100644 index 0ffa2e510..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrderShipment.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrderShipment : Entity - { - - [DataMember(Name="InventoryDocType", EmitDefaultValue=false)] - public StringValue? InventoryDocType { get; set; } - - [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] - public StringValue? InventoryRefNbr { get; set; } - - [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] - public StringValue? InvoiceNbr { get; set; } - - [DataMember(Name="InvoiceType", EmitDefaultValue=false)] - public StringValue? InvoiceType { get; set; } - - [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] - public DateTimeValue? ShipmentDate { get; set; } - - [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] - public StringValue? ShipmentNbr { get; set; } - - [DataMember(Name="ShipmentType", EmitDefaultValue=false)] - public StringValue? ShipmentType { get; set; } - - [DataMember(Name="ShippedQty", EmitDefaultValue=false)] - public DecimalValue? ShippedQty { get; set; } - - [DataMember(Name="ShippedVolume", EmitDefaultValue=false)] - public DecimalValue? ShippedVolume { get; set; } - - [DataMember(Name="ShippedWeight", EmitDefaultValue=false)] - public DecimalValue? ShippedWeight { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="InventoryNoteID", EmitDefaultValue=false)] - public GuidValue? InventoryNoteID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OrderNoteID", EmitDefaultValue=false)] - public GuidValue? OrderNoteID { get; set; } - - [DataMember(Name="ShippingNoteID", EmitDefaultValue=false)] - public GuidValue? ShippingNoteID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs deleted file mode 100644 index 8ac48a573..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesOrdersDiscountDetails.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesOrdersDiscountDetails : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountableAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountableAmount { get; set; } - - [DataMember(Name="DiscountableQty", EmitDefaultValue=false)] - public DecimalValue? DiscountableQty { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="ExternalDiscountCode", EmitDefaultValue=false)] - public StringValue? ExternalDiscountCode { get; set; } - - [DataMember(Name="FreeItem", EmitDefaultValue=false)] - public StringValue? FreeItem { get; set; } - - [DataMember(Name="FreeItemQty", EmitDefaultValue=false)] - public DecimalValue? FreeItemQty { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="SequenceID", EmitDefaultValue=false)] - public StringValue? SequenceID { get; set; } - - [DataMember(Name="SkipDiscount", EmitDefaultValue=false)] - public BooleanValue? SkipDiscount { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs deleted file mode 100644 index 8edf442c5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPersonDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesPersonDetail : Entity - { - - [DataMember(Name="CommissionableAmount", EmitDefaultValue=false)] - public DecimalValue? CommissionableAmount { get; set; } - - [DataMember(Name="CommissionAmount", EmitDefaultValue=false)] - public DecimalValue? CommissionAmount { get; set; } - - [DataMember(Name="CommissionPercent", EmitDefaultValue=false)] - public DecimalValue? CommissionPercent { get; set; } - - [DataMember(Name="SalespersonID", EmitDefaultValue=false)] - public StringValue? SalespersonID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs deleted file mode 100644 index caed4fdd9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceDetail.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesPriceDetail : Entity - { - - [DataMember(Name="BreakQty", EmitDefaultValue=false)] - public DecimalValue? BreakQty { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Price", EmitDefaultValue=false)] - public DecimalValue? Price { get; set; } - - [DataMember(Name="PriceCode", EmitDefaultValue=false)] - public StringValue? PriceCode { get; set; } - - [DataMember(Name="PriceType", EmitDefaultValue=false)] - public StringValue? PriceType { get; set; } - - [DataMember(Name="Promotion", EmitDefaultValue=false)] - public BooleanValue? Promotion { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="Tax", EmitDefaultValue=false)] - public StringValue? Tax { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] - public StringValue? TaxCalculationMode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs deleted file mode 100644 index 011bc4404..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPriceWorksheet.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesPriceWorksheet : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OverwriteOverlappingPrices", EmitDefaultValue=false)] - public BooleanValue? OverwriteOverlappingPrices { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="SalesPrices", EmitDefaultValue=false)] - public List? SalesPrices { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs deleted file mode 100644 index 40ba439b2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesInquiry.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesPricesInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="EffectiveAsOf", EmitDefaultValue=false)] - public DateTimeValue? EffectiveAsOf { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="ItemClassID", EmitDefaultValue=false)] - public StringValue? ItemClassID { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="PriceCode", EmitDefaultValue=false)] - public StringValue? PriceCode { get; set; } - - [DataMember(Name="PriceManager", EmitDefaultValue=false)] - public StringValue? PriceManager { get; set; } - - [DataMember(Name="PriceManagerIsMe", EmitDefaultValue=false)] - public BooleanValue? PriceManagerIsMe { get; set; } - - [DataMember(Name="PriceType", EmitDefaultValue=false)] - public StringValue? PriceType { get; set; } - - [DataMember(Name="PriceWorkgroup", EmitDefaultValue=false)] - public StringValue? PriceWorkgroup { get; set; } - - [DataMember(Name="PriceWorkgroupIsMine", EmitDefaultValue=false)] - public BooleanValue? PriceWorkgroupIsMine { get; set; } - - [DataMember(Name="SalesPriceDetails", EmitDefaultValue=false)] - public List? SalesPriceDetails { get; set; } - - [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] - public StringValue? TaxCalculationMode { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs deleted file mode 100644 index b0d11048c..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SalesPricesWorksheetDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SalesPricesWorksheetDetail : Entity - { - - [DataMember(Name="BreakQty", EmitDefaultValue=false)] - public DecimalValue? BreakQty { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineID", EmitDefaultValue=false)] - public IntValue? LineID { get; set; } - - [DataMember(Name="PendingPrice", EmitDefaultValue=false)] - public DecimalValue? PendingPrice { get; set; } - - [DataMember(Name="PriceCode", EmitDefaultValue=false)] - public StringValue? PriceCode { get; set; } - - [DataMember(Name="PriceType", EmitDefaultValue=false)] - public StringValue? PriceType { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="SourcePrice", EmitDefaultValue=false)] - public DecimalValue? SourcePrice { get; set; } - - [DataMember(Name="Tax", EmitDefaultValue=false)] - public StringValue? Tax { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs deleted file mode 100644 index bfba71fe2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Salesperson.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Salesperson : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="DefaultCommission", EmitDefaultValue=false)] - public DecimalValue? DefaultCommission { get; set; } - - [DataMember(Name="IsActive", EmitDefaultValue=false)] - public BooleanValue? IsActive { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="SalespersonID", EmitDefaultValue=false)] - public StringValue? SalespersonID { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs deleted file mode 100644 index ea17b83ef..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ServiceOrder.cs +++ /dev/null @@ -1,148 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ServiceOrder : Entity, ITopLevelEntity - { - - [DataMember(Name="Address", EmitDefaultValue=false)] - public SrvOrdAddress? Address { get; set; } - - [DataMember(Name="AppointmentDuration", EmitDefaultValue=false)] - public StringValue? AppointmentDuration { get; set; } - - [DataMember(Name="Appointments", EmitDefaultValue=false)] - public List? Appointments { get; set; } - - [DataMember(Name="AppointmentsNeeded", EmitDefaultValue=false)] - public BooleanValue? AppointmentsNeeded { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BillableTotal", EmitDefaultValue=false)] - public DecimalValue? BillableTotal { get; set; } - - [DataMember(Name="BranchLocation", EmitDefaultValue=false)] - public StringValue? BranchLocation { get; set; } - - [DataMember(Name="Contact", EmitDefaultValue=false)] - public SrvOrdContact? Contact { get; set; } - - [DataMember(Name="ContractInfo", EmitDefaultValue=false)] - public SrvOrdContractInfo? ContractInfo { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="Customer", EmitDefaultValue=false)] - public StringValue? Customer { get; set; } - - [DataMember(Name="CustomerOrder", EmitDefaultValue=false)] - public StringValue? CustomerOrder { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="DefaultProjectTask", EmitDefaultValue=false)] - public StringValue? DefaultProjectTask { get; set; } - - [DataMember(Name="DefaultStaff", EmitDefaultValue=false)] - public List? DefaultStaff { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="EstimatedDuration", EmitDefaultValue=false)] - public StringValue? EstimatedDuration { get; set; } - - [DataMember(Name="ExternalReference", EmitDefaultValue=false)] - public StringValue? ExternalReference { get; set; } - - [DataMember(Name="FinancialDetails", EmitDefaultValue=false)] - public SrvOrdFinancialDetails? FinancialDetails { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="OtherInformation", EmitDefaultValue=false)] - public SrvOrdOtherInformation? OtherInformation { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - [DataMember(Name="Prepayments", EmitDefaultValue=false)] - public List? Prepayments { get; set; } - - [DataMember(Name="Priority", EmitDefaultValue=false)] - public StringValue? Priority { get; set; } - - [DataMember(Name="Problem", EmitDefaultValue=false)] - public StringValue? Problem { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] - public StringValue? ServiceOrderNbr { get; set; } - - [DataMember(Name="ServiceOrderTotal", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderTotal { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="Severity", EmitDefaultValue=false)] - public StringValue? Severity { get; set; } - - [DataMember(Name="SLA", EmitDefaultValue=false)] - public DateTimeValue? SLA { get; set; } - - [DataMember(Name="SLATime", EmitDefaultValue=false)] - public DateTimeValue? SLATime { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Supervisor", EmitDefaultValue=false)] - public StringValue? Supervisor { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="Totals", EmitDefaultValue=false)] - public SrvOrdTotals? Totals { get; set; } - - [DataMember(Name="WaitingforPurchasedItems", EmitDefaultValue=false)] - public BooleanValue? WaitingforPurchasedItems { get; set; } - - [DataMember(Name="WorkflowStage", EmitDefaultValue=false)] - public StringValue? WorkflowStage { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs deleted file mode 100644 index 95303f301..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SettingsForPR.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SettingsForPR : Entity - { - - [DataMember(Name="ExportScenario", EmitDefaultValue=false)] - public StringValue? ExportScenario { get; set; } - - [DataMember(Name="PRProcessing", EmitDefaultValue=false)] - public StringValue? PRProcessing { get; set; } - - [DataMember(Name="Report", EmitDefaultValue=false)] - public StringValue? Report { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs deleted file mode 100644 index 784a7a011..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipToSettings.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipToSettings : Entity - { - - [DataMember(Name="ShipToAddress", EmitDefaultValue=false)] - public Address? ShipToAddress { get; set; } - - [DataMember(Name="ShipToAddressOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToAddressOverride { get; set; } - - [DataMember(Name="ShipToContact", EmitDefaultValue=false)] - public DocContact? ShipToContact { get; set; } - - [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToContactOverride { get; set; } - - [DataMember(Name="Validated", EmitDefaultValue=false)] - public BooleanValue? Validated { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs deleted file mode 100644 index e5252221d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipVia.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipVia : Entity, ITopLevelEntity - { - - [DataMember(Name="CalculationMethod", EmitDefaultValue=false)] - public StringValue? CalculationMethod { get; set; } - - [DataMember(Name="Calendar", EmitDefaultValue=false)] - public StringValue? Calendar { get; set; } - - [DataMember(Name="CarrierID", EmitDefaultValue=false)] - public StringValue? CarrierID { get; set; } - - [DataMember(Name="CommonCarrier", EmitDefaultValue=false)] - public BooleanValue? CommonCarrier { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="FreightExpenseAccount", EmitDefaultValue=false)] - public StringValue? FreightExpenseAccount { get; set; } - - [DataMember(Name="FreightExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? FreightExpenseSubaccount { get; set; } - - [DataMember(Name="FreightRates", EmitDefaultValue=false)] - public List? FreightRates { get; set; } - - [DataMember(Name="FreightSalesAccount", EmitDefaultValue=false)] - public StringValue? FreightSalesAccount { get; set; } - - [DataMember(Name="FreightSalesSubaccount", EmitDefaultValue=false)] - public StringValue? FreightSalesSubaccount { get; set; } - - [DataMember(Name="Packages", EmitDefaultValue=false)] - public List? Packages { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs deleted file mode 100644 index a815c7cdf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipViaFreightRate.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipViaFreightRate : Entity - { - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="Rate", EmitDefaultValue=false)] - public DecimalValue? Rate { get; set; } - - [DataMember(Name="Volume", EmitDefaultValue=false)] - public DecimalValue? Volume { get; set; } - - [DataMember(Name="Weight", EmitDefaultValue=false)] - public DecimalValue? Weight { get; set; } - - [DataMember(Name="ZoneID", EmitDefaultValue=false)] - public StringValue? ZoneID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs deleted file mode 100644 index 6165442ec..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Shipment.cs +++ /dev/null @@ -1,163 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Shipment : Entity, ITopLevelEntity - { - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="ControlQty", EmitDefaultValue=false)] - public DecimalValue? ControlQty { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrencyRateTypeID { get; set; } - - [DataMember(Name="CurrencyViewState", EmitDefaultValue=false)] - public BooleanValue? CurrencyViewState { get; set; } - - [DataMember(Name="CustomerID", EmitDefaultValue=false)] - public StringValue? CustomerID { get; set; } - - [DataMember(Name="CreateNewShipmentForEveryOrder", EmitDefaultValue=false)] - public BooleanValue? CreateNewShipmentForEveryOrder { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="FOBPoint", EmitDefaultValue=false)] - public StringValue? FOBPoint { get; set; } - - [DataMember(Name="OverrideFreightPrice", EmitDefaultValue=false)] - public BooleanValue? OverrideFreightPrice { get; set; } - - [DataMember(Name="FreightPrice", EmitDefaultValue=false)] - public DecimalValue? FreightPrice { get; set; } - - [DataMember(Name="FreightCost", EmitDefaultValue=false)] - public DecimalValue? FreightCost { get; set; } - - [DataMember(Name="FreightCurrencyID", EmitDefaultValue=false)] - public StringValue? FreightCurrencyID { get; set; } - - [DataMember(Name="GroundCollect", EmitDefaultValue=false)] - public BooleanValue? GroundCollect { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="Insurance", EmitDefaultValue=false)] - public BooleanValue? Insurance { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="Operation", EmitDefaultValue=false)] - public StringValue? Operation { get; set; } - - [DataMember(Name="Orders", EmitDefaultValue=false)] - public List? Orders { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="PackageCount", EmitDefaultValue=false)] - public IntValue? PackageCount { get; set; } - - [DataMember(Name="Packages", EmitDefaultValue=false)] - public List? Packages { get; set; } - - [DataMember(Name="PackageWeight", EmitDefaultValue=false)] - public DecimalValue? PackageWeight { get; set; } - - [DataMember(Name="Picked", EmitDefaultValue=false)] - public BooleanValue? Picked { get; set; } - - [DataMember(Name="ReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? ReciprocalRate { get; set; } - - [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] - public BooleanValue? ResidentialDelivery { get; set; } - - [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] - public BooleanValue? SaturdayDelivery { get; set; } - - [DataMember(Name="ShipmentDate", EmitDefaultValue=false)] - public DateTimeValue? ShipmentDate { get; set; } - - [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] - public StringValue? ShipmentNbr { get; set; } - - [DataMember(Name="ShippedQty", EmitDefaultValue=false)] - public DecimalValue? ShippedQty { get; set; } - - [DataMember(Name="ShippedVolume", EmitDefaultValue=false)] - public DecimalValue? ShippedVolume { get; set; } - - [DataMember(Name="ShippedWeight", EmitDefaultValue=false)] - public DecimalValue? ShippedWeight { get; set; } - - [DataMember(Name="ShippingSettings", EmitDefaultValue=false)] - public ShipToSettings? ShippingSettings { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShippingZoneID", EmitDefaultValue=false)] - public StringValue? ShippingZoneID { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="ToWarehouseID", EmitDefaultValue=false)] - public StringValue? ToWarehouseID { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UseCustomersAccount", EmitDefaultValue=false)] - public BooleanValue? UseCustomersAccount { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] - public StringValue? WorkgroupID { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs deleted file mode 100644 index d21936d74..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetail.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipmentDetail : Entity - { - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="FreeItem", EmitDefaultValue=false)] - public BooleanValue? FreeItem { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="OpenQty", EmitDefaultValue=false)] - public DecimalValue? OpenQty { get; set; } - - [DataMember(Name="OrderedQty", EmitDefaultValue=false)] - public DecimalValue? OrderedQty { get; set; } - - [DataMember(Name="OrderLineNbr", EmitDefaultValue=false)] - public IntValue? OrderLineNbr { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="OriginalQty", EmitDefaultValue=false)] - public DecimalValue? OriginalQty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="ShippedQty", EmitDefaultValue=false)] - public DecimalValue? ShippedQty { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs deleted file mode 100644 index 09bb38d8f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentDetailAllocation.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipmentDetailAllocation : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="SplitLineNbr", EmitDefaultValue=false)] - public IntValue? SplitLineNbr { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs deleted file mode 100644 index ad6ac2e9b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentOrderDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipmentOrderDetail : Entity - { - - [DataMember(Name="InventoryDocType", EmitDefaultValue=false)] - public StringValue? InventoryDocType { get; set; } - - [DataMember(Name="InventoryRefNbr", EmitDefaultValue=false)] - public StringValue? InventoryRefNbr { get; set; } - - [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] - public StringValue? InvoiceNbr { get; set; } - - [DataMember(Name="InvoiceType", EmitDefaultValue=false)] - public StringValue? InvoiceType { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="ShipmentNbr", EmitDefaultValue=false)] - public StringValue? ShipmentNbr { get; set; } - - [DataMember(Name="ShipmentType", EmitDefaultValue=false)] - public StringValue? ShipmentType { get; set; } - - [DataMember(Name="ShippedQty", EmitDefaultValue=false)] - public DecimalValue? ShippedQty { get; set; } - - [DataMember(Name="ShippedVolume", EmitDefaultValue=false)] - public DecimalValue? ShippedVolume { get; set; } - - [DataMember(Name="ShippedWeight", EmitDefaultValue=false)] - public DecimalValue? ShippedWeight { get; set; } - - [DataMember(Name="OrderNoteID", EmitDefaultValue=false)] - public GuidValue? OrderNoteID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs deleted file mode 100644 index ae3c033ca..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackage.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipmentPackage : Entity - { - - [DataMember(Name="BoxID", EmitDefaultValue=false)] - public StringValue? BoxID { get; set; } - - [DataMember(Name="CODAmount", EmitDefaultValue=false)] - public DecimalValue? CODAmount { get; set; } - - [DataMember(Name="Confirmed", EmitDefaultValue=false)] - public BooleanValue? Confirmed { get; set; } - - [DataMember(Name="CustomRefNbr1", EmitDefaultValue=false)] - public StringValue? CustomRefNbr1 { get; set; } - - [DataMember(Name="CustomRefNbr2", EmitDefaultValue=false)] - public StringValue? CustomRefNbr2 { get; set; } - - [DataMember(Name="DeclaredValue", EmitDefaultValue=false)] - public DecimalValue? DeclaredValue { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="TrackingNbr", EmitDefaultValue=false)] - public StringValue? TrackingNbr { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Weight", EmitDefaultValue=false)] - public DecimalValue? Weight { get; set; } - - [DataMember(Name="Length", EmitDefaultValue=false)] - public DecimalValue? Length { get; set; } - - [DataMember(Name="Width", EmitDefaultValue=false)] - public DecimalValue? Width { get; set; } - - [DataMember(Name="Height", EmitDefaultValue=false)] - public DecimalValue? Height { get; set; } - - [DataMember(Name="PackageContents", EmitDefaultValue=false)] - public List? PackageContents { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs deleted file mode 100644 index 5141f6c65..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShipmentPackageDetail.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShipmentPackageDetail : Entity - { - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="OrigOrderNbr", EmitDefaultValue=false)] - public StringValue? OrigOrderNbr { get; set; } - - [DataMember(Name="OrigOrderType", EmitDefaultValue=false)] - public StringValue? OrigOrderType { get; set; } - - [DataMember(Name="Quantity", EmitDefaultValue=false)] - public DecimalValue? Quantity { get; set; } - - [DataMember(Name="ShipmentSplitLineNbr", EmitDefaultValue=false)] - public IntValue? ShipmentSplitLineNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs deleted file mode 100644 index 8f287f751..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingBox.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShippingBox : Entity, ITopLevelEntity - { - - [DataMember(Name="ActiveByDefault", EmitDefaultValue=false)] - public BooleanValue? ActiveByDefault { get; set; } - - [DataMember(Name="BoxID", EmitDefaultValue=false)] - public StringValue? BoxID { get; set; } - - [DataMember(Name="BoxWeight", EmitDefaultValue=false)] - public DecimalValue? BoxWeight { get; set; } - - [DataMember(Name="CarriersPackage", EmitDefaultValue=false)] - public StringValue? CarriersPackage { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Height", EmitDefaultValue=false)] - public DecimalValue? Height { get; set; } - - [DataMember(Name="Length", EmitDefaultValue=false)] - public DecimalValue? Length { get; set; } - - [DataMember(Name="MaxVolume", EmitDefaultValue=false)] - public DecimalValue? MaxVolume { get; set; } - - [DataMember(Name="MaxWeight", EmitDefaultValue=false)] - public DecimalValue? MaxWeight { get; set; } - - [DataMember(Name="VolumeUOM", EmitDefaultValue=false)] - public StringValue? VolumeUOM { get; set; } - - [DataMember(Name="WeightUOM", EmitDefaultValue=false)] - public StringValue? WeightUOM { get; set; } - - [DataMember(Name="Width", EmitDefaultValue=false)] - public DecimalValue? Width { get; set; } - - [DataMember(Name="LinearUOM", EmitDefaultValue=false)] - public StringValue? LinearUOM { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs deleted file mode 100644 index 7d8017e00..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingInstructions.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShippingInstructions : Entity - { - - [DataMember(Name="ShippingDestinationType", EmitDefaultValue=false)] - public StringValue? ShippingDestinationType { get; set; } - - [DataMember(Name="ShippingLocation", EmitDefaultValue=false)] - public StringValue? ShippingLocation { get; set; } - - [DataMember(Name="ShipTo", EmitDefaultValue=false)] - public StringValue? ShipTo { get; set; } - - [DataMember(Name="ShipToAddress", EmitDefaultValue=false)] - public Address? ShipToAddress { get; set; } - - [DataMember(Name="ShipToAddressOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToAddressOverride { get; set; } - - [DataMember(Name="ShipToAddressValidated", EmitDefaultValue=false)] - public BooleanValue? ShipToAddressValidated { get; set; } - - [DataMember(Name="ShipToContact", EmitDefaultValue=false)] - public DocContact? ShipToContact { get; set; } - - [DataMember(Name="ShipToContactOverride", EmitDefaultValue=false)] - public BooleanValue? ShipToContactOverride { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs deleted file mode 100644 index 72c65bea1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingSettings.cs +++ /dev/null @@ -1,96 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShippingSettings : Entity - { - - [DataMember(Name="CancelByDate", EmitDefaultValue=false)] - public DateTimeValue? CancelByDate { get; set; } - - [DataMember(Name="Canceled", EmitDefaultValue=false)] - public BooleanValue? Canceled { get; set; } - - [DataMember(Name="FOBPoint", EmitDefaultValue=false)] - public StringValue? FOBPoint { get; set; } - - [DataMember(Name="GroundCollect", EmitDefaultValue=false)] - public BooleanValue? GroundCollect { get; set; } - - [DataMember(Name="Insurance", EmitDefaultValue=false)] - public BooleanValue? Insurance { get; set; } - - [DataMember(Name="PreferredWarehouseID", EmitDefaultValue=false)] - public StringValue? PreferredWarehouseID { get; set; } - - [DataMember(Name="Priority", EmitDefaultValue=false)] - public ShortValue? Priority { get; set; } - - [DataMember(Name="ResidentialDelivery", EmitDefaultValue=false)] - public BooleanValue? ResidentialDelivery { get; set; } - - [DataMember(Name="SaturdayDelivery", EmitDefaultValue=false)] - public BooleanValue? SaturdayDelivery { get; set; } - - [DataMember(Name="ScheduledShipmentDate", EmitDefaultValue=false)] - public DateTimeValue? ScheduledShipmentDate { get; set; } - - [DataMember(Name="ShippingRule", EmitDefaultValue=false)] - public StringValue? ShippingRule { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShippingZone", EmitDefaultValue=false)] - public StringValue? ShippingZone { get; set; } - - [DataMember(Name="ShipSeparately", EmitDefaultValue=false)] - public BooleanValue? ShipSeparately { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="ShopForRates", EmitDefaultValue=false)] - public ShopForRates? ShopForRates { get; set; } - - [DataMember(Name="UseCustomersAccount", EmitDefaultValue=false)] - public BooleanValue? UseCustomersAccount { get; set; } - - [DataMember(Name="FreightPrice", EmitDefaultValue=false)] - public DecimalValue? FreightPrice { get; set; } - - [DataMember(Name="FreightCost", EmitDefaultValue=false)] - public DecimalValue? FreightCost { get; set; } - - [DataMember(Name="FreightCostIsuptodate", EmitDefaultValue=false)] - public BooleanValue? FreightCostIsuptodate { get; set; } - - [DataMember(Name="FreightTaxCategory", EmitDefaultValue=false)] - public StringValue? FreightTaxCategory { get; set; } - - [DataMember(Name="OrderVolume", EmitDefaultValue=false)] - public DecimalValue? OrderVolume { get; set; } - - [DataMember(Name="OrderWeight", EmitDefaultValue=false)] - public DecimalValue? OrderWeight { get; set; } - - [DataMember(Name="OverrideFreightPrice", EmitDefaultValue=false)] - public BooleanValue? OverrideFreightPrice { get; set; } - - [DataMember(Name="PackageWeight", EmitDefaultValue=false)] - public DecimalValue? PackageWeight { get; set; } - - [DataMember(Name="PremiumFreight", EmitDefaultValue=false)] - public DecimalValue? PremiumFreight { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs deleted file mode 100644 index 3646e2e41..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTerm.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShippingTerm : Entity, ITopLevelEntity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="TermID", EmitDefaultValue=false)] - public StringValue? TermID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs deleted file mode 100644 index 9ddc5c961..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingTermDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShippingTermDetail : Entity - { - - [DataMember(Name="BreakAmount", EmitDefaultValue=false)] - public DecimalValue? BreakAmount { get; set; } - - [DataMember(Name="FreightCost", EmitDefaultValue=false)] - public DecimalValue? FreightCost { get; set; } - - [DataMember(Name="InvoiceAmount", EmitDefaultValue=false)] - public DecimalValue? InvoiceAmount { get; set; } - - [DataMember(Name="LineHandling", EmitDefaultValue=false)] - public DecimalValue? LineHandling { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="ShippingandHandling", EmitDefaultValue=false)] - public DecimalValue? ShippingandHandling { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs deleted file mode 100644 index 7b58dac12..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShippingZones.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShippingZones : Entity, ITopLevelEntity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ZoneID", EmitDefaultValue=false)] - public StringValue? ZoneID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs deleted file mode 100644 index aa2f5876f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopForRates.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShopForRates : Entity - { - - [DataMember(Name="IsManualPackage", EmitDefaultValue=false)] - public BooleanValue? IsManualPackage { get; set; } - - [DataMember(Name="OrderWeight", EmitDefaultValue=false)] - public DecimalValue? OrderWeight { get; set; } - - [DataMember(Name="PackageWeight", EmitDefaultValue=false)] - public DecimalValue? PackageWeight { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs deleted file mode 100644 index b5282a110..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/ShopifyStore.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class ShopifyStore : Entity, ITopLevelEntity - { - - [DataMember(Name="AccessToken", EmitDefaultValue=false)] - public StringValue? AccessToken { get; set; } - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="APIKey", EmitDefaultValue=false)] - public StringValue? APIKey { get; set; } - - [DataMember(Name="APIPassword", EmitDefaultValue=false)] - public StringValue? APIPassword { get; set; } - - [DataMember(Name="Connector", EmitDefaultValue=false)] - public StringValue? Connector { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="SharedSecret", EmitDefaultValue=false)] - public StringValue? SharedSecret { get; set; } - - [DataMember(Name="StoreAdminURL", EmitDefaultValue=false)] - public StringValue? StoreAdminURL { get; set; } - - [DataMember(Name="StoreName", EmitDefaultValue=false)] - public StringValue? StoreName { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs deleted file mode 100644 index ecaa6394e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionFile.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SolutionFile : Entity - { - [DataMember(Name = "Comment", EmitDefaultValue = false)] - public StringValue? Comment { get; set; } - - [DataMember(Name = "Name", EmitDefaultValue = false)] - public StringValue? Name { get; set; } - - [DataMember(Name = "FileType", EmitDefaultValue = false)] - public StringValue? FileType { get; set; } - - [DataMember(Name = "Initials", EmitDefaultValue = false)] - public StringValue? Initials { get; set; } - - [DataMember(Name = "Main", EmitDefaultValue = false)] - public BooleanValue? Main { get; set; } - - [DataMember(Name = "LineNbr", EmitDefaultValue = false)] - public IntValue? LineNbr { get; set; } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs deleted file mode 100644 index 448e513b8..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SolutionSubmission.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System.Collections.Generic; -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SolutionSubmission : Entity, ITopLevelEntity - { - [DataMember(Name = "AcumaticaBuild", EmitDefaultValue = false)] - public StringValue? AcumaticaBuild { get; set; } - - [DataMember(Name = "AcumaticaVersion", EmitDefaultValue = false)] - public StringValue? AcumaticaVersion { get; set; } - - [DataMember(Name = "ISVSolutionCode", EmitDefaultValue = false)] - public StringValue? ISVSolutionCode { get; set; } - - [DataMember(Name = "Contact", EmitDefaultValue = false)] - public StringValue? Contact { get; set; } - - [DataMember(Name = "BusinessAccount", EmitDefaultValue = false)] - public StringValue? BusinessAccount { get; set; } - - [DataMember(Name = "RelatedCase", EmitDefaultValue = false)] - public StringValue? RelatedCase { get; set; } - - [DataMember(Name = "SolutionVersion", EmitDefaultValue = false)] - public StringValue? SolutionVersion { get; set; } - - [DataMember(Name = "Status", EmitDefaultValue = false)] - public StringValue? Status { get; set; } - - [DataMember(Name = "ValidationDateTime", EmitDefaultValue = false)] - public DateTimeValue? ValidationDateTime { get; set; } - - [DataMember(Name = "CreatedDateTime", EmitDefaultValue = false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name = "LastModifiedDateTime", EmitDefaultValue = false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name = "CreatedBy", EmitDefaultValue = false)] - public StringValue? CreatedBy { get; set; } - - [DataMember(Name = "LastModifiedBy", EmitDefaultValue = false)] - public StringValue? LastModifiedBy { get; set; } - - [DataMember(Name = "ContactEmail", EmitDefaultValue = false)] - public StringValue? ContactEmail { get; set; } - - [DataMember(Name = "SolutionFiles", EmitDefaultValue = false)] - public List? SolutionFiles { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs deleted file mode 100644 index 6bff1f262..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAddress.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdAddress : Entity - { - - [DataMember(Name="AddressLine1", EmitDefaultValue=false)] - public StringValue? AddressLine1 { get; set; } - - [DataMember(Name="AddressLine2", EmitDefaultValue=false)] - public StringValue? AddressLine2 { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="PostalCode", EmitDefaultValue=false)] - public StringValue? PostalCode { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs deleted file mode 100644 index 5967e87f3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAppointments.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdAppointments : Entity - { - - [DataMember(Name="AppointmentNbr", EmitDefaultValue=false)] - public StringValue? AppointmentNbr { get; set; } - - [DataMember(Name="Confirmed", EmitDefaultValue=false)] - public BooleanValue? Confirmed { get; set; } - - [DataMember(Name="ScheduledEndDate", EmitDefaultValue=false)] - public DateTimeValue? ScheduledEndDate { get; set; } - - [DataMember(Name="ScheduledEndTime", EmitDefaultValue=false)] - public DateTimeValue? ScheduledEndTime { get; set; } - - [DataMember(Name="ScheduledStartDate", EmitDefaultValue=false)] - public DateTimeValue? ScheduledStartDate { get; set; } - - [DataMember(Name="ScheduledStartTime", EmitDefaultValue=false)] - public DateTimeValue? ScheduledStartTime { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs deleted file mode 100644 index 9a3d7672d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdAttributes.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdAttributes : Entity - { - - [DataMember(Name="Attribute", EmitDefaultValue=false)] - public StringValue? Attribute { get; set; } - - [DataMember(Name="RefNoteID", EmitDefaultValue=false)] - public GuidValue? RefNoteID { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs deleted file mode 100644 index 69c3f4c2a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContact.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdContact : Entity - { - - [DataMember(Name="Attention", EmitDefaultValue=false)] - public StringValue? Attention { get; set; } - - [DataMember(Name="CompanyName", EmitDefaultValue=false)] - public StringValue? CompanyName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="Phone1", EmitDefaultValue=false)] - public StringValue? Phone1 { get; set; } - - [DataMember(Name="Phone1Type", EmitDefaultValue=false)] - public StringValue? Phone1Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs deleted file mode 100644 index 20717b488..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdContractInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdContractInfo : Entity - { - - [DataMember(Name="ContractPeriod", EmitDefaultValue=false)] - public StringValue? ContractPeriod { get; set; } - - [DataMember(Name="ServiceContract", EmitDefaultValue=false)] - public StringValue? ServiceContract { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs deleted file mode 100644 index a17ee862a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDefaultStaff.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdDefaultStaff : Entity - { - - [DataMember(Name="Comment", EmitDefaultValue=false)] - public StringValue? Comment { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="ServiceLineRef", EmitDefaultValue=false)] - public StringValue? ServiceLineRef { get; set; } - - [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] - public StringValue? ServiceOrderNbr { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="StaffMemberID", EmitDefaultValue=false)] - public StringValue? StaffMemberID { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs deleted file mode 100644 index f6fccdeae..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdDetails.cs +++ /dev/null @@ -1,192 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdDetails : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="AppointmentAmount", EmitDefaultValue=false)] - public DecimalValue? AppointmentAmount { get; set; } - - [DataMember(Name="AppointmentCount", EmitDefaultValue=false)] - public IntValue? AppointmentCount { get; set; } - - [DataMember(Name="AppointmentDuration", EmitDefaultValue=false)] - public StringValue? AppointmentDuration { get; set; } - - [DataMember(Name="AppointmentEstimatedDuration", EmitDefaultValue=false)] - public StringValue? AppointmentEstimatedDuration { get; set; } - - [DataMember(Name="AppointmentQty", EmitDefaultValue=false)] - public DecimalValue? AppointmentQty { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillingRule", EmitDefaultValue=false)] - public StringValue? BillingRule { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="ComponentID", EmitDefaultValue=false)] - public StringValue? ComponentID { get; set; } - - [DataMember(Name="ComponentLineRef", EmitDefaultValue=false)] - public StringValue? ComponentLineRef { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CoveredQty", EmitDefaultValue=false)] - public DecimalValue? CoveredQty { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountPercent", EmitDefaultValue=false)] - public DecimalValue? DiscountPercent { get; set; } - - [DataMember(Name="EquipmentAction", EmitDefaultValue=false)] - public StringValue? EquipmentAction { get; set; } - - [DataMember(Name="EquipmentActionComment", EmitDefaultValue=false)] - public StringValue? EquipmentActionComment { get; set; } - - [DataMember(Name="EstimatedAmount", EmitDefaultValue=false)] - public DecimalValue? EstimatedAmount { get; set; } - - [DataMember(Name="EstimatedDuration", EmitDefaultValue=false)] - public StringValue? EstimatedDuration { get; set; } - - [DataMember(Name="EstimatedQty", EmitDefaultValue=false)] - public DecimalValue? EstimatedQty { get; set; } - - [DataMember(Name="ExtPrice", EmitDefaultValue=false)] - public DecimalValue? ExtPrice { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastReference", EmitDefaultValue=false)] - public StringValue? LastReference { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LineRef", EmitDefaultValue=false)] - public StringValue? LineRef { get; set; } - - [DataMember(Name="LineStatus", EmitDefaultValue=false)] - public StringValue? LineStatus { get; set; } - - [DataMember(Name="LineType", EmitDefaultValue=false)] - public StringValue? LineType { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="ManualPrice", EmitDefaultValue=false)] - public BooleanValue? ManualPrice { get; set; } - - [DataMember(Name="MarkforPO", EmitDefaultValue=false)] - public BooleanValue? MarkforPO { get; set; } - - [DataMember(Name="ModelEquipmentLineRef", EmitDefaultValue=false)] - public StringValue? ModelEquipmentLineRef { get; set; } - - [DataMember(Name="OverageQty", EmitDefaultValue=false)] - public DecimalValue? OverageQty { get; set; } - - [DataMember(Name="OverageUnitPrice", EmitDefaultValue=false)] - public DecimalValue? OverageUnitPrice { get; set; } - - [DataMember(Name="POCompleted", EmitDefaultValue=false)] - public BooleanValue? POCompleted { get; set; } - - [DataMember(Name="PONbr", EmitDefaultValue=false)] - public StringValue? PONbr { get; set; } - - [DataMember(Name="POStatus", EmitDefaultValue=false)] - public StringValue? POStatus { get; set; } - - [DataMember(Name="PrepaidItem", EmitDefaultValue=false)] - public BooleanValue? PrepaidItem { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ServiceContractItem", EmitDefaultValue=false)] - public BooleanValue? ServiceContractItem { get; set; } - - [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] - public StringValue? ServiceOrderNbr { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="SortOrder", EmitDefaultValue=false)] - public IntValue? SortOrder { get; set; } - - [DataMember(Name="StaffMemberID", EmitDefaultValue=false)] - public StringValue? StaffMemberID { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="TargetEquipmentID", EmitDefaultValue=false)] - public StringValue? TargetEquipmentID { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorLocationID", EmitDefaultValue=false)] - public StringValue? VendorLocationID { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - [DataMember(Name="Warranty", EmitDefaultValue=false)] - public BooleanValue? Warranty { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs deleted file mode 100644 index 663080a3b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdFinancialDetails.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdFinancialDetails : Entity - { - - [DataMember(Name="BillingCustomer", EmitDefaultValue=false)] - public StringValue? BillingCustomer { get; set; } - - [DataMember(Name="BillingCycle", EmitDefaultValue=false)] - public StringValue? BillingCycle { get; set; } - - [DataMember(Name="BillingLocation", EmitDefaultValue=false)] - public StringValue? BillingLocation { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="Commissionable", EmitDefaultValue=false)] - public BooleanValue? Commissionable { get; set; } - - [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] - public StringValue? CustomerTaxZone { get; set; } - - [DataMember(Name="RunBillingFor", EmitDefaultValue=false)] - public StringValue? RunBillingFor { get; set; } - - [DataMember(Name="Salesperson", EmitDefaultValue=false)] - public StringValue? Salesperson { get; set; } - - [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] - public StringValue? TaxCalculationMode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs deleted file mode 100644 index 1be205a23..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdOtherInformation.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdOtherInformation : Entity - { - - [DataMember(Name="BatchNumber", EmitDefaultValue=false)] - public StringValue? BatchNumber { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DocumentType", EmitDefaultValue=false)] - public StringValue? DocumentType { get; set; } - - [DataMember(Name="InvoiceNbr", EmitDefaultValue=false)] - public StringValue? InvoiceNbr { get; set; } - - [DataMember(Name="IssueReferenceNbr", EmitDefaultValue=false)] - public StringValue? IssueReferenceNbr { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs deleted file mode 100644 index 5aa5c9f78..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdPrepayments.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdPrepayments : Entity - { - - [DataMember(Name="ApplicationDate", EmitDefaultValue=false)] - public DateTimeValue? ApplicationDate { get; set; } - - [DataMember(Name="AppliedtoOrders", EmitDefaultValue=false)] - public DecimalValue? AppliedtoOrders { get; set; } - - [DataMember(Name="AvailableBalance", EmitDefaultValue=false)] - public DecimalValue? AvailableBalance { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public IntValue? CashAccount { get; set; } - - [DataMember(Name="Currency", EmitDefaultValue=false)] - public StringValue? Currency { get; set; } - - [DataMember(Name="PaymentAmount", EmitDefaultValue=false)] - public DecimalValue? PaymentAmount { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaymentRef", EmitDefaultValue=false)] - public StringValue? PaymentRef { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="SourceAppointmentNbr", EmitDefaultValue=false)] - public StringValue? SourceAppointmentNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Type", EmitDefaultValue=false)] - public StringValue? Type { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs deleted file mode 100644 index 114ede535..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTaxDetails.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdTaxDetails : Entity - { - - [DataMember(Name="IncludeinVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeinVATExemptTotal { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="ServiceOrderNbr", EmitDefaultValue=false)] - public StringValue? ServiceOrderNbr { get; set; } - - [DataMember(Name="ServiceOrderType", EmitDefaultValue=false)] - public StringValue? ServiceOrderType { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs deleted file mode 100644 index b370a078d..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SrvOrdTotals.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SrvOrdTotals : Entity - { - - [DataMember(Name="AppointmentTotal", EmitDefaultValue=false)] - public DecimalValue? AppointmentTotal { get; set; } - - [DataMember(Name="BillableTotal", EmitDefaultValue=false)] - public DecimalValue? BillableTotal { get; set; } - - [DataMember(Name="EstimatedTotal", EmitDefaultValue=false)] - public DecimalValue? EstimatedTotal { get; set; } - - [DataMember(Name="LineTotal", EmitDefaultValue=false)] - public DecimalValue? LineTotal { get; set; } - - [DataMember(Name="PrepaymentApplied", EmitDefaultValue=false)] - public DecimalValue? PrepaymentApplied { get; set; } - - [DataMember(Name="PrepaymentReceived", EmitDefaultValue=false)] - public DecimalValue? PrepaymentReceived { get; set; } - - [DataMember(Name="PrepaymentRemaining", EmitDefaultValue=false)] - public DecimalValue? PrepaymentRemaining { get; set; } - - [DataMember(Name="ServiceOrderBillableUnpaidBalance", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderBillableUnpaidBalance { get; set; } - - [DataMember(Name="ServiceOrderTotal", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderTotal { get; set; } - - [DataMember(Name="ServiceOrderUnpaidBalance", EmitDefaultValue=false)] - public DecimalValue? ServiceOrderUnpaidBalance { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="VATExemptTotal", EmitDefaultValue=false)] - public DecimalValue? VATExemptTotal { get; set; } - - [DataMember(Name="VATTaxableTotal", EmitDefaultValue=false)] - public DecimalValue? VATTaxableTotal { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs deleted file mode 100644 index 8af69b566..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItem.cs +++ /dev/null @@ -1,295 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StockItem : Entity, ITopLevelEntity - { - - [DataMember(Name="ABCCode", EmitDefaultValue=false)] - public StringValue? ABCCode { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="AutoIncrementalValue", EmitDefaultValue=false)] - public StringValue? AutoIncrementalValue { get; set; } - - [DataMember(Name="AverageCost", EmitDefaultValue=false)] - public DecimalValue? AverageCost { get; set; } - - [DataMember(Name="BaseUOM", EmitDefaultValue=false)] - public StringValue? BaseUOM { get; set; } - - [DataMember(Name="Boxes", EmitDefaultValue=false)] - public List? Boxes { get; set; } - - [DataMember(Name="Categories", EmitDefaultValue=false)] - public List? Categories { get; set; } - - [DataMember(Name="COGSAccount", EmitDefaultValue=false)] - public StringValue? COGSAccount { get; set; } - - [DataMember(Name="COGSSubaccount", EmitDefaultValue=false)] - public StringValue? COGSSubaccount { get; set; } - - [DataMember(Name="Content", EmitDefaultValue=false)] - public StringValue? Content { get; set; } - - [DataMember(Name="CountryOfOrigin", EmitDefaultValue=false)] - public StringValue? CountryOfOrigin { get; set; } - - [DataMember(Name="CrossReferences", EmitDefaultValue=false)] - public List? CrossReferences { get; set; } - - [DataMember(Name="CurrentStdCost", EmitDefaultValue=false)] - public DecimalValue? CurrentStdCost { get; set; } - - [DataMember(Name="DefaultIssueLocationID", EmitDefaultValue=false)] - public StringValue? DefaultIssueLocationID { get; set; } - - [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] - public DecimalValue? DefaultPrice { get; set; } - - [DataMember(Name="DefaultReceiptLocationID", EmitDefaultValue=false)] - public StringValue? DefaultReceiptLocationID { get; set; } - - [DataMember(Name="DefaultSubitem", EmitDefaultValue=false)] - public StringValue? DefaultSubitem { get; set; } - - [DataMember(Name="DefaultWarehouseID", EmitDefaultValue=false)] - public StringValue? DefaultWarehouseID { get; set; } - - [DataMember(Name="DeferralAccount", EmitDefaultValue=false)] - public StringValue? DeferralAccount { get; set; } - - [DataMember(Name="DeferralSubaccount", EmitDefaultValue=false)] - public StringValue? DeferralSubaccount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DimensionVolume", EmitDefaultValue=false)] - public DecimalValue? DimensionVolume { get; set; } - - [DataMember(Name="DimensionWeight", EmitDefaultValue=false)] - public DecimalValue? DimensionWeight { get; set; } - - [DataMember(Name="DiscountAccount", EmitDefaultValue=false)] - public StringValue? DiscountAccount { get; set; } - - [DataMember(Name="DiscountSubaccount", EmitDefaultValue=false)] - public StringValue? DiscountSubaccount { get; set; } - - [DataMember(Name="ImageUrl", EmitDefaultValue=false)] - public StringValue? ImageUrl { get; set; } - - [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] - public StringValue? InventoryAccount { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] - public StringValue? InventorySubaccount { get; set; } - - [DataMember(Name="IsAKit", EmitDefaultValue=false)] - public BooleanValue? IsAKit { get; set; } - - [DataMember(Name="ItemClass", EmitDefaultValue=false)] - public StringValue? ItemClass { get; set; } - - [DataMember(Name="ItemStatus", EmitDefaultValue=false)] - public StringValue? ItemStatus { get; set; } - - [DataMember(Name="ItemType", EmitDefaultValue=false)] - public StringValue? ItemType { get; set; } - - [DataMember(Name="LandedCostVarianceAccount", EmitDefaultValue=false)] - public StringValue? LandedCostVarianceAccount { get; set; } - - [DataMember(Name="LandedCostVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? LandedCostVarianceSubaccount { get; set; } - - [DataMember(Name="LastCost", EmitDefaultValue=false)] - public DecimalValue? LastCost { get; set; } - - [DataMember(Name="LastModified", EmitDefaultValue=false)] - public DateTimeValue? LastModified { get; set; } - - [DataMember(Name="LastStdCost", EmitDefaultValue=false)] - public DecimalValue? LastStdCost { get; set; } - - [DataMember(Name="LotSerialClass", EmitDefaultValue=false)] - public StringValue? LotSerialClass { get; set; } - - [DataMember(Name="Markup", EmitDefaultValue=false)] - public DecimalValue? Markup { get; set; } - - [DataMember(Name="MaxCost", EmitDefaultValue=false)] - public DecimalValue? MaxCost { get; set; } - - [DataMember(Name="MinCost", EmitDefaultValue=false)] - public DecimalValue? MinCost { get; set; } - - [DataMember(Name="MinMarkup", EmitDefaultValue=false)] - public DecimalValue? MinMarkup { get; set; } - - [DataMember(Name="MSRP", EmitDefaultValue=false)] - public DecimalValue? MSRP { get; set; } - - [DataMember(Name="PackagingOption", EmitDefaultValue=false)] - public StringValue? PackagingOption { get; set; } - - [DataMember(Name="PackSeparately", EmitDefaultValue=false)] - public BooleanValue? PackSeparately { get; set; } - - [DataMember(Name="PendingStdCost", EmitDefaultValue=false)] - public DecimalValue? PendingStdCost { get; set; } - - [DataMember(Name="POAccrualAccount", EmitDefaultValue=false)] - public StringValue? POAccrualAccount { get; set; } - - [DataMember(Name="POAccrualSubaccount", EmitDefaultValue=false)] - public StringValue? POAccrualSubaccount { get; set; } - - [DataMember(Name="PostingClass", EmitDefaultValue=false)] - public StringValue? PostingClass { get; set; } - - [DataMember(Name="PriceClass", EmitDefaultValue=false)] - public StringValue? PriceClass { get; set; } - - [DataMember(Name="PriceManager", EmitDefaultValue=false)] - public StringValue? PriceManager { get; set; } - - [DataMember(Name="PriceWorkgroup", EmitDefaultValue=false)] - public StringValue? PriceWorkgroup { get; set; } - - [DataMember(Name="ProductManager", EmitDefaultValue=false)] - public StringValue? ProductManager { get; set; } - - [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] - public StringValue? ProductWorkgroup { get; set; } - - [DataMember(Name="PurchasePriceVarianceAccount", EmitDefaultValue=false)] - public StringValue? PurchasePriceVarianceAccount { get; set; } - - [DataMember(Name="PurchasePriceVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? PurchasePriceVarianceSubaccount { get; set; } - - [DataMember(Name="PurchaseUOM", EmitDefaultValue=false)] - public StringValue? PurchaseUOM { get; set; } - - [DataMember(Name="ReasonCodeSubaccount", EmitDefaultValue=false)] - public StringValue? ReasonCodeSubaccount { get; set; } - - [DataMember(Name="ReplenishmentParameters", EmitDefaultValue=false)] - public List? ReplenishmentParameters { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="SalesUOM", EmitDefaultValue=false)] - public StringValue? SalesUOM { get; set; } - - [DataMember(Name="StandardCostRevaluationAccount", EmitDefaultValue=false)] - public StringValue? StandardCostRevaluationAccount { get; set; } - - [DataMember(Name="StandardCostRevaluationSubaccount", EmitDefaultValue=false)] - public StringValue? StandardCostRevaluationSubaccount { get; set; } - - [DataMember(Name="StandardCostVarianceAccount", EmitDefaultValue=false)] - public StringValue? StandardCostVarianceAccount { get; set; } - - [DataMember(Name="StandardCostVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? StandardCostVarianceSubaccount { get; set; } - - [DataMember(Name="SubjectToCommission", EmitDefaultValue=false)] - public BooleanValue? SubjectToCommission { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TariffCode", EmitDefaultValue=false)] - public StringValue? TariffCode { get; set; } - - [DataMember(Name="UOMConversions", EmitDefaultValue=false)] - public List? UOMConversions { get; set; } - - [DataMember(Name="UseOnEntry", EmitDefaultValue=false)] - public BooleanValue? UseOnEntry { get; set; } - - [DataMember(Name="ValuationMethod", EmitDefaultValue=false)] - public StringValue? ValuationMethod { get; set; } - - [DataMember(Name="VendorDetails", EmitDefaultValue=false)] - public List? VendorDetails { get; set; } - - [DataMember(Name="VolumeUOM", EmitDefaultValue=false)] - public StringValue? VolumeUOM { get; set; } - - [DataMember(Name="WarehouseDetails", EmitDefaultValue=false)] - public List? WarehouseDetails { get; set; } - - [DataMember(Name="WeightUOM", EmitDefaultValue=false)] - public StringValue? WeightUOM { get; set; } - - [DataMember(Name="CurySpecificMSRP", EmitDefaultValue=false)] - public DecimalValue? CurySpecificMSRP { get; set; } - - [DataMember(Name="CurySpecificPrice", EmitDefaultValue=false)] - public DecimalValue? CurySpecificPrice { get; set; } - - [DataMember(Name="Availability", EmitDefaultValue=false)] - public StringValue? Availability { get; set; } - - [DataMember(Name="CustomURL", EmitDefaultValue=false)] - public StringValue? CustomURL { get; set; } - - [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] - public BooleanValue? ExportToExternal { get; set; } - - [DataMember(Name="FileURLs", EmitDefaultValue=false)] - public List? FileURLs { get; set; } - - [DataMember(Name="MetaDescription", EmitDefaultValue=false)] - public StringValue? MetaDescription { get; set; } - - [DataMember(Name="MetaKeywords", EmitDefaultValue=false)] - public StringValue? MetaKeywords { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="PageTitle", EmitDefaultValue=false)] - public StringValue? PageTitle { get; set; } - - [DataMember(Name="SearchKeywords", EmitDefaultValue=false)] - public StringValue? SearchKeywords { get; set; } - - [DataMember(Name="TemplateItemID", EmitDefaultValue=false)] - public StringValue? TemplateItemID { get; set; } - - [DataMember(Name="Visibility", EmitDefaultValue=false)] - public StringValue? Visibility { get; set; } - - [DataMember(Name="NotAvailable", EmitDefaultValue=false)] - public StringValue? NotAvailable { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs deleted file mode 100644 index e34d5ce46..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemVendorDetail.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StockItemVendorDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AddLeadTimeDays", EmitDefaultValue=false)] - public ShortValue? AddLeadTimeDays { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - [DataMember(Name="EOQ", EmitDefaultValue=false)] - public DecimalValue? EOQ { get; set; } - - [DataMember(Name="LastVendorPrice", EmitDefaultValue=false)] - public DecimalValue? LastVendorPrice { get; set; } - - [DataMember(Name="LeadTimeDays", EmitDefaultValue=false)] - public ShortValue? LeadTimeDays { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="LotSize", EmitDefaultValue=false)] - public DecimalValue? LotSize { get; set; } - - [DataMember(Name="MaxOrderQty", EmitDefaultValue=false)] - public DecimalValue? MaxOrderQty { get; set; } - - [DataMember(Name="MinOrderFrequencyInDays", EmitDefaultValue=false)] - public IntValue? MinOrderFrequencyInDays { get; set; } - - [DataMember(Name="MinOrderQty", EmitDefaultValue=false)] - public DecimalValue? MinOrderQty { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - [DataMember(Name="PurchaseUnit", EmitDefaultValue=false)] - public StringValue? PurchaseUnit { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorName", EmitDefaultValue=false)] - public StringValue? VendorName { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs deleted file mode 100644 index 42755abeb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StockItemWarehouseDetail.cs +++ /dev/null @@ -1,87 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StockItemWarehouseDetail : Entity - { - - [DataMember(Name="DailyDemandForecast", EmitDefaultValue=false)] - public DecimalValue? DailyDemandForecast { get; set; } - - [DataMember(Name="DailyDemandForecastErrorSTDEV", EmitDefaultValue=false)] - public DecimalValue? DailyDemandForecastErrorSTDEV { get; set; } - - [DataMember(Name="DefaultIssueLocationID", EmitDefaultValue=false)] - public StringValue? DefaultIssueLocationID { get; set; } - - [DataMember(Name="DefaultReceiptLocationID", EmitDefaultValue=false)] - public StringValue? DefaultReceiptLocationID { get; set; } - - [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] - public StringValue? InventoryAccount { get; set; } - - [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] - public StringValue? InventorySubaccount { get; set; } - - [DataMember(Name="IsDefault", EmitDefaultValue=false)] - public BooleanValue? IsDefault { get; set; } - - [DataMember(Name="LastForecastDate", EmitDefaultValue=false)] - public DateTimeValue? LastForecastDate { get; set; } - - [DataMember(Name="Override", EmitDefaultValue=false)] - public BooleanValue? Override { get; set; } - - [DataMember(Name="OverridePreferredVendor", EmitDefaultValue=false)] - public BooleanValue? OverridePreferredVendor { get; set; } - - [DataMember(Name="OverrideReplenishmentSettings", EmitDefaultValue=false)] - public BooleanValue? OverrideReplenishmentSettings { get; set; } - - [DataMember(Name="OverrideStdCost", EmitDefaultValue=false)] - public BooleanValue? OverrideStdCost { get; set; } - - [DataMember(Name="PreferredVendor", EmitDefaultValue=false)] - public StringValue? PreferredVendor { get; set; } - - [DataMember(Name="PriceOverride", EmitDefaultValue=false)] - public BooleanValue? PriceOverride { get; set; } - - [DataMember(Name="ProductManager", EmitDefaultValue=false)] - public StringValue? ProductManager { get; set; } - - [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] - public StringValue? ProductWorkgroup { get; set; } - - [DataMember(Name="QtyOnHand", EmitDefaultValue=false)] - public DecimalValue? QtyOnHand { get; set; } - - [DataMember(Name="ReplenishmentSource", EmitDefaultValue=false)] - public StringValue? ReplenishmentSource { get; set; } - - [DataMember(Name="ReplenishmentWarehouse", EmitDefaultValue=false)] - public StringValue? ReplenishmentWarehouse { get; set; } - - [DataMember(Name="Seasonality", EmitDefaultValue=false)] - public StringValue? Seasonality { get; set; } - - [DataMember(Name="ServiceLevel", EmitDefaultValue=false)] - public DecimalValue? ServiceLevel { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs deleted file mode 100644 index f463df2c1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetail.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StorageDetail : Entity - { - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="QtyAvailable", EmitDefaultValue=false)] - public DecimalValue? QtyAvailable { get; set; } - - [DataMember(Name="QtyAvailableforIssue", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableforIssue { get; set; } - - [DataMember(Name="QtyHardAvailable", EmitDefaultValue=false)] - public DecimalValue? QtyHardAvailable { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - [DataMember(Name="LastModifiedDateofWarehouseQty", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateofWarehouseQty { get; set; } - - [DataMember(Name="QtyOnHand", EmitDefaultValue=false)] - public DecimalValue? QtyOnHand { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs deleted file mode 100644 index 094f6e8a0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailByLocation.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StorageDetailByLocation : Entity - { - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="QtyAvailableinLocation", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableinLocation { get; set; } - - [DataMember(Name="QtyAvailableforIssueinLocation", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableforIssueinLocation { get; set; } - - [DataMember(Name="QtyAvailableforShippinginLocation", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableforShippinginLocation { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LastModifiedDateofLocationQty", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateofLocationQty { get; set; } - - [DataMember(Name="QtyOnHandinLocation", EmitDefaultValue=false)] - public DecimalValue? QtyOnHandinLocation { get; set; } - - [DataMember(Name="QtyAvailableinWarehouse", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableinWarehouse { get; set; } - - [DataMember(Name="QtyAvailableforIssueinWarehouse", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableforIssueinWarehouse { get; set; } - - [DataMember(Name="QtyAvailableforShippinginWarehouse", EmitDefaultValue=false)] - public DecimalValue? QtyAvailableforShippinginWarehouse { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - [DataMember(Name="LastModifiedDateofWarehouseQty", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateofWarehouseQty { get; set; } - - [DataMember(Name="QtyOnHandinWarehouse", EmitDefaultValue=false)] - public DecimalValue? QtyOnHandinWarehouse { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs deleted file mode 100644 index 10440b582..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsByLocationInquiry.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StorageDetailsByLocationInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="SplitByLocation", EmitDefaultValue=false)] - public BooleanValue? SplitByLocation { get; set; } - - [DataMember(Name="StorageDetailsByLocation", EmitDefaultValue=false)] - public List? StorageDetailsByLocation { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs deleted file mode 100644 index a76ab6654..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/StorageDetailsInquiry.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class StorageDetailsInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="StorageDetails", EmitDefaultValue=false)] - public List? StorageDetails { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs deleted file mode 100644 index ac8615af3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subaccount.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Subaccount : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Secured", EmitDefaultValue=false)] - public BooleanValue? Secured { get; set; } - - [DataMember(Name="SubaccountCD", EmitDefaultValue=false)] - public StringValue? SubaccountCD { get; set; } - - [DataMember(Name="SubaccountID", EmitDefaultValue=false)] - public IntValue? SubaccountID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs deleted file mode 100644 index 9fd930387..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Subcontract.cs +++ /dev/null @@ -1,127 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Subcontract : Entity, ITopLevelEntity - { - - [DataMember(Name="SubcontractNbr", EmitDefaultValue=false)] - public StringValue? SubcontractNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="Location", EmitDefaultValue=false)] - public StringValue? Location { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="BaseCurrencyID", EmitDefaultValue=false)] - public StringValue? BaseCurrencyID { get; set; } - - [DataMember(Name="CurrencyEffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? CurrencyEffectiveDate { get; set; } - - [DataMember(Name="CurrencyRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyRate { get; set; } - - [DataMember(Name="CurrencyRateTypeID", EmitDefaultValue=false)] - public StringValue? CurrencyRateTypeID { get; set; } - - [DataMember(Name="CurrencyReciprocalRate", EmitDefaultValue=false)] - public DecimalValue? CurrencyReciprocalRate { get; set; } - - [DataMember(Name="VendorRef", EmitDefaultValue=false)] - public StringValue? VendorRef { get; set; } - - [DataMember(Name="LineTotal", EmitDefaultValue=false)] - public DecimalValue? LineTotal { get; set; } - - [DataMember(Name="DiscountTotal", EmitDefaultValue=false)] - public DecimalValue? DiscountTotal { get; set; } - - [DataMember(Name="RetainageTotal", EmitDefaultValue=false)] - public DecimalValue? RetainageTotal { get; set; } - - [DataMember(Name="SubcontractTotal", EmitDefaultValue=false)] - public DecimalValue? SubcontractTotal { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="ControlTotal", EmitDefaultValue=false)] - public DecimalValue? ControlTotal { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="VendorTaxZone", EmitDefaultValue=false)] - public StringValue? VendorTaxZone { get; set; } - - [DataMember(Name="ApplyRetainage", EmitDefaultValue=false)] - public BooleanValue? ApplyRetainage { get; set; } - - [DataMember(Name="RetainagePct", EmitDefaultValue=false)] - public DecimalValue? RetainagePct { get; set; } - - [DataMember(Name="DoNotEmail", EmitDefaultValue=false)] - public BooleanValue? DoNotEmail { get; set; } - - [DataMember(Name="DoNotPrint", EmitDefaultValue=false)] - public BooleanValue? DoNotPrint { get; set; } - - [DataMember(Name="Emailed", EmitDefaultValue=false)] - public BooleanValue? Emailed { get; set; } - - [DataMember(Name="Printed", EmitDefaultValue=false)] - public BooleanValue? Printed { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="TaxDetails", EmitDefaultValue=false)] - public List? TaxDetails { get; set; } - - [DataMember(Name="VendorAddressInfo", EmitDefaultValue=false)] - public SubcontractVendorAddressInfo? VendorAddressInfo { get; set; } - - [DataMember(Name="VendorContactInfo", EmitDefaultValue=false)] - public SubcontractVendorContactInfo? VendorContactInfo { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs deleted file mode 100644 index f1308fb40..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractDetail.cs +++ /dev/null @@ -1,120 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SubcontractDetail : Entity - { - - [DataMember(Name="Account", EmitDefaultValue=false)] - public StringValue? Account { get; set; } - - [DataMember(Name="AlternateID", EmitDefaultValue=false)] - public StringValue? AlternateID { get; set; } - - [DataMember(Name="Amount", EmitDefaultValue=false)] - public DecimalValue? Amount { get; set; } - - [DataMember(Name="BranchID", EmitDefaultValue=false)] - public StringValue? BranchID { get; set; } - - [DataMember(Name="Canceled", EmitDefaultValue=false)] - public BooleanValue? Canceled { get; set; } - - [DataMember(Name="Closed", EmitDefaultValue=false)] - public BooleanValue? Closed { get; set; } - - [DataMember(Name="Completed", EmitDefaultValue=false)] - public BooleanValue? Completed { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountAmount", EmitDefaultValue=false)] - public DecimalValue? DiscountAmount { get; set; } - - [DataMember(Name="DiscountCode", EmitDefaultValue=false)] - public StringValue? DiscountCode { get; set; } - - [DataMember(Name="DiscountPct", EmitDefaultValue=false)] - public DecimalValue? DiscountPct { get; set; } - - [DataMember(Name="DiscountSequence", EmitDefaultValue=false)] - public StringValue? DiscountSequence { get; set; } - - [DataMember(Name="ExtendedCost", EmitDefaultValue=false)] - public DecimalValue? ExtendedCost { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineDescription", EmitDefaultValue=false)] - public StringValue? LineDescription { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="ManualCost", EmitDefaultValue=false)] - public BooleanValue? ManualCost { get; set; } - - [DataMember(Name="ManualDiscount", EmitDefaultValue=false)] - public BooleanValue? ManualDiscount { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderQty", EmitDefaultValue=false)] - public DecimalValue? OrderQty { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="PrepaidAmount", EmitDefaultValue=false)] - public DecimalValue? PrepaidAmount { get; set; } - - [DataMember(Name="PrepaidQty", EmitDefaultValue=false)] - public DecimalValue? PrepaidQty { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="Task", EmitDefaultValue=false)] - public StringValue? Task { get; set; } - - [DataMember(Name="Requested", EmitDefaultValue=false)] - public DateTimeValue? Requested { get; set; } - - [DataMember(Name="RetainageAmount", EmitDefaultValue=false)] - public DecimalValue? RetainageAmount { get; set; } - - [DataMember(Name="RetainagePct", EmitDefaultValue=false)] - public DecimalValue? RetainagePct { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Subaccount", EmitDefaultValue=false)] - public StringValue? Subaccount { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="UnitCost", EmitDefaultValue=false)] - public DecimalValue? UnitCost { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs deleted file mode 100644 index 4dcc29bf3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractTaxDetail.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SubcontractTaxDetail : Entity - { - - [DataMember(Name="RetainedTax", EmitDefaultValue=false)] - public DecimalValue? RetainedTax { get; set; } - - [DataMember(Name="RetainedTaxable", EmitDefaultValue=false)] - public DecimalValue? RetainedTaxable { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs deleted file mode 100644 index 9885a27f9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorAddressInfo.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SubcontractVendorAddressInfo : Entity - { - - [DataMember(Name="AddressLine1", EmitDefaultValue=false)] - public StringValue? AddressLine1 { get; set; } - - [DataMember(Name="AddressLine2", EmitDefaultValue=false)] - public StringValue? AddressLine2 { get; set; } - - [DataMember(Name="City", EmitDefaultValue=false)] - public StringValue? City { get; set; } - - [DataMember(Name="Country", EmitDefaultValue=false)] - public StringValue? Country { get; set; } - - [DataMember(Name="VendorAddressOverride", EmitDefaultValue=false)] - public BooleanValue? VendorAddressOverride { get; set; } - - [DataMember(Name="PostalCode", EmitDefaultValue=false)] - public StringValue? PostalCode { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs deleted file mode 100644 index ca32c8ea3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/SubcontractVendorContactInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class SubcontractVendorContactInfo : Entity - { - - [DataMember(Name="AccountName", EmitDefaultValue=false)] - public StringValue? AccountName { get; set; } - - [DataMember(Name="Email", EmitDefaultValue=false)] - public StringValue? Email { get; set; } - - [DataMember(Name="JobTitle", EmitDefaultValue=false)] - public StringValue? JobTitle { get; set; } - - [DataMember(Name="VendorContactOverride", EmitDefaultValue=false)] - public BooleanValue? VendorContactOverride { get; set; } - - [DataMember(Name="Phone", EmitDefaultValue=false)] - public StringValue? Phone { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs deleted file mode 100644 index eca986d98..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Task.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Task : Entity, ITopLevelEntity - { - - [DataMember(Name="Body", EmitDefaultValue=false)] - public StringValue? Body { get; set; } - - [DataMember(Name="Category", EmitDefaultValue=false)] - public StringValue? Category { get; set; } - - [DataMember(Name="CompletedAt", EmitDefaultValue=false)] - public DateTimeValue? CompletedAt { get; set; } - - [DataMember(Name="CompletionPercentage", EmitDefaultValue=false)] - public IntValue? CompletionPercentage { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="Internal", EmitDefaultValue=false)] - public BooleanValue? Internal { get; set; } - - [DataMember(Name="NoteID", EmitDefaultValue=false)] - public GuidValue? NoteID { get; set; } - - [DataMember(Name="Owner", EmitDefaultValue=false)] - public StringValue? Owner { get; set; } - - [DataMember(Name="Parent", EmitDefaultValue=false)] - public GuidValue? Parent { get; set; } - - [DataMember(Name="ParentSummary", EmitDefaultValue=false)] - public StringValue? ParentSummary { get; set; } - - [DataMember(Name="Priority", EmitDefaultValue=false)] - public StringValue? Priority { get; set; } - - [DataMember(Name="RelatedActivities", EmitDefaultValue=false)] - public List? RelatedActivities { get; set; } - - [DataMember(Name="RelatedTasks", EmitDefaultValue=false)] - public List? RelatedTasks { get; set; } - - [DataMember(Name="Reminder", EmitDefaultValue=false)] - public ReminderDetail? Reminder { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Summary", EmitDefaultValue=false)] - public StringValue? Summary { get; set; } - - [DataMember(Name="TimeActivity", EmitDefaultValue=false)] - public TaskTimeActivity? TimeActivity { get; set; } - - [DataMember(Name="WorkgroupID", EmitDefaultValue=false)] - public StringValue? WorkgroupID { get; set; } - - [DataMember(Name="CreatedByID", EmitDefaultValue=false)] - public StringValue? CreatedByID { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="RelatedEntityType", EmitDefaultValue=false)] - public StringValue? RelatedEntityType { get; set; } - - [DataMember(Name="RelatedEntityNoteID", EmitDefaultValue=false)] - public GuidValue? RelatedEntityNoteID { get; set; } - - [DataMember(Name="RelatedEntityDescription", EmitDefaultValue=false)] - public StringValue? RelatedEntityDescription { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs deleted file mode 100644 index 2c0eaf51f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskRelatedTask.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaskRelatedTask : Entity - { - - [DataMember(Name="CompletedAt", EmitDefaultValue=false)] - public DateTimeValue? CompletedAt { get; set; } - - [DataMember(Name="DueDate", EmitDefaultValue=false)] - public DateTimeValue? DueDate { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="Subject", EmitDefaultValue=false)] - public StringValue? Subject { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs deleted file mode 100644 index c5346ac33..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaskTimeActivity.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaskTimeActivity : Entity - { - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public StringValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Overtime", EmitDefaultValue=false)] - public StringValue? Overtime { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs deleted file mode 100644 index 9cc45130b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Tax.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Tax : Entity, ITopLevelEntity - { - - [DataMember(Name="CalculateOn", EmitDefaultValue=false)] - public StringValue? CalculateOn { get; set; } - - [DataMember(Name="CashDiscount", EmitDefaultValue=false)] - public StringValue? CashDiscount { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="DeductibleVAT", EmitDefaultValue=false)] - public BooleanValue? DeductibleVAT { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EnterFromTaxBill", EmitDefaultValue=false)] - public BooleanValue? EnterFromTaxBill { get; set; } - - [DataMember(Name="ExcludeFromTaxonTaxCalculation", EmitDefaultValue=false)] - public BooleanValue? ExcludeFromTaxonTaxCalculation { get; set; } - - [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeInVATExemptTotal { get; set; } - - [DataMember(Name="IncludeInVATTaxableTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeInVATTaxableTotal { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="NotValidAfter", EmitDefaultValue=false)] - public DateTimeValue? NotValidAfter { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxAgency", EmitDefaultValue=false)] - public StringValue? TaxAgency { get; set; } - - [DataMember(Name="TaxClaimableAccount", EmitDefaultValue=false)] - public StringValue? TaxClaimableAccount { get; set; } - - [DataMember(Name="TaxClaimableSubaccount", EmitDefaultValue=false)] - public StringValue? TaxClaimableSubaccount { get; set; } - - [DataMember(Name="TaxExpenseAccount", EmitDefaultValue=false)] - public StringValue? TaxExpenseAccount { get; set; } - - [DataMember(Name="TaxExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? TaxExpenseSubaccount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxPayableAccount", EmitDefaultValue=false)] - public StringValue? TaxPayableAccount { get; set; } - - [DataMember(Name="TaxPayableSubaccount", EmitDefaultValue=false)] - public StringValue? TaxPayableSubaccount { get; set; } - - [DataMember(Name="TaxSchedule", EmitDefaultValue=false)] - public List? TaxSchedule { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - [DataMember(Name="Zones", EmitDefaultValue=false)] - public List? Zones { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs deleted file mode 100644 index fe2cc8885..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingCA.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxAndReportingCA : Entity - { - - [DataMember(Name="ReportingType", EmitDefaultValue=false)] - public StringValue? ReportingType { get; set; } - - [DataMember(Name="SupplementalIncome", EmitDefaultValue=false)] - public BooleanValue? SupplementalIncome { get; set; } - - [DataMember(Name="TaxDetailsCA", EmitDefaultValue=false)] - public List? TaxDetailsCA { get; set; } - - [DataMember(Name="WageType", EmitDefaultValue=false)] - public StringValue? WageType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs deleted file mode 100644 index d7e0082ba..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxAndReportingUS.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxAndReportingUS : Entity - { - - [DataMember(Name="ReportingType", EmitDefaultValue=false)] - public StringValue? ReportingType { get; set; } - - [DataMember(Name="SubjecttoTaxes", EmitDefaultValue=false)] - public StringValue? SubjecttoTaxes { get; set; } - - [DataMember(Name="TaxDetailsUS", EmitDefaultValue=false)] - public List? TaxDetailsUS { get; set; } - - [DataMember(Name="WageType", EmitDefaultValue=false)] - public StringValue? WageType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs deleted file mode 100644 index 7fcc7cabc..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategory.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxCategory : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="ExcludeListedTaxes", EmitDefaultValue=false)] - public BooleanValue? ExcludeListedTaxes { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="TaxCategoryID", EmitDefaultValue=false)] - public StringValue? TaxCategoryID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs deleted file mode 100644 index d8a5d151e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCategoryTaxDetail.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxCategoryTaxDetail : Entity - { - - [DataMember(Name="CalculateOn", EmitDefaultValue=false)] - public StringValue? CalculateOn { get; set; } - - [DataMember(Name="CashDiscount", EmitDefaultValue=false)] - public StringValue? CashDiscount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs deleted file mode 100644 index 4c94a00b5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxCodeSetting.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxCodeSetting : Entity - { - - [DataMember(Name="AdditionalInformation", EmitDefaultValue=false)] - public StringValue? AdditionalInformation { get; set; } - - [DataMember(Name="CompanyNotes", EmitDefaultValue=false)] - public StringValue? CompanyNotes { get; set; } - - [DataMember(Name="FormBox", EmitDefaultValue=false)] - public StringValue? FormBox { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="UseDefault", EmitDefaultValue=false)] - public BooleanValue? UseDefault { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs deleted file mode 100644 index 3f3addc66..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxDetail.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxDetail : Entity - { - - [DataMember(Name="CustomerTaxZone", EmitDefaultValue=false)] - public StringValue? CustomerTaxZone { get; set; } - - [DataMember(Name="IncludeInVATExemptTotal", EmitDefaultValue=false)] - public BooleanValue? IncludeInVATExemptTotal { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="OrderNbr", EmitDefaultValue=false)] - public StringValue? OrderNbr { get; set; } - - [DataMember(Name="OrderType", EmitDefaultValue=false)] - public StringValue? OrderType { get; set; } - - [DataMember(Name="PendingVAT", EmitDefaultValue=false)] - public BooleanValue? PendingVAT { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="ReverseVAT", EmitDefaultValue=false)] - public BooleanValue? ReverseVAT { get; set; } - - [DataMember(Name="StatisticalVAT", EmitDefaultValue=false)] - public BooleanValue? StatisticalVAT { get; set; } - - [DataMember(Name="TaxableAmount", EmitDefaultValue=false)] - public DecimalValue? TaxableAmount { get; set; } - - [DataMember(Name="TaxAmount", EmitDefaultValue=false)] - public DecimalValue? TaxAmount { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - [DataMember(Name="TaxType", EmitDefaultValue=false)] - public StringValue? TaxType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs deleted file mode 100644 index 7c9f64cb2..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxReportingSettings.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxReportingSettings : Entity, ITopLevelEntity - { - - [DataMember(Name="ReportingGroups", EmitDefaultValue=false)] - public List? ReportingGroups { get; set; } - - [DataMember(Name="TaxAgency", EmitDefaultValue=false)] - public StringValue? TaxAgency { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs deleted file mode 100644 index 23be1f6cb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxScheduleDetail.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxScheduleDetail : Entity - { - - [DataMember(Name="DeductibleTaxRate", EmitDefaultValue=false)] - public DecimalValue? DeductibleTaxRate { get; set; } - - [DataMember(Name="MaxTaxableAmount", EmitDefaultValue=false)] - public DecimalValue? MaxTaxableAmount { get; set; } - - [DataMember(Name="MinTaxableAmount", EmitDefaultValue=false)] - public DecimalValue? MinTaxableAmount { get; set; } - - [DataMember(Name="ReportingGroup", EmitDefaultValue=false)] - public StringValue? ReportingGroup { get; set; } - - [DataMember(Name="RevisionID", EmitDefaultValue=false)] - public IntValue? RevisionID { get; set; } - - [DataMember(Name="StartDate", EmitDefaultValue=false)] - public DateTimeValue? StartDate { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxRate", EmitDefaultValue=false)] - public DecimalValue? TaxRate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs deleted file mode 100644 index bf51454f0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxSettingDetail : Entity - { - - [DataMember(Name="AdditionalInformation", EmitDefaultValue=false)] - public StringValue? AdditionalInformation { get; set; } - - [DataMember(Name="CompanyNotes", EmitDefaultValue=false)] - public StringValue? CompanyNotes { get; set; } - - [DataMember(Name="FormBox", EmitDefaultValue=false)] - public StringValue? FormBox { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Name", EmitDefaultValue=false)] - public StringValue? Name { get; set; } - - [DataMember(Name="Required", EmitDefaultValue=false)] - public BooleanValue? Required { get; set; } - - [DataMember(Name="Setting", EmitDefaultValue=false)] - public StringValue? Setting { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="UseDefault", EmitDefaultValue=false)] - public BooleanValue? UseDefault { get; set; } - - [DataMember(Name="UsedforGovernmentReporting", EmitDefaultValue=false)] - public BooleanValue? UsedforGovernmentReporting { get; set; } - - [DataMember(Name="UsedforTaxCalculation", EmitDefaultValue=false)] - public BooleanValue? UsedforTaxCalculation { get; set; } - - [DataMember(Name="Value", EmitDefaultValue=false)] - public StringValue? Value { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs deleted file mode 100644 index 7bfe0e8af..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsCA.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxSettingsCA : Entity - { - - [DataMember(Name="CodeType", EmitDefaultValue=false)] - public StringValue? CodeType { get; set; } - - [DataMember(Name="TaxDetailsCA", EmitDefaultValue=false)] - public List? TaxDetailsCA { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs deleted file mode 100644 index ac1040ea3..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxSettingsUS.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxSettingsUS : Entity - { - - [DataMember(Name="AllowSupplementalElection", EmitDefaultValue=false)] - public BooleanValue? AllowSupplementalElection { get; set; } - - [DataMember(Name="CodeType", EmitDefaultValue=false)] - public StringValue? CodeType { get; set; } - - [DataMember(Name="ImpactonTaxableWage", EmitDefaultValue=false)] - public StringValue? ImpactonTaxableWage { get; set; } - - [DataMember(Name="TaxDetailsUS", EmitDefaultValue=false)] - public List? TaxDetailsUS { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs deleted file mode 100644 index 7b14b276e..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZone.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxZone : Entity, ITopLevelEntity - { - - [DataMember(Name="ApplicableTaxes", EmitDefaultValue=false)] - public List? ApplicableTaxes { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="TaxZoneID", EmitDefaultValue=false)] - public StringValue? TaxZoneID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs deleted file mode 100644 index 7d82f0d19..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneApplicableTaxDetail.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxZoneApplicableTaxDetail : Entity - { - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs deleted file mode 100644 index d572a4277..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxZoneDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxZoneDetail : Entity - { - - [DataMember(Name="DefaultTaxCategory", EmitDefaultValue=false)] - public StringValue? DefaultTaxCategory { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="TaxID", EmitDefaultValue=false)] - public StringValue? TaxID { get; set; } - - [DataMember(Name="TaxZoneID", EmitDefaultValue=false)] - public StringValue? TaxZoneID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs deleted file mode 100644 index e4de6f8f9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWage.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxesDecreasingApplWage : Entity - { - - [DataMember(Name="EmployeeTaxesDecreasingApplWageDetails", EmitDefaultValue=false)] - public List? EmployeeTaxesDecreasingApplWageDetails { get; set; } - - [DataMember(Name="InclusionType", EmitDefaultValue=false)] - public StringValue? InclusionType { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs deleted file mode 100644 index e5a4ade13..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TaxesDecreasingApplWageDetail.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TaxesDecreasingApplWageDetail : Entity - { - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="TaxCode", EmitDefaultValue=false)] - public StringValue? TaxCode { get; set; } - - [DataMember(Name="TaxName", EmitDefaultValue=false)] - public StringValue? TaxName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs deleted file mode 100644 index 8cd7cd902..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TechnicalValidationSetup.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.Runtime.Serialization; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - - [DataContract] - public class TechnicalValidationSetup : Entity, ITopLevelEntity - { - [DataMember(Name = "ErrorCaseClassID", EmitDefaultValue = false)] - public StringValue? ErrorCaseClassID { get; set; } - - [DataMember(Name = "GracePeriod", EmitDefaultValue = false)] - public IntValue? GracePeriod { get; set; } - - [DataMember(Name = "ISVCaseClassID", EmitDefaultValue = false)] - public StringValue? ISVCaseClassID { get; set; } - - [DataMember(Name = "ISVSupportedVersion", EmitDefaultValue = false)] - public StringValue? ISVSupportedVersion { get; set; } - - [DataMember(Name = "ServiceURL", EmitDefaultValue = false)] - public StringValue? ServiceURL { get; set; } - - [DataMember(Name = "VARCaseClassID", EmitDefaultValue = false)] - public StringValue? VARCaseClassID { get; set; } - - [DataMember(Name = "VARSupportedVersion", EmitDefaultValue = false)] - public StringValue? VARSupportedVersion { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs deleted file mode 100644 index 52469b20a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItemVendorDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TemplateItemVendorDetail : Entity - { - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorName", EmitDefaultValue=false)] - public StringValue? VendorName { get; set; } - - [DataMember(Name="Default", EmitDefaultValue=false)] - public BooleanValue? Default { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs deleted file mode 100644 index 70d4d50d1..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TemplateItems.cs +++ /dev/null @@ -1,121 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TemplateItems : Entity, ITopLevelEntity - { - - [DataMember(Name="SalesUOM", EmitDefaultValue=false)] - public StringValue? SalesUOM { get; set; } - - [DataMember(Name="CurySpecificMSRP", EmitDefaultValue=false)] - public DecimalValue? CurySpecificMSRP { get; set; } - - [DataMember(Name="CurySpecificPrice", EmitDefaultValue=false)] - public DecimalValue? CurySpecificPrice { get; set; } - - [DataMember(Name="ItemClass", EmitDefaultValue=false)] - public StringValue? ItemClass { get; set; } - - [DataMember(Name="Availability", EmitDefaultValue=false)] - public StringValue? Availability { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="BaseUOM", EmitDefaultValue=false)] - public StringValue? BaseUOM { get; set; } - - [DataMember(Name="Categories", EmitDefaultValue=false)] - public List? Categories { get; set; } - - [DataMember(Name="Content", EmitDefaultValue=false)] - public StringValue? Content { get; set; } - - [DataMember(Name="CurrentStdCost", EmitDefaultValue=false)] - public DecimalValue? CurrentStdCost { get; set; } - - [DataMember(Name="CustomURL", EmitDefaultValue=false)] - public StringValue? CustomURL { get; set; } - - [DataMember(Name="DefaultIssueLocationID", EmitDefaultValue=false)] - public StringValue? DefaultIssueLocationID { get; set; } - - [DataMember(Name="DefaultPrice", EmitDefaultValue=false)] - public DecimalValue? DefaultPrice { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DimensionWeight", EmitDefaultValue=false)] - public DecimalValue? DimensionWeight { get; set; } - - [DataMember(Name="ExportToExternal", EmitDefaultValue=false)] - public BooleanValue? ExportToExternal { get; set; } - - [DataMember(Name="FileURLs", EmitDefaultValue=false)] - public List? FileURLs { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="IsStockItem", EmitDefaultValue=false)] - public BooleanValue? IsStockItem { get; set; } - - [DataMember(Name="ItemStatus", EmitDefaultValue=false)] - public StringValue? ItemStatus { get; set; } - - [DataMember(Name="LastModified", EmitDefaultValue=false)] - public DateTimeValue? LastModified { get; set; } - - [DataMember(Name="Matrix", EmitDefaultValue=false)] - public List? Matrix { get; set; } - - [DataMember(Name="MetaDescription", EmitDefaultValue=false)] - public StringValue? MetaDescription { get; set; } - - [DataMember(Name="MSRP", EmitDefaultValue=false)] - public DecimalValue? MSRP { get; set; } - - [DataMember(Name="PageTitle", EmitDefaultValue=false)] - public StringValue? PageTitle { get; set; } - - [DataMember(Name="SearchKeywords", EmitDefaultValue=false)] - public StringValue? SearchKeywords { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="Visibility", EmitDefaultValue=false)] - public StringValue? Visibility { get; set; } - - [DataMember(Name="WeightUOM", EmitDefaultValue=false)] - public StringValue? WeightUOM { get; set; } - - [DataMember(Name="MetaKeywords", EmitDefaultValue=false)] - public StringValue? MetaKeywords { get; set; } - - [DataMember(Name="RequireShipment", EmitDefaultValue=false)] - public BooleanValue? RequireShipment { get; set; } - - [DataMember(Name="NotAvailable", EmitDefaultValue=false)] - public StringValue? NotAvailable { get; set; } - - [DataMember(Name="VendorDetails", EmitDefaultValue=false)] - public List? VendorDetails { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs deleted file mode 100644 index f06d7eac9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeActivity.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TimeActivity : Entity - { - - [DataMember(Name="Approver", EmitDefaultValue=false)] - public StringValue? Approver { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public StringValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="EarningType", EmitDefaultValue=false)] - public StringValue? EarningType { get; set; } - - [DataMember(Name="Overtime", EmitDefaultValue=false)] - public StringValue? Overtime { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Released", EmitDefaultValue=false)] - public BooleanValue? Released { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - [DataMember(Name="TrackTime", EmitDefaultValue=false)] - public BooleanValue? TrackTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs deleted file mode 100644 index c7b6cca7a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeAndMaterial.cs +++ /dev/null @@ -1,90 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TimeAndMaterial : Entity - { - - [DataMember(Name="AmountToInvoice", EmitDefaultValue=false)] - public DecimalValue? AmountToInvoice { get; set; } - - [DataMember(Name="BilledAmount", EmitDefaultValue=false)] - public DecimalValue? BilledAmount { get; set; } - - [DataMember(Name="BilledQty", EmitDefaultValue=false)] - public DecimalValue? BilledQty { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="DeferralCode", EmitDefaultValue=false)] - public StringValue? DeferralCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EmployeeID", EmitDefaultValue=false)] - public StringValue? EmployeeID { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="MaxAvailableAmount", EmitDefaultValue=false)] - public DecimalValue? MaxAvailableAmount { get; set; } - - [DataMember(Name="MaxLimitAmount", EmitDefaultValue=false)] - public DecimalValue? MaxLimitAmount { get; set; } - - [DataMember(Name="OverLimitAmount", EmitDefaultValue=false)] - public DecimalValue? OverLimitAmount { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="QtyToInvoice", EmitDefaultValue=false)] - public DecimalValue? QtyToInvoice { get; set; } - - [DataMember(Name="Retainage", EmitDefaultValue=false)] - public DecimalValue? Retainage { get; set; } - - [DataMember(Name="RetainageAmount", EmitDefaultValue=false)] - public DecimalValue? RetainageAmount { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxCategory", EmitDefaultValue=false)] - public StringValue? TaxCategory { get; set; } - - [DataMember(Name="UnitPrice", EmitDefaultValue=false)] - public DecimalValue? UnitPrice { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs deleted file mode 100644 index dd988f94f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TimeEntry.cs +++ /dev/null @@ -1,91 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TimeEntry : Entity, ITopLevelEntity - { - - [DataMember(Name="ApprovalStatus", EmitDefaultValue=false)] - public StringValue? ApprovalStatus { get; set; } - - [DataMember(Name="Approver", EmitDefaultValue=false)] - public StringValue? Approver { get; set; } - - [DataMember(Name="Billable", EmitDefaultValue=false)] - public BooleanValue? Billable { get; set; } - - [DataMember(Name="BillableOvertime", EmitDefaultValue=false)] - public StringValue? BillableOvertime { get; set; } - - [DataMember(Name="BillableTime", EmitDefaultValue=false)] - public StringValue? BillableTime { get; set; } - - [DataMember(Name="CertifiedJob", EmitDefaultValue=false)] - public BooleanValue? CertifiedJob { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="CostRate", EmitDefaultValue=false)] - public DecimalValue? CostRate { get; set; } - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="EarningType", EmitDefaultValue=false)] - public StringValue? EarningType { get; set; } - - [DataMember(Name="Employee", EmitDefaultValue=false)] - public StringValue? Employee { get; set; } - - [DataMember(Name="ExternalRefNbr", EmitDefaultValue=false)] - public StringValue? ExternalRefNbr { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Overtime", EmitDefaultValue=false)] - public StringValue? Overtime { get; set; } - - [DataMember(Name="ProjectID", EmitDefaultValue=false)] - public StringValue? ProjectID { get; set; } - - [DataMember(Name="ProjectTaskID", EmitDefaultValue=false)] - public StringValue? ProjectTaskID { get; set; } - - [DataMember(Name="Summary", EmitDefaultValue=false)] - public StringValue? Summary { get; set; } - - [DataMember(Name="Time", EmitDefaultValue=false)] - public DateTimeValue? Time { get; set; } - - [DataMember(Name="TimeEntryID", EmitDefaultValue=false)] - public GuidValue? TimeEntryID { get; set; } - - [DataMember(Name="TimeSpent", EmitDefaultValue=false)] - public StringValue? TimeSpent { get; set; } - - [DataMember(Name="UnionLocal", EmitDefaultValue=false)] - public StringValue? UnionLocal { get; set; } - - [DataMember(Name="WCCCode", EmitDefaultValue=false)] - public StringValue? WCCCode { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs deleted file mode 100644 index 5b48f98bf..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Totals.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Totals : Entity - { - - [DataMember(Name="DiscountTotal", EmitDefaultValue=false)] - public DecimalValue? DiscountTotal { get; set; } - - [DataMember(Name="LineTotalAmount", EmitDefaultValue=false)] - public DecimalValue? LineTotalAmount { get; set; } - - [DataMember(Name="MiscTotalAmount", EmitDefaultValue=false)] - public DecimalValue? MiscTotalAmount { get; set; } - - [DataMember(Name="TaxTotal", EmitDefaultValue=false)] - public DecimalValue? TaxTotal { get; set; } - - [DataMember(Name="UnbilledAmount", EmitDefaultValue=false)] - public DecimalValue? UnbilledAmount { get; set; } - - [DataMember(Name="UnbilledQty", EmitDefaultValue=false)] - public DecimalValue? UnbilledQty { get; set; } - - [DataMember(Name="UnpaidBalance", EmitDefaultValue=false)] - public DecimalValue? UnpaidBalance { get; set; } - - [DataMember(Name="Freight", EmitDefaultValue=false)] - public DecimalValue? Freight { get; set; } - - [DataMember(Name="FreightCost", EmitDefaultValue=false)] - public DecimalValue? FreightCost { get; set; } - - [DataMember(Name="FreightCostIsuptodate", EmitDefaultValue=false)] - public BooleanValue? FreightCostIsuptodate { get; set; } - - [DataMember(Name="FreightTaxCategory", EmitDefaultValue=false)] - public StringValue? FreightTaxCategory { get; set; } - - [DataMember(Name="OrderVolume", EmitDefaultValue=false)] - public DecimalValue? OrderVolume { get; set; } - - [DataMember(Name="OrderWeight", EmitDefaultValue=false)] - public DecimalValue? OrderWeight { get; set; } - - [DataMember(Name="PackageWeight", EmitDefaultValue=false)] - public DecimalValue? PackageWeight { get; set; } - - [DataMember(Name="PremiumFreight", EmitDefaultValue=false)] - public DecimalValue? PremiumFreight { get; set; } - - [DataMember(Name="OverrideFreightAmount", EmitDefaultValue=false)] - public BooleanValue? OverrideFreightAmount { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs deleted file mode 100644 index 9d5ce3127..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrder.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TransferOrder : Entity, ITopLevelEntity - { - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="Details", EmitDefaultValue=false)] - public List? Details { get; set; } - - [DataMember(Name="ExternalRef", EmitDefaultValue=false)] - public StringValue? ExternalRef { get; set; } - - [DataMember(Name="FromWarehouseID", EmitDefaultValue=false)] - public StringValue? FromWarehouseID { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="PostPeriod", EmitDefaultValue=false)] - public StringValue? PostPeriod { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TotalQty", EmitDefaultValue=false)] - public DecimalValue? TotalQty { get; set; } - - [DataMember(Name="ToWarehouseID", EmitDefaultValue=false)] - public StringValue? ToWarehouseID { get; set; } - - [DataMember(Name="TransferType", EmitDefaultValue=false)] - public StringValue? TransferType { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs deleted file mode 100644 index 96d37ec75..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetail.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TransferOrderDetail : Entity - { - - [DataMember(Name="Allocations", EmitDefaultValue=false)] - public List? Allocations { get; set; } - - [DataMember(Name="CostCode", EmitDefaultValue=false)] - public StringValue? CostCode { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="FromLocationID", EmitDefaultValue=false)] - public StringValue? FromLocationID { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="ReasonCode", EmitDefaultValue=false)] - public StringValue? ReasonCode { get; set; } - - [DataMember(Name="SpecialOrderNbr", EmitDefaultValue=false)] - public StringValue? SpecialOrderNbr { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - [DataMember(Name="ToLocationID", EmitDefaultValue=false)] - public StringValue? ToLocationID { get; set; } - - [DataMember(Name="ToCostCode", EmitDefaultValue=false)] - public StringValue? ToCostCode { get; set; } - - [DataMember(Name="ToCostLayerType", EmitDefaultValue=false)] - public StringValue? ToCostLayerType { get; set; } - - [DataMember(Name="ToProject", EmitDefaultValue=false)] - public StringValue? ToProject { get; set; } - - [DataMember(Name="ToProjectTask", EmitDefaultValue=false)] - public StringValue? ToProjectTask { get; set; } - - [DataMember(Name="ToSpecialOrderNbr", EmitDefaultValue=false)] - public StringValue? ToSpecialOrderNbr { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs deleted file mode 100644 index 75c0ca923..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/TransferOrderDetailAllocation.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class TransferOrderDetailAllocation : Entity - { - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="LotSerialNbr", EmitDefaultValue=false)] - public StringValue? LotSerialNbr { get; set; } - - [DataMember(Name="Qty", EmitDefaultValue=false)] - public DecimalValue? Qty { get; set; } - - [DataMember(Name="SplitLineNumber", EmitDefaultValue=false)] - public IntValue? SplitLineNumber { get; set; } - - [DataMember(Name="Subitem", EmitDefaultValue=false)] - public StringValue? Subitem { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs deleted file mode 100644 index 16552f29f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionDeductionOrBenefitDetail.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UnionDeductionOrBenefitDetail : Entity - { - - [DataMember(Name="ContributionAmount", EmitDefaultValue=false)] - public DecimalValue? ContributionAmount { get; set; } - - [DataMember(Name="ContributionCalculationMethod", EmitDefaultValue=false)] - public StringValue? ContributionCalculationMethod { get; set; } - - [DataMember(Name="ContributionPercent", EmitDefaultValue=false)] - public DecimalValue? ContributionPercent { get; set; } - - [DataMember(Name="ContributionType", EmitDefaultValue=false)] - public StringValue? ContributionType { get; set; } - - [DataMember(Name="DeductionAmount", EmitDefaultValue=false)] - public DecimalValue? DeductionAmount { get; set; } - - [DataMember(Name="DeductionAndBenefitCode", EmitDefaultValue=false)] - public StringValue? DeductionAndBenefitCode { get; set; } - - [DataMember(Name="DeductionCalculationMethod", EmitDefaultValue=false)] - public StringValue? DeductionCalculationMethod { get; set; } - - [DataMember(Name="DeductionPercent", EmitDefaultValue=false)] - public DecimalValue? DeductionPercent { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs deleted file mode 100644 index af46c225a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionEarningRateDetail.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UnionEarningRateDetail : Entity - { - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="WageRate", EmitDefaultValue=false)] - public DecimalValue? WageRate { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs deleted file mode 100644 index 4a5e1d040..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnionLocal.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UnionLocal : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="UnionLocalID", EmitDefaultValue=false)] - public StringValue? UnionLocalID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs deleted file mode 100644 index d280139eb..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/UnitsOfMeasure.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class UnitsOfMeasure : Entity, ITopLevelEntity - { - - [DataMember(Name="ConversionFactor", EmitDefaultValue=false)] - public DecimalValue? ConversionFactor { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="FromUOM", EmitDefaultValue=false)] - public StringValue? FromUOM { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="MultiplyOrDivide", EmitDefaultValue=false)] - public StringValue? MultiplyOrDivide { get; set; } - - [DataMember(Name="ToUOM", EmitDefaultValue=false)] - public StringValue? ToUOM { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs deleted file mode 100644 index 19450ae6b..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Vendor.cs +++ /dev/null @@ -1,187 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Vendor : Entity, ITopLevelEntity - { - - [DataMember(Name="AccountRef", EmitDefaultValue=false)] - public StringValue? AccountRef { get; set; } - - [DataMember(Name="APAccount", EmitDefaultValue=false)] - public StringValue? APAccount { get; set; } - - [DataMember(Name="APSubaccount", EmitDefaultValue=false)] - public StringValue? APSubaccount { get; set; } - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="CashAccount", EmitDefaultValue=false)] - public StringValue? CashAccount { get; set; } - - [DataMember(Name="Contacts", EmitDefaultValue=false)] - public List? Contacts { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="CurrencyRateType", EmitDefaultValue=false)] - public StringValue? CurrencyRateType { get; set; } - - [DataMember(Name="EnableCurrencyOverride", EmitDefaultValue=false)] - public BooleanValue? EnableCurrencyOverride { get; set; } - - [DataMember(Name="EnableRateOverride", EmitDefaultValue=false)] - public BooleanValue? EnableRateOverride { get; set; } - - [DataMember(Name="F1099Box", EmitDefaultValue=false)] - public StringValue? F1099Box { get; set; } - - [DataMember(Name="F1099Vendor", EmitDefaultValue=false)] - public BooleanValue? F1099Vendor { get; set; } - - [DataMember(Name="FATCA", EmitDefaultValue=false)] - public BooleanValue? FATCA { get; set; } - - [DataMember(Name="FOBPoint", EmitDefaultValue=false)] - public StringValue? FOBPoint { get; set; } - - [DataMember(Name="ForeignEntity", EmitDefaultValue=false)] - public BooleanValue? ForeignEntity { get; set; } - - [DataMember(Name="LandedCostVendor", EmitDefaultValue=false)] - public BooleanValue? LandedCostVendor { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LeadTimedays", EmitDefaultValue=false)] - public ShortValue? LeadTimedays { get; set; } - - [DataMember(Name="LegalName", EmitDefaultValue=false)] - public StringValue? LegalName { get; set; } - - [DataMember(Name="LocationName", EmitDefaultValue=false)] - public StringValue? LocationName { get; set; } - - [DataMember(Name="MainContact", EmitDefaultValue=false)] - public Contact? MainContact { get; set; } - - [DataMember(Name="MaxReceipt", EmitDefaultValue=false)] - public DecimalValue? MaxReceipt { get; set; } - - [DataMember(Name="MinReceipt", EmitDefaultValue=false)] - public DecimalValue? MinReceipt { get; set; } - - [DataMember(Name="ParentAccount", EmitDefaultValue=false)] - public StringValue? ParentAccount { get; set; } - - [DataMember(Name="PaymentBy", EmitDefaultValue=false)] - public StringValue? PaymentBy { get; set; } - - [DataMember(Name="PaymentInstructions", EmitDefaultValue=false)] - public List? PaymentInstructions { get; set; } - - [DataMember(Name="PaymentLeadTimedays", EmitDefaultValue=false)] - public ShortValue? PaymentLeadTimedays { get; set; } - - [DataMember(Name="PaymentMethod", EmitDefaultValue=false)] - public StringValue? PaymentMethod { get; set; } - - [DataMember(Name="PaySeparately", EmitDefaultValue=false)] - public BooleanValue? PaySeparately { get; set; } - - [DataMember(Name="PrimaryContact", EmitDefaultValue=false)] - public Contact? PrimaryContact { get; set; } - - [DataMember(Name="PrintOrders", EmitDefaultValue=false)] - public BooleanValue? PrintOrders { get; set; } - - [DataMember(Name="ReceiptAction", EmitDefaultValue=false)] - public StringValue? ReceiptAction { get; set; } - - [DataMember(Name="ReceivingBranch", EmitDefaultValue=false)] - public StringValue? ReceivingBranch { get; set; } - - [DataMember(Name="RemittanceAddressOverride", EmitDefaultValue=false)] - public BooleanValue? RemittanceAddressOverride { get; set; } - - [DataMember(Name="RemittanceContact", EmitDefaultValue=false)] - public Contact? RemittanceContact { get; set; } - - [DataMember(Name="RemittanceContactOverride", EmitDefaultValue=false)] - public BooleanValue? RemittanceContactOverride { get; set; } - - [DataMember(Name="SendOrdersbyEmail", EmitDefaultValue=false)] - public BooleanValue? SendOrdersbyEmail { get; set; } - - [DataMember(Name="ShippingContactOverride", EmitDefaultValue=false)] - public BooleanValue? ShippingContactOverride { get; set; } - - [DataMember(Name="ShippingAddressOverride", EmitDefaultValue=false)] - public BooleanValue? ShippingAddressOverride { get; set; } - - [DataMember(Name="ShippingContact", EmitDefaultValue=false)] - public Contact? ShippingContact { get; set; } - - [DataMember(Name="ShippingTerms", EmitDefaultValue=false)] - public StringValue? ShippingTerms { get; set; } - - [DataMember(Name="ShipVia", EmitDefaultValue=false)] - public StringValue? ShipVia { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="TaxCalculationMode", EmitDefaultValue=false)] - public StringValue? TaxCalculationMode { get; set; } - - [DataMember(Name="TaxRegistrationID", EmitDefaultValue=false)] - public StringValue? TaxRegistrationID { get; set; } - - [DataMember(Name="TaxZone", EmitDefaultValue=false)] - public StringValue? TaxZone { get; set; } - - [DataMember(Name="Terms", EmitDefaultValue=false)] - public StringValue? Terms { get; set; } - - [DataMember(Name="ThresholdReceipt", EmitDefaultValue=false)] - public DecimalValue? ThresholdReceipt { get; set; } - - [DataMember(Name="VendorClass", EmitDefaultValue=false)] - public StringValue? VendorClass { get; set; } - - [DataMember(Name="VendorID", EmitDefaultValue=false)] - public StringValue? VendorID { get; set; } - - [DataMember(Name="VendorIsLaborUnion", EmitDefaultValue=false)] - public BooleanValue? VendorIsLaborUnion { get; set; } - - [DataMember(Name="VendorIsTaxAgency", EmitDefaultValue=false)] - public BooleanValue? VendorIsTaxAgency { get; set; } - - [DataMember(Name="VendorName", EmitDefaultValue=false)] - public StringValue? VendorName { get; set; } - - [DataMember(Name="Warehouse", EmitDefaultValue=false)] - public StringValue? Warehouse { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs deleted file mode 100644 index f1e7de8c4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorClass.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VendorClass : Entity, ITopLevelEntity - { - - [DataMember(Name="Attributes", EmitDefaultValue=false)] - public List? Attributes { get; set; } - - [DataMember(Name="ClassID", EmitDefaultValue=false)] - public StringValue? ClassID { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs deleted file mode 100644 index 55d551168..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceDetail.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VendorPriceDetail : Entity - { - - [DataMember(Name="BreakQty", EmitDefaultValue=false)] - public DecimalValue? BreakQty { get; set; } - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Price", EmitDefaultValue=false)] - public DecimalValue? Price { get; set; } - - [DataMember(Name="Promotional", EmitDefaultValue=false)] - public BooleanValue? Promotional { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - [DataMember(Name="VendorName", EmitDefaultValue=false)] - public StringValue? VendorName { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs deleted file mode 100644 index def359011..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheet.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VendorPriceWorksheet : Entity, ITopLevelEntity - { - - [DataMember(Name="CreatedDateTime", EmitDefaultValue=false)] - public DateTimeValue? CreatedDateTime { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="ExpirationDate", EmitDefaultValue=false)] - public DateTimeValue? ExpirationDate { get; set; } - - [DataMember(Name="Hold", EmitDefaultValue=false)] - public BooleanValue? Hold { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="OverwriteOverlappingPrices", EmitDefaultValue=false)] - public BooleanValue? OverwriteOverlappingPrices { get; set; } - - [DataMember(Name="Promotional", EmitDefaultValue=false)] - public BooleanValue? Promotional { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="Status", EmitDefaultValue=false)] - public StringValue? Status { get; set; } - - [DataMember(Name="VendorSalesPrices", EmitDefaultValue=false)] - public List? VendorSalesPrices { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs deleted file mode 100644 index fc218338f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPriceWorksheetDetail.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VendorPriceWorksheetDetail : Entity - { - - [DataMember(Name="BreakQty", EmitDefaultValue=false)] - public DecimalValue? BreakQty { get; set; } - - [DataMember(Name="CurrencyID", EmitDefaultValue=false)] - public StringValue? CurrencyID { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="LineID", EmitDefaultValue=false)] - public IntValue? LineID { get; set; } - - [DataMember(Name="PendingPrice", EmitDefaultValue=false)] - public DecimalValue? PendingPrice { get; set; } - - [DataMember(Name="ReferenceNbr", EmitDefaultValue=false)] - public StringValue? ReferenceNbr { get; set; } - - [DataMember(Name="SourcePrice", EmitDefaultValue=false)] - public DecimalValue? SourcePrice { get; set; } - - [DataMember(Name="Tax", EmitDefaultValue=false)] - public StringValue? Tax { get; set; } - - [DataMember(Name="UOM", EmitDefaultValue=false)] - public StringValue? UOM { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs deleted file mode 100644 index 6dcc9fb18..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VendorPricesInquiry.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VendorPricesInquiry : Entity, ITopLevelEntity - { - - [DataMember(Name="InventoryID", EmitDefaultValue=false)] - public StringValue? InventoryID { get; set; } - - [DataMember(Name="ItemClass", EmitDefaultValue=false)] - public StringValue? ItemClass { get; set; } - - [DataMember(Name="ProductManager", EmitDefaultValue=false)] - public StringValue? ProductManager { get; set; } - - [DataMember(Name="ProductWorkgroup", EmitDefaultValue=false)] - public StringValue? ProductWorkgroup { get; set; } - - [DataMember(Name="Vendor", EmitDefaultValue=false)] - public StringValue? Vendor { get; set; } - - [DataMember(Name="VendorPriceDetails", EmitDefaultValue=false)] - public List? VendorPriceDetails { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs deleted file mode 100644 index dc99d6a5f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/VisibilitySettings.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class VisibilitySettings : Entity - { - - [DataMember(Name="AP", EmitDefaultValue=false)] - public BooleanValue? AP { get; set; } - - [DataMember(Name="AR", EmitDefaultValue=false)] - public BooleanValue? AR { get; set; } - - [DataMember(Name="CA", EmitDefaultValue=false)] - public BooleanValue? CA { get; set; } - - [DataMember(Name="CRM", EmitDefaultValue=false)] - public BooleanValue? CRM { get; set; } - - [DataMember(Name="Expenses", EmitDefaultValue=false)] - public BooleanValue? Expenses { get; set; } - - [DataMember(Name="GL", EmitDefaultValue=false)] - public BooleanValue? GL { get; set; } - - [DataMember(Name="IN", EmitDefaultValue=false)] - public BooleanValue? IN { get; set; } - - [DataMember(Name="PO", EmitDefaultValue=false)] - public BooleanValue? PO { get; set; } - - [DataMember(Name="SO", EmitDefaultValue=false)] - public BooleanValue? SO { get; set; } - - [DataMember(Name="TimeEntries", EmitDefaultValue=false)] - public BooleanValue? TimeEntries { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs deleted file mode 100644 index de42f47b4..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCode.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCode : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="wcccode", EmitDefaultValue=false)] - public StringValue? wcccode { get; set; } - - [DataMember(Name="WCCCodeCostCodeSources", EmitDefaultValue=false)] - public List? WCCCodeCostCodeSources { get; set; } - - [DataMember(Name="WCCCodeLaborItemSources", EmitDefaultValue=false)] - public List? WCCCodeLaborItemSources { get; set; } - - [DataMember(Name="WCCCodeMaxInsurableWages", EmitDefaultValue=false)] - public List? WCCCodeMaxInsurableWages { get; set; } - - [DataMember(Name="WCCCodeProjectSources", EmitDefaultValue=false)] - public List? WCCCodeProjectSources { get; set; } - - [DataMember(Name="WCCCodeRates", EmitDefaultValue=false)] - public List? WCCCodeRates { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs deleted file mode 100644 index f0f6399a0..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeCostCodeSource.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeCostCodeSource : Entity - { - - [DataMember(Name="CostCodeFrom", EmitDefaultValue=false)] - public StringValue? CostCodeFrom { get; set; } - - [DataMember(Name="CostCodeTo", EmitDefaultValue=false)] - public StringValue? CostCodeTo { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] - public StringValue? WorkCodeID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs deleted file mode 100644 index b7a6c5bb5..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeLaborItemSource.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeLaborItemSource : Entity - { - - [DataMember(Name="LaborItem", EmitDefaultValue=false)] - public StringValue? LaborItem { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] - public StringValue? WorkCodeID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs deleted file mode 100644 index 49de59b3a..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWage.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeMaxInsurableWage : Entity - { - - [DataMember(Name="DeductionandBenefitCode", EmitDefaultValue=false)] - public StringValue? DeductionandBenefitCode { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="Wage", EmitDefaultValue=false)] - public DecimalValue? Wage { get; set; } - - [DataMember(Name="WCCode", EmitDefaultValue=false)] - public StringValue? WCCode { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs deleted file mode 100644 index a808e1658..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeMaxInsurableWageDetail.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeMaxInsurableWageDetail : Entity - { - - [DataMember(Name="DeductionandBenefitCode", EmitDefaultValue=false)] - public StringValue? DeductionandBenefitCode { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="Wage", EmitDefaultValue=false)] - public DecimalValue? Wage { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs deleted file mode 100644 index 1475161c9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeProjectSource.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeProjectSource : Entity - { - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="LineNbr", EmitDefaultValue=false)] - public IntValue? LineNbr { get; set; } - - [DataMember(Name="Project", EmitDefaultValue=false)] - public StringValue? Project { get; set; } - - [DataMember(Name="ProjectTask", EmitDefaultValue=false)] - public StringValue? ProjectTask { get; set; } - - [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] - public StringValue? WorkCodeID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs deleted file mode 100644 index c7dd12511..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRate.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeRate : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="BenefitCalculationMethod", EmitDefaultValue=false)] - public StringValue? BenefitCalculationMethod { get; set; } - - [DataMember(Name="BenefitRate", EmitDefaultValue=false)] - public DecimalValue? BenefitRate { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="DeductionCalculationMethod", EmitDefaultValue=false)] - public StringValue? DeductionCalculationMethod { get; set; } - - [DataMember(Name="DeductionCode", EmitDefaultValue=false)] - public StringValue? DeductionCode { get; set; } - - [DataMember(Name="DeductionRate", EmitDefaultValue=false)] - public DecimalValue? DeductionRate { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="RecordID", EmitDefaultValue=false)] - public IntValue? RecordID { get; set; } - - [DataMember(Name="State", EmitDefaultValue=false)] - public StringValue? State { get; set; } - - [DataMember(Name="WorkCodeID", EmitDefaultValue=false)] - public StringValue? WorkCodeID { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs deleted file mode 100644 index 59459db2f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WCCCodeRateDetail.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WCCCodeRateDetail : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public GuidValue? Active { get; set; } - - [DataMember(Name="BenefitRate", EmitDefaultValue=false)] - public DecimalValue? BenefitRate { get; set; } - - [DataMember(Name="Branch", EmitDefaultValue=false)] - public StringValue? Branch { get; set; } - - [DataMember(Name="DeductionRate", EmitDefaultValue=false)] - public DecimalValue? DeductionRate { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EffectiveDate", EmitDefaultValue=false)] - public DateTimeValue? EffectiveDate { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="WCCCode", EmitDefaultValue=false)] - public StringValue? WCCCode { get; set; } - - [DataMember(Name="WCCCodeMaxInsurableWages", EmitDefaultValue=false)] - public List? WCCCodeMaxInsurableWages { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs deleted file mode 100644 index 736150e29..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/Warehouse.cs +++ /dev/null @@ -1,127 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class Warehouse : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="COGSExpenseAccount", EmitDefaultValue=false)] - public StringValue? COGSExpenseAccount { get; set; } - - [DataMember(Name="COGSExpenseSubaccount", EmitDefaultValue=false)] - public StringValue? COGSExpenseSubaccount { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="DiscountAccount", EmitDefaultValue=false)] - public StringValue? DiscountAccount { get; set; } - - [DataMember(Name="DiscountSubaccount", EmitDefaultValue=false)] - public StringValue? DiscountSubaccount { get; set; } - - [DataMember(Name="DropShipLocationID", EmitDefaultValue=false)] - public StringValue? DropShipLocationID { get; set; } - - [DataMember(Name="FreightChargeAccount", EmitDefaultValue=false)] - public StringValue? FreightChargeAccount { get; set; } - - [DataMember(Name="FreightChargeSubaccount", EmitDefaultValue=false)] - public StringValue? FreightChargeSubaccount { get; set; } - - [DataMember(Name="InventoryAccount", EmitDefaultValue=false)] - public StringValue? InventoryAccount { get; set; } - - [DataMember(Name="InventorySubaccount", EmitDefaultValue=false)] - public StringValue? InventorySubaccount { get; set; } - - [DataMember(Name="LandedCostVarianceAccount", EmitDefaultValue=false)] - public StringValue? LandedCostVarianceAccount { get; set; } - - [DataMember(Name="LandedCostVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? LandedCostVarianceSubaccount { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="Locations", EmitDefaultValue=false)] - public List? Locations { get; set; } - - [DataMember(Name="MiscChargeAccount", EmitDefaultValue=false)] - public StringValue? MiscChargeAccount { get; set; } - - [DataMember(Name="MiscChargeSubaccount", EmitDefaultValue=false)] - public StringValue? MiscChargeSubaccount { get; set; } - - [DataMember(Name="NonStockPickingLocationID", EmitDefaultValue=false)] - public StringValue? NonStockPickingLocationID { get; set; } - - [DataMember(Name="OverrideInventoryAccountSubaccount", EmitDefaultValue=false)] - public BooleanValue? OverrideInventoryAccountSubaccount { get; set; } - - [DataMember(Name="POAccrualAccount", EmitDefaultValue=false)] - public StringValue? POAccrualAccount { get; set; } - - [DataMember(Name="POAccrualSubaccount", EmitDefaultValue=false)] - public StringValue? POAccrualSubaccount { get; set; } - - [DataMember(Name="PurchasePriceVarianceAccount", EmitDefaultValue=false)] - public StringValue? PurchasePriceVarianceAccount { get; set; } - - [DataMember(Name="PurchasePriceVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? PurchasePriceVarianceSubaccount { get; set; } - - [DataMember(Name="ReasonCodeSubaccount", EmitDefaultValue=false)] - public StringValue? ReasonCodeSubaccount { get; set; } - - [DataMember(Name="ReceivingLocationID", EmitDefaultValue=false)] - public StringValue? ReceivingLocationID { get; set; } - - [DataMember(Name="RMALocationID", EmitDefaultValue=false)] - public StringValue? RMALocationID { get; set; } - - [DataMember(Name="SalesAccount", EmitDefaultValue=false)] - public StringValue? SalesAccount { get; set; } - - [DataMember(Name="SalesSubaccount", EmitDefaultValue=false)] - public StringValue? SalesSubaccount { get; set; } - - [DataMember(Name="ShippingLocationID", EmitDefaultValue=false)] - public StringValue? ShippingLocationID { get; set; } - - [DataMember(Name="StandardCostRevaluationAccount", EmitDefaultValue=false)] - public StringValue? StandardCostRevaluationAccount { get; set; } - - [DataMember(Name="StandardCostRevaluationSubaccount", EmitDefaultValue=false)] - public StringValue? StandardCostRevaluationSubaccount { get; set; } - - [DataMember(Name="StandardCostVarianceAccount", EmitDefaultValue=false)] - public StringValue? StandardCostVarianceAccount { get; set; } - - [DataMember(Name="StandardCostVarianceSubaccount", EmitDefaultValue=false)] - public StringValue? StandardCostVarianceSubaccount { get; set; } - - [DataMember(Name="UseItemDefaultLocationForPicking", EmitDefaultValue=false)] - public BooleanValue? UseItemDefaultLocationForPicking { get; set; } - - [DataMember(Name="WarehouseID", EmitDefaultValue=false)] - public StringValue? WarehouseID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs deleted file mode 100644 index 2d8d6acde..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WarehouseLocation.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WarehouseLocation : Entity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AssemblyAllowed", EmitDefaultValue=false)] - public BooleanValue? AssemblyAllowed { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="LocationID", EmitDefaultValue=false)] - public StringValue? LocationID { get; set; } - - [DataMember(Name="PickPriority", EmitDefaultValue=false)] - public ShortValue? PickPriority { get; set; } - - [DataMember(Name="ReceiptsAllowed", EmitDefaultValue=false)] - public BooleanValue? ReceiptsAllowed { get; set; } - - [DataMember(Name="SalesAllowed", EmitDefaultValue=false)] - public BooleanValue? SalesAllowed { get; set; } - - [DataMember(Name="TransfersAllowed", EmitDefaultValue=false)] - public BooleanValue? TransfersAllowed { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs deleted file mode 100644 index 4dafb77c9..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendar.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WorkCalendar : Entity, ITopLevelEntity - { - - [DataMember(Name="CalendarExceptions", EmitDefaultValue=false)] - public List? CalendarExceptions { get; set; } - - [DataMember(Name="CalendarSettings", EmitDefaultValue=false)] - public CalendarSettings? CalendarSettings { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="TimeZone", EmitDefaultValue=false)] - public StringValue? TimeZone { get; set; } - - [DataMember(Name="WorkCalendarID", EmitDefaultValue=false)] - public StringValue? WorkCalendarID { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs deleted file mode 100644 index a3132b581..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkCalendarExceptionDetail.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WorkCalendarExceptionDetail : Entity - { - - [DataMember(Name="Date", EmitDefaultValue=false)] - public DateTimeValue? Date { get; set; } - - [DataMember(Name="DayOfWeek", EmitDefaultValue=false)] - public StringValue? DayOfWeek { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="EndTime", EmitDefaultValue=false)] - public DateTimeValue? EndTime { get; set; } - - [DataMember(Name="StartTime", EmitDefaultValue=false)] - public DateTimeValue? StartTime { get; set; } - - [DataMember(Name="UnpaidBreakTime", EmitDefaultValue=false)] - public StringValue? UnpaidBreakTime { get; set; } - - [DataMember(Name="WorkDay", EmitDefaultValue=false)] - public BooleanValue? WorkDay { get; set; } - - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs deleted file mode 100644 index 97e2faa0f..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkClassCompensationCode.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WorkClassCompensationCode : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="CostCodeFrom", EmitDefaultValue=false)] - public StringValue? CostCodeFrom { get; set; } - - [DataMember(Name="CostCodeTo", EmitDefaultValue=false)] - public StringValue? CostCodeTo { get; set; } - - [DataMember(Name="Description", EmitDefaultValue=false)] - public StringValue? Description { get; set; } - - [DataMember(Name="WCCCode", EmitDefaultValue=false)] - public StringValue? WCCCode { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs b/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs deleted file mode 100644 index d3d7e20b7..000000000 --- a/Endpoints/Acumatica.ISVCB_23.200.001/Model/WorkLocation.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; - -using Newtonsoft.Json; - -using Acumatica.RESTClient.Client; -using Acumatica.RESTClient.ContractBasedApi; -using Acumatica.RESTClient.ContractBasedApi.Model; - -namespace Acumatica.ISVCB_23_200_001.Model -{ - [DataContract] - public class WorkLocation : Entity, ITopLevelEntity - { - - [DataMember(Name="Active", EmitDefaultValue=false)] - public BooleanValue? Active { get; set; } - - [DataMember(Name="AddressInfo", EmitDefaultValue=false)] - public Address? AddressInfo { get; set; } - - [DataMember(Name="LastModifiedDateTime", EmitDefaultValue=false)] - public DateTimeValue? LastModifiedDateTime { get; set; } - - [DataMember(Name="UseAddressfromBranchID", EmitDefaultValue=false)] - public StringValue? UseAddressfromBranchID { get; set; } - - [DataMember(Name="WorkLocationID", EmitDefaultValue=false)] - public StringValue? WorkLocationID { get; set; } - - [DataMember(Name="WorkLocationName", EmitDefaultValue=false)] - public StringValue? WorkLocationName { get; set; } - - public virtual string GetEndpointPath() - { - return "entity/ISVCB/23.200.001"; - } - } -} \ No newline at end of file diff --git a/Loggers/ConsoleRequestLogger.cs b/Loggers/ConsoleRequestLogger.cs index 84bc0bb8b..299692411 100644 --- a/Loggers/ConsoleRequestLogger.cs +++ b/Loggers/ConsoleRequestLogger.cs @@ -38,7 +38,6 @@ public static void LogRequest(HttpRequestMessage request) Console.WriteLine(DateTime.Now.ToString()); Console.WriteLine("Request"); Console.WriteLine("\tMethod: " + request.Method); - Console.WriteLine("\tHeaders: " + request.Headers); Console.WriteLine("\tURL: " + request.RequestUri); string body = request.Content?.ReadAsStringAsync().Result; From 85433a82231e6335f469ca3cd2c6ed8417e4dd87 Mon Sep 17 00:00:00 2001 From: Evgeny Afanasiev Date: Tue, 10 Feb 2026 16:30:05 +0300 Subject: [PATCH 4/5] Fixing spaces --- Acumatica.RESTClient/AuthApi/AuthApi.cs | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/Acumatica.RESTClient/AuthApi/AuthApi.cs b/Acumatica.RESTClient/AuthApi/AuthApi.cs index 31a49565e..7224eab28 100644 --- a/Acumatica.RESTClient/AuthApi/AuthApi.cs +++ b/Acumatica.RESTClient/AuthApi/AuthApi.cs @@ -31,8 +31,7 @@ public async static Task RefreshAccessTokenAsync(this ApiClient client, string c { if (client == null || string.IsNullOrEmpty(client.Token?.Refresh_token)) ThrowMissingParameter(nameof(RefreshAccessToken), "Refresh_Token"); - - var time = DateTime.UtcNow; + var time = DateTime.UtcNow; HttpResponseMessage response = await client!.CallApiAsync( resourcePath: "/identity/connect/token", method: HttpMethod.Post, @@ -52,7 +51,7 @@ public async static Task RefreshAccessTokenAsync(this ApiClient client, string c response.EnsureSuccessStatusCode(); client.Token = await DeserializeAsync(response).ConfigureAwait(false); - client.Token?.SetTokenObtainedDT(time); + client.Token?.SetTokenObtainedDT(time); } /// /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) @@ -86,7 +85,7 @@ public async static Task ReceiveAccessTokenAsync( OAuthScope scope, CancellationToken cancellationToken = default) { - var time = DateTime.UtcNow; + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "identity/connect/token", method: HttpMethod.Post, @@ -107,7 +106,7 @@ public async static Task ReceiveAccessTokenAsync( await VerifyResponseAsync(client, response, nameof(ReceiveAccessTokenAsync)).ConfigureAwait(false); client.Token = await DeserializeAsync(response).ConfigureAwait(false); - client.Token?.SetTokenObtainedDT(time); + client.Token?.SetTokenObtainedDT(time); } /// @@ -132,11 +131,11 @@ public static string Authorize(this ApiClient client, string clientID, string cl /// /// public async static Task AuthorizeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - OAuthScope scope, + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + OAuthScope scope, CancellationToken cancellationToken = default) { List> queryParams = new List> @@ -197,7 +196,7 @@ public static async Task ReceiveAccessTokenAuthCodeAsync( string code, CancellationToken cancellationToken = default) { - var time = DateTime.UtcNow; + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "/identity/connect/token", method: HttpMethod.Post, @@ -218,7 +217,7 @@ public static async Task ReceiveAccessTokenAuthCodeAsync( await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); client.Token = await DeserializeAsync(response).ConfigureAwait(false); - client.Token?.SetTokenObtainedDT(time); + client.Token?.SetTokenObtainedDT(time); } #endregion @@ -404,4 +403,4 @@ private static string PrepareScopeParameter(OAuthScope scope) #endregion } -} +} \ No newline at end of file From 7199419e479a4abeda5e8a22bf625c027795a2b1 Mon Sep 17 00:00:00 2001 From: Evgeny Afanasiev Date: Tue, 10 Feb 2026 17:01:14 +0300 Subject: [PATCH 5/5] Reverting original line breaks --- Acumatica.RESTClient/AuthApi/AuthApi.cs | 592 ++++++++++++------------ 1 file changed, 296 insertions(+), 296 deletions(-) diff --git a/Acumatica.RESTClient/AuthApi/AuthApi.cs b/Acumatica.RESTClient/AuthApi/AuthApi.cs index 7224eab28..e5c42c7d0 100644 --- a/Acumatica.RESTClient/AuthApi/AuthApi.cs +++ b/Acumatica.RESTClient/AuthApi/AuthApi.cs @@ -1,347 +1,347 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net.Http; -using System.Text; -using System.Threading; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Text; +using System.Threading; using System.Threading.Tasks; -using Acumatica.RESTClient.Api; +using Acumatica.RESTClient.Api; using Acumatica.RESTClient.AuthApi.Model; -using Acumatica.RESTClient.Client; +using Acumatica.RESTClient.Client; -using static Acumatica.RESTClient.Auxiliary.ApiClientHelpers; - - -namespace Acumatica.RESTClient.AuthApi +using static Acumatica.RESTClient.Auxiliary.ApiClientHelpers; + + +namespace Acumatica.RESTClient.AuthApi { - /// - /// Represents a collection of functions to interact with the Authorization endpoint - /// - public static class AuthApiExtensions + /// + /// Represents a collection of functions to interact with the Authorization endpoint + /// + public static class AuthApiExtensions { - #region Public Methods - #region OAuth - public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) + #region Public Methods + #region OAuth + public static void RefreshAccessToken(this ApiClient client, string clientID, string clientSecret) { RefreshAccessTokenAsync(client, clientID, clientSecret).GetAwaiter().GetResult(); } - public async static Task RefreshAccessTokenAsync(this ApiClient client, string clientID, string clientSecret, CancellationToken cancellationToken = default) - { - if (client == null || string.IsNullOrEmpty(client.Token?.Refresh_token)) + public async static Task RefreshAccessTokenAsync(this ApiClient client, string clientID, string clientSecret, CancellationToken cancellationToken = default) + { + if (client == null || string.IsNullOrEmpty(client.Token?.Refresh_token)) ThrowMissingParameter(nameof(RefreshAccessToken), "Refresh_Token"); - var time = DateTime.UtcNow; + var time = DateTime.UtcNow; HttpResponseMessage response = await client!.CallApiAsync( resourcePath: "/identity/connect/token", method: HttpMethod.Post, queryParams: null, body: await ToFormUrlEncodedAsync(new Dictionary() - { - {"grant_type", "refresh_token" }, - {"client_id", clientID }, - {"client_secret", clientSecret }, + { + {"grant_type", "refresh_token" }, + {"client_id", clientID }, + {"client_secret", clientSecret }, {"refresh_token", client.Token!.Refresh_token! }, }).ConfigureAwait(false), acceptType: HeaderContentType.None, contentType: HeaderContentType.WwwForm, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - + cancellationToken: cancellationToken + ).ConfigureAwait(false); + response.EnsureSuccessStatusCode(); - client.Token = await DeserializeAsync(response).ConfigureAwait(false); - client.Token?.SetTokenObtainedDT(time); + client.Token = await DeserializeAsync(response).ConfigureAwait(false); + client.Token?.SetTokenObtainedDT(time); } - /// - /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) + /// + /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) /// - /// - /// - /// - /// - /// - /// - public static void ReceiveAccessToken(this ApiClient client, string clientID, string clientSecret, string username, string password, OAuthScope scope) + /// + /// + /// + /// + /// + /// + public static void ReceiveAccessToken(this ApiClient client, string clientID, string clientSecret, string username, string password, OAuthScope scope) { ReceiveAccessTokenAsync(client, clientID, clientSecret, username, password, scope).GetAwaiter().GetResult(); } - /// - /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) + /// + /// Receives access token for OAuth 2.0 authentication (Resource owner password credentials flow) /// - /// - /// - /// - /// - /// + /// + /// + /// + /// + /// /// - /// - public async static Task ReceiveAccessTokenAsync( - this ApiClient client, - string clientID, - string clientSecret, - string username, - string password, - OAuthScope scope, - CancellationToken cancellationToken = default) + /// + public async static Task ReceiveAccessTokenAsync( + this ApiClient client, + string clientID, + string clientSecret, + string username, + string password, + OAuthScope scope, + CancellationToken cancellationToken = default) { - var time = DateTime.UtcNow; + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "identity/connect/token", method: HttpMethod.Post, acceptType: HeaderContentType.None, contentType: HeaderContentType.WwwForm, body: await ToFormUrlEncodedAsync(new Dictionary - { - {"grant_type", "password" }, - {"client_id", clientID }, - {"client_secret", clientSecret }, - {"username", username }, - {"password", password }, + { + {"grant_type", "password" }, + {"client_id", clientID }, + {"client_secret", clientSecret }, + {"username", username }, + {"password", password }, {"scope", PrepareScopeParameter(scope) } - }).ConfigureAwait(false), - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, nameof(ReceiveAccessTokenAsync)).ConfigureAwait(false); - + }).ConfigureAwait(false), + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, nameof(ReceiveAccessTokenAsync)).ConfigureAwait(false); + client.Token = await DeserializeAsync(response).ConfigureAwait(false); - client.Token?.SetTokenObtainedDT(time); + client.Token?.SetTokenObtainedDT(time); } - /// - /// + /// + /// /// - /// - /// - /// - /// - /// - public static string Authorize(this ApiClient client, string clientID, string clientSecret, string redirectUrl, OAuthScope scope) + /// + /// + /// + /// + /// + public static string Authorize(this ApiClient client, string clientID, string clientSecret, string redirectUrl, OAuthScope scope) { return AuthorizeAsync(client, clientID, clientSecret, redirectUrl, scope).Result; } - /// - /// + /// + /// /// - /// - /// - /// - /// + /// + /// + /// + /// /// - /// - public async static Task AuthorizeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - OAuthScope scope, - CancellationToken cancellationToken = default) - { + /// + public async static Task AuthorizeAsync( + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + OAuthScope scope, + CancellationToken cancellationToken = default) + { List> queryParams = new List> { new KeyValuePair("response_type", "code"), new KeyValuePair("client_id", clientID), new KeyValuePair("scope", PrepareScopeParameter(scope)), new KeyValuePair("redirect_uri", redirectUrl) - }; - - HttpResponseMessage response = await client.CallApiAsync( - resourcePath: "identity/connect/authorize", - method: HttpMethod.Get, - acceptType: HeaderContentType.Any, + }; + + HttpResponseMessage response = await client.CallApiAsync( + resourcePath: "identity/connect/authorize", + method: HttpMethod.Get, + acceptType: HeaderContentType.Any, contentType: HeaderContentType.None, - queryParams: queryParams, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); - - var locationHeader = response.Headers.Where(_ => _.Key == "Location").FirstOrDefault(); - if (!response.Headers.Where(_ => _.Key == "Location").Any()) - { - //maybe we've already been redirected, let's take response URL in this case - return response.RequestMessage.RequestUri.ToString(); - } - return response.Headers.Where(_ => _.Key == "Location").First().Value.First().ToString(); + queryParams: queryParams, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); + + var locationHeader = response.Headers.Where(_ => _.Key == "Location").FirstOrDefault(); + if (!response.Headers.Where(_ => _.Key == "Location").Any()) + { + //maybe we've already been redirected, let's take response URL in this case + return response.RequestMessage.RequestUri.ToString(); + } + return response.Headers.Where(_ => _.Key == "Location").First().Value.First().ToString(); } - /// - /// Receives access token for OAuth 2.0 authentication (Authorization code flow) - /// - /// - /// - /// - /// - /// - public static void ReceiveAccessTokenAuthCode(this ApiClient client, string clientID, string clientSecret, string redirectUrl, string code) + /// + /// Receives access token for OAuth 2.0 authentication (Authorization code flow) + /// + /// + /// + /// + /// + /// + public static void ReceiveAccessTokenAuthCode(this ApiClient client, string clientID, string clientSecret, string redirectUrl, string code) { - ReceiveAccessTokenAuthCodeAsync(client, clientID, clientSecret, redirectUrl, code).GetAwaiter().GetResult(); + ReceiveAccessTokenAuthCodeAsync(client, clientID, clientSecret, redirectUrl, code).GetAwaiter().GetResult(); } - /// - /// Receives access token for OAuth 2.0 authentication (Authorization code flow) - /// - /// - /// - /// - /// + /// + /// Receives access token for OAuth 2.0 authentication (Authorization code flow) + /// + /// + /// + /// + /// /// - /// - public static async Task ReceiveAccessTokenAuthCodeAsync( - this ApiClient client, - string clientID, - string clientSecret, - string redirectUrl, - string code, - CancellationToken cancellationToken = default) + /// + public static async Task ReceiveAccessTokenAuthCodeAsync( + this ApiClient client, + string clientID, + string clientSecret, + string redirectUrl, + string code, + CancellationToken cancellationToken = default) { - var time = DateTime.UtcNow; + var time = DateTime.UtcNow; HttpResponseMessage response = await client.CallApiAsync( resourcePath: "/identity/connect/token", method: HttpMethod.Post, acceptType: HeaderContentType.None, contentType: HeaderContentType.WwwForm, body: await ToFormUrlEncodedAsync(new Dictionary - { - {"grant_type", "authorization_code" }, - {"code", code }, - {"redirect_uri", redirectUrl }, - {"client_id", clientID }, + { + {"grant_type", "authorization_code" }, + {"code", code }, + {"redirect_uri", redirectUrl }, + {"client_id", clientID }, {"client_secret", clientSecret }, // {"scope", PrepareScopeParameter(scope) } }).ConfigureAwait(false), - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); - + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, "RequestToken").ConfigureAwait(false); + client.Token = await DeserializeAsync(response).ConfigureAwait(false); - client.Token?.SetTokenObtainedDT(time); + client.Token?.SetTokenObtainedDT(time); } - #endregion + #endregion - #region Login - /// - /// Logs in to the system. - /// + #region Login + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// Name of the user that is used to open a new session (required). - /// User password (required). - /// Defines the tenant to log in. - /// Defines the branch to log in. - /// Defines the locale to use for localizable data. - [Obsolete("Use OAuth 2.0 methods instead.")] - public static void Login(this ApiClient client, string username, string password, string? tenant = null, string? branch = null, string? locale = null) - { - Login(client, new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale)); + /// + /// Name of the user that is used to open a new session (required). + /// User password (required). + /// Defines the tenant to log in. + /// Defines the branch to log in. + /// Defines the locale to use for localizable data. + [Obsolete("Use OAuth 2.0 methods instead.")] + public static void Login(this ApiClient client, string username, string password, string? tenant = null, string? branch = null, string? locale = null) + { + Login(client, new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale)); } - /// - /// Logs in to the system. - /// + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// Name of the user that is used to open a new session (required). - /// User password (required). - /// Defines the tenant to log in. - /// Defines the branch to log in. + /// + /// Name of the user that is used to open a new session (required). + /// User password (required). + /// Defines the tenant to log in. + /// Defines the branch to log in. /// Defines the locale to use for localizable data. /// - [Obsolete("Use OAuth 2.0 methods instead.")] - public async static Task LoginAsync(this ApiClient client, - string username, string password, string? tenant = null, string? branch = null, string? locale = null, - CancellationToken cancellationToken = default) + [Obsolete("Use OAuth 2.0 methods instead.")] + public async static Task LoginAsync(this ApiClient client, + string username, string password, string? tenant = null, string? branch = null, string? locale = null, + CancellationToken cancellationToken = default) { - await LoginAsync( + await LoginAsync( client: client, - credentials: new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale), - cancellationToken: cancellationToken - ).ConfigureAwait(false); + credentials: new Credentials(name: username, password: password, tenant: tenant, branch: branch, locale: locale), + cancellationToken: cancellationToken + ).ConfigureAwait(false); } - /// - /// Logs in to the system. - /// + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// - /// object that provides information required to log into the web service. - /// - [Obsolete("Use OAuth 2.0 methods instead.")] - public static void Login(this ApiClient client, Credentials credentials) + /// + /// + /// object that provides information required to log into the web service. + /// + [Obsolete("Use OAuth 2.0 methods instead.")] + public static void Login(this ApiClient client, Credentials credentials) { LoginAsync(client, credentials).GetAwaiter().GetResult(); } - /// - /// Logs in to the system. - /// + /// + /// Logs in to the system. + /// /// Thrown when fails to make API call - /// - /// - /// object that provides information required to log into the web service. + /// + /// + /// object that provides information required to log into the web service. /// /// - [Obsolete("Use OAuth 2.0 methods instead.")] - public async static Task LoginAsync( - this ApiClient client, - Credentials credentials, - CancellationToken cancellationToken = default) + [Obsolete("Use OAuth 2.0 methods instead.")] + public async static Task LoginAsync( + this ApiClient client, + Credentials credentials, + CancellationToken cancellationToken = default) { - if (credentials == null) - ThrowMissingParameter(nameof(LoginAsync), nameof(credentials)); - - HttpResponseMessage response = await client.CallApiAsync( - resourcePath: "/entity/auth/login", - method: HttpMethod.Post, - acceptType: HeaderContentType.None, + if (credentials == null) + ThrowMissingParameter(nameof(LoginAsync), nameof(credentials)); + + HttpResponseMessage response = await client.CallApiAsync( + resourcePath: "/entity/auth/login", + method: HttpMethod.Post, + acceptType: HeaderContentType.None, contentType: HeaderContentType.Json | HeaderContentType.Xml | HeaderContentType.WwwForm, - body: credentials, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, nameof(LoginAsync)).ConfigureAwait(false); + body: credentials, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, nameof(LoginAsync)).ConfigureAwait(false); } - #endregion + #endregion - #region Logout - /// - /// Logs out from the system. - /// - /// Thrown when fails to make API call - /// - public static void Logout(this ApiClient client) + #region Logout + /// + /// Logs out from the system. + /// + /// Thrown when fails to make API call + /// + public static void Logout(this ApiClient client) { - LogoutAsync(client).GetAwaiter().GetResult(); - } - - /// - /// Logs out from the system without throwing exceptions if the logout failed. - /// - /// Returns true if the logout has been successful - public static bool TryLogout(this ApiClient client) - { - try + LogoutAsync(client).GetAwaiter().GetResult(); + } + + /// + /// Logs out from the system without throwing exceptions if the logout failed. + /// + /// Returns true if the logout has been successful + public static bool TryLogout(this ApiClient client) + { + try { Logout(client); - return true; - } - catch - { - return false; - } - } - - - /// - /// Logs out from the system. - /// - /// Thrown when fails to make API call - /// Task of void - public static async Task LogoutAsync(this ApiClient client, CancellationToken cancellationToken = default) + return true; + } + catch + { + return false; + } + } + + + /// + /// Logs out from the system. + /// + /// Thrown when fails to make API call + /// Task of void + public static async Task LogoutAsync(this ApiClient client, CancellationToken cancellationToken = default) { if (!client.HasSessionInfo()) { @@ -351,56 +351,56 @@ public static async Task LogoutAsync(this ApiClient client, CancellationToken ca resourcePath: "/entity/auth/logout", method: HttpMethod.Post, acceptType: HeaderContentType.None, - contentType: HeaderContentType.None, - cancellationToken: cancellationToken - ).ConfigureAwait(false); - - await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); - } - - #endregion - #endregion - - #region Auxiliary - private async static Task VerifyResponseAsync(ApiClient client, HttpResponseMessage response, string methodName) - { - if (!response.IsSuccessStatusCode) - { - var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false); - if (content?.Contains("API Login Limit") == true) - { - throw new ApiException(429, $"Error when calling {methodName}: API login limit exceeded. Please try again later."); + contentType: HeaderContentType.None, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + await VerifyResponseAsync(client, response, nameof(LogoutAsync)).ConfigureAwait(false); + } + + #endregion + #endregion + + #region Auxiliary + private async static Task VerifyResponseAsync(ApiClient client, HttpResponseMessage response, string methodName) + { + if (!response.IsSuccessStatusCode) + { + var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false); + if (content?.Contains("API Login Limit") == true) + { + throw new ApiException(429, $"Error when calling {methodName}: API login limit exceeded. Please try again later."); } - else if (content?.Contains("Invalid credentials") == true) - { - throw new ApiException((int)response.StatusCode, $"Error when calling {methodName}: Invalid credentials."); + else if (content?.Contains("Invalid credentials") == true) + { + throw new ApiException((int)response.StatusCode, $"Error when calling {methodName}: Invalid credentials."); } - throw new ApiException((int)response.StatusCode, $"Error {(int)response.StatusCode}:{response.ReasonPhrase} when calling {methodName}: {content}"); - } - } - - [Flags] - public enum OAuthScope - { - None = 0, - API = 1, - OfflineAccess = 2, - ConcurrentAccess = 4 - } - - private static string PrepareScopeParameter(OAuthScope scope) - { - StringBuilder s = new StringBuilder(); - if (scope.HasFlag(OAuthScope.API)) - s.Append("api "); - if (scope.HasFlag(OAuthScope.OfflineAccess)) - s.Append("offline_access "); - if (scope.HasFlag(OAuthScope.ConcurrentAccess)) - s.Append("api:concurrent_access "); - - return s.ToString().TrimEnd(' '); - } - - #endregion - } + throw new ApiException((int)response.StatusCode, $"Error {(int)response.StatusCode}:{response.ReasonPhrase} when calling {methodName}: {content}"); + } + } + + [Flags] + public enum OAuthScope + { + None = 0, + API = 1, + OfflineAccess = 2, + ConcurrentAccess = 4 + } + + private static string PrepareScopeParameter(OAuthScope scope) + { + StringBuilder s = new StringBuilder(); + if (scope.HasFlag(OAuthScope.API)) + s.Append("api "); + if (scope.HasFlag(OAuthScope.OfflineAccess)) + s.Append("offline_access "); + if (scope.HasFlag(OAuthScope.ConcurrentAccess)) + s.Append("api:concurrent_access "); + + return s.ToString().TrimEnd(' '); + } + + #endregion + } } \ No newline at end of file