From 796921888ef1823f5d853e2d19372f9d0e9c6404 Mon Sep 17 00:00:00 2001 From: Diana De Rose Date: Mon, 12 Feb 2018 15:59:01 -0800 Subject: [PATCH 1/3] migrate API changes --- .../oauth2/client/OAuthMigrationClient.java | 123 +++++++++++++++ .../oauth2/data/OAuthMigrationRequest.java | 149 ++++++++++++++++++ .../oauth2/data/OAuthMigrationResponse.java | 47 ++++++ .../intuit/oauth2/http/HttpRequestClient.java | 82 ++++++++-- .../src/main/resources/oauthclient.properties | 9 +- .../src/test/resources/oauthclient.properties | 9 +- 6 files changed, 407 insertions(+), 12 deletions(-) create mode 100644 oauth2-platform-api/src/main/java/com/intuit/oauth2/client/OAuthMigrationClient.java create mode 100644 oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationRequest.java create mode 100644 oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationResponse.java diff --git a/oauth2-platform-api/src/main/java/com/intuit/oauth2/client/OAuthMigrationClient.java b/oauth2-platform-api/src/main/java/com/intuit/oauth2/client/OAuthMigrationClient.java new file mode 100644 index 00000000..30a6d6fd --- /dev/null +++ b/oauth2-platform-api/src/main/java/com/intuit/oauth2/client/OAuthMigrationClient.java @@ -0,0 +1,123 @@ +/******************************************************************************* + * Copyright (c) 2018 Intuit + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ +package com.intuit.oauth2.client; + +import org.json.JSONObject; +import org.slf4j.Logger; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.ObjectReader; +import com.intuit.oauth2.config.Environment; +import com.intuit.oauth2.config.Scope; +import com.intuit.oauth2.data.OAuthMigrationRequest; +import com.intuit.oauth2.data.OAuthMigrationResponse; +import com.intuit.oauth2.exception.ConnectionException; +import com.intuit.oauth2.http.HttpRequestClient; +import com.intuit.oauth2.http.MethodType; +import com.intuit.oauth2.http.Request; +import com.intuit.oauth2.http.Response; +import com.intuit.oauth2.utils.LoggerImpl; +import com.intuit.oauth2.utils.MapperImpl; +import com.intuit.oauth2.utils.PropertiesConfig; + +/** + * Client class for OAuthMigration API + * + * @author dderose + * + */ +public class OAuthMigrationClient { + + + private OAuthMigrationRequest oAuthMigrationRequest; + + private static final Logger logger = LoggerImpl.getInstance(); + private static final ObjectMapper mapper = MapperImpl.getInstance(); + + public OAuthMigrationClient(OAuthMigrationRequest request) { + this.oAuthMigrationRequest = request; + } + + /** + * Hiding the default constructor as OAuth2PlatformClient is always required to function properly + */ + protected OAuthMigrationClient() { + + } + + /** + * Calls the migrate API based on the the request provided and + * returns an object with oauth2 tokens + * + * @param environment + * @return + * @throws ConnectionException + */ + public OAuthMigrationResponse migrate() throws ConnectionException { + + logger.debug("Enter OAuthMigrationClient::migrate"); + + try { + + + HttpRequestClient client = new HttpRequestClient(oAuthMigrationRequest.getOauth2config().getProxyConfig()); + + //prepare post json + String requestjson = new JSONObject().put("scope", getScopeValue(oAuthMigrationRequest.getScope())) + .put("redirect_uri", getRedirectUrl() ) + .put("client_id", oAuthMigrationRequest.getOauth2config().getClientId()) + .put("client_secret",oAuthMigrationRequest.getOauth2config().getClientSecret()) + .toString(); + + Request request = new Request.RequestBuilder(MethodType.GET, getMigrationAPIUrl(oAuthMigrationRequest.getEnvironment())) + .requiresAuthentication(true) + .postJson(requestjson) + .build(); + //make the API call + Response response = client.makeJsonRequest(request, oAuthMigrationRequest); + + logger.debug("Response Code : " + response.getStatusCode()); + if (response.getStatusCode() == 200) { + ObjectReader reader = mapper.readerFor(OAuthMigrationResponse.class); + OAuthMigrationResponse oAuthMigrationResponse = reader.readValue(response.getContent()); + return oAuthMigrationResponse; + + } else { + logger.debug("failed calling migrate API"); + throw new ConnectionException("failed calling migrate API", response.getStatusCode() + ""); + } + } catch (Exception ex) { + logger.error("Exception while calling migrate", ex); + throw new ConnectionException(ex.getMessage(), ex); + } + } + + + private static String getMigrationAPIUrl(Environment environment) { + return PropertiesConfig.getInstance().getProperty("OAUTH_MIGRATION_URL_" + environment.value()); + } + + public String getScopeValue(Scope scope) { + return PropertiesConfig.getInstance().getProperty(scope.value()); + } + + public String getRedirectUrl() { + String url = PropertiesConfig.getInstance().getProperty("REDIRECT_URL"); + return (oAuthMigrationRequest.getRedirectUri() == null || oAuthMigrationRequest.getRedirectUri().isEmpty()) ? url: oAuthMigrationRequest.getRedirectUri(); + } + + +} diff --git a/oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationRequest.java b/oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationRequest.java new file mode 100644 index 00000000..b03e1515 --- /dev/null +++ b/oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationRequest.java @@ -0,0 +1,149 @@ +/******************************************************************************* + * Copyright (c) 2018 Intuit + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ +package com.intuit.oauth2.data; + +import com.intuit.oauth2.config.Environment; +import com.intuit.oauth2.config.OAuth2Config; +import com.intuit.oauth2.config.Scope; + +public class OAuthMigrationRequest { + + //Environment + private Environment environment; + + //OAuth2 client id, secret + private OAuth2Config oauth2config; + + //OAuth1 consumer data + private String consumerKey; + private String consumerSecret; + private String accessToken; + private String accessSecret; + + //Scope + private Scope scope; + + //Redirect URL + private String redirectUri; + + private OAuthMigrationRequest(OAuthMigrationRequestBuilder builder) { + + this.environment = builder.environment; + this.oauth2config = builder.oauth2config; + this.consumerKey = builder.consumerKey; + this.consumerSecret = builder.consumerSecret; + this.accessToken = builder.accessToken; + this.accessSecret = builder.accessSecret; + this.scope = builder.scope; + this.redirectUri = builder.redirectUri; + + } + + public Environment getEnvironment() { + return environment; + } + + public OAuth2Config getOauth2config() { + return oauth2config; + } + + public String getConsumerKey() { + return consumerKey; + } + + public String getConsumerSecret() { + return consumerSecret; + } + + public String getAccessToken() { + return accessToken; + } + + public String getAccessSecret() { + return accessSecret; + } + + public Scope getScope() { + return scope; + } + + public String getRedirectUri() { + return redirectUri; + } + + public static class OAuthMigrationRequestBuilder { + + //Environment + private Environment environment; + + //OAuth2 client id, secret + private OAuth2Config oauth2config; + + //OAuth1 consumer data + private String consumerKey; + private String consumerSecret; + private String accessToken; + private String accessSecret; + + //Scope + private Scope scope; + + //Redirect URL + private String redirectUri; + + public OAuthMigrationRequestBuilder(Environment environment, Scope scope) { + this.environment = environment; + this.scope = scope; + } + + public OAuthMigrationRequestBuilder consumerKey(String consumerKey) { + this.consumerKey = consumerKey; + return this; + } + + public OAuthMigrationRequestBuilder consumerSecret(String consumerSecret) { + this.consumerSecret = consumerSecret; + return this; + } + + public OAuthMigrationRequestBuilder accessToken(String accessToken) { + this.accessToken = accessToken; + return this; + } + + public OAuthMigrationRequestBuilder accessSecret(String accessSecret) { + this.accessSecret = accessSecret; + return this; + } + + public OAuthMigrationRequestBuilder oAuth2Config(OAuth2Config oAuth2Config) { + this.oauth2config = oAuth2Config; + return this; + } + + public OAuthMigrationRequestBuilder redirectUri(String redirectUri) { + this.redirectUri = redirectUri; + return this; + } + + public OAuthMigrationRequest build() { + return new OAuthMigrationRequest(this); + } + + } + + +} diff --git a/oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationResponse.java b/oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationResponse.java new file mode 100644 index 00000000..c47455e3 --- /dev/null +++ b/oauth2-platform-api/src/main/java/com/intuit/oauth2/data/OAuthMigrationResponse.java @@ -0,0 +1,47 @@ +/******************************************************************************* + * Copyright (c) 2018 Intuit + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ +package com.intuit.oauth2.data; + +import javax.annotation.Generated; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; + +@JsonInclude(JsonInclude.Include.NON_NULL) + @Generated("org.jsonschema2pojo") + @JsonPropertyOrder({ + "realmId" + }) + + @JsonIgnoreProperties(ignoreUnknown = true) + public class OAuthMigrationResponse extends BearerTokenResponse{ + + @JsonProperty("realmId") + private String realmId; + + @JsonProperty("realmId") + public String getRealmId() { + return realmId; + } + + @JsonProperty("realmId") + public void setRealmId(String realmId) { + this.realmId = realmId; + } + +} diff --git a/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/HttpRequestClient.java b/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/HttpRequestClient.java index 446beeff..6a5fe764 100644 --- a/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/HttpRequestClient.java +++ b/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/HttpRequestClient.java @@ -17,48 +17,51 @@ import java.io.IOException; import java.nio.charset.StandardCharsets; +import java.security.KeyStore; import java.util.ArrayList; import java.util.List; -import java.security.KeyStore; + import javax.net.ssl.SSLContext; import org.apache.http.HttpEntity; +import org.apache.http.HttpHeaders; import org.apache.http.HttpHost; import org.apache.http.HttpResponse; +import org.apache.http.HttpVersion; +import org.apache.http.NameValuePair; import org.apache.http.auth.AuthScope; import org.apache.http.auth.UsernamePasswordCredentials; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.CredentialsProvider; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.methods.CloseableHttpResponse; -import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; -import org.apache.http.client.methods.HttpRequestBase; +import org.apache.http.client.methods.RequestBuilder; import org.apache.http.conn.ssl.NoopHostnameVerifier; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.conn.ssl.SSLContexts; import org.apache.http.conn.ssl.TrustSelfSignedStrategy; -import org.apache.http.entity.InputStreamEntity; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.BasicCredentialsProvider; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClientBuilder; import org.apache.http.impl.client.HttpClients; - -import org.apache.http.HttpHeaders; -import org.apache.http.HttpVersion; -import org.apache.http.NameValuePair; -import org.apache.http.client.config.RequestConfig; -import org.apache.http.client.methods.RequestBuilder; import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; import org.apache.http.message.BasicHeader; import org.slf4j.Logger; import com.intuit.oauth2.config.ProxyConfig; +import com.intuit.oauth2.data.OAuthMigrationRequest; import com.intuit.oauth2.exception.InvalidRequestException; import com.intuit.oauth2.utils.LoggerImpl; import com.intuit.oauth2.utils.PropertiesConfig; +import oauth.signpost.OAuthConsumer; +import oauth.signpost.commonshttp.CommonsHttpOAuthConsumer; +import oauth.signpost.exception.OAuthCommunicationException; +import oauth.signpost.exception.OAuthExpectationFailedException; +import oauth.signpost.exception.OAuthMessageSignerException; + /** * Client class to make http request calls * @@ -159,6 +162,65 @@ public Response makeRequest(Request request) throws InvalidRequestException { } + /** + * Method to make the HTTP POST request using the request attributes supplied + * + * @param request + * @return + * @throws InvalidRequestException + */ + public Response makeJsonRequest(Request request, OAuthMigrationRequest migrationRequest) throws InvalidRequestException { + + logger.debug("Enter HttpRequestClient::makeJsonRequest"); + //create oauth consumer using tokens + OAuthConsumer consumer = new CommonsHttpOAuthConsumer(migrationRequest.getConsumerKey(), migrationRequest.getConsumerSecret()); + consumer.setTokenWithSecret(migrationRequest.getAccessToken(), migrationRequest.getAccessSecret()); + + HttpPost post = new HttpPost(request.constructURL().toString()); + + //sign + try { + consumer.sign(post); + } catch (OAuthMessageSignerException e) { + logger.error("Exception while making httpRequest", e); + throw new InvalidRequestException(e.getMessage()); + } catch (OAuthExpectationFailedException e) { + logger.error("Exception while making httpRequest", e); + throw new InvalidRequestException(e.getMessage()); + } catch (OAuthCommunicationException e) { + logger.error("Exception while making httpRequest", e); + throw new InvalidRequestException(e.getMessage()); + } + + //add headers + post.setHeader("Accept", "application/json"); + post.setHeader("Content-Type", "application/json"); + + // add post data + HttpEntity entity = new StringEntity(request.getPostJson(), "UTF-8"); + post.setEntity(entity); + + CloseableHttpResponse httpResponse = null; + try { + //make the call + httpResponse = client.execute(post); + //prepare response + return new Response( + httpResponse.getEntity() == null ? null : httpResponse.getEntity().getContent(), + httpResponse.getStatusLine().getStatusCode() + ); + + + } catch (ClientProtocolException e) { + logger.error("Exception while making httpRequest", e); + throw new InvalidRequestException(e.getMessage()); + } catch (IOException e) { + logger.error("Exception while making httpRequest", e); + throw new InvalidRequestException(e.getMessage()); + } + + } + /** * Method to set proxy authentication * diff --git a/oauth2-platform-api/src/main/resources/oauthclient.properties b/oauth2-platform-api/src/main/resources/oauthclient.properties index 1f65ab3c..fb259763 100644 --- a/oauth2-platform-api/src/main/resources/oauthclient.properties +++ b/oauth2-platform-api/src/main/resources/oauthclient.properties @@ -30,5 +30,12 @@ ADDRESS=address EMAIL=email #Version -version=3.0.0 +version=3.0.5 + +#MIGRATION SERVICE URL +OAUTH_MIGRATION_URL_PRODUCTION=https://developer.api.intuit.com/v2/oauth2/tokens/migrate +OAUTH_MIGRATION_URL_SANDBOX=https://developer-sandbox.api.intuit.com/v2/oauth2/tokens/migrate + +#REDIRECT URL +REDIRECT_URL=https://developer.intuit.com/v2/OAuth2Playground/RedirectUrl diff --git a/oauth2-platform-api/src/test/resources/oauthclient.properties b/oauth2-platform-api/src/test/resources/oauthclient.properties index 1f65ab3c..fb259763 100644 --- a/oauth2-platform-api/src/test/resources/oauthclient.properties +++ b/oauth2-platform-api/src/test/resources/oauthclient.properties @@ -30,5 +30,12 @@ ADDRESS=address EMAIL=email #Version -version=3.0.0 +version=3.0.5 + +#MIGRATION SERVICE URL +OAUTH_MIGRATION_URL_PRODUCTION=https://developer.api.intuit.com/v2/oauth2/tokens/migrate +OAUTH_MIGRATION_URL_SANDBOX=https://developer-sandbox.api.intuit.com/v2/oauth2/tokens/migrate + +#REDIRECT URL +REDIRECT_URL=https://developer.intuit.com/v2/OAuth2Playground/RedirectUrl From c1094253897fb86ac71815c372ebe236923e4118 Mon Sep 17 00:00:00 2001 From: Diana De Rose Date: Tue, 13 Feb 2018 06:40:03 -0800 Subject: [PATCH 2/3] migrate API changes --- .../main/java/com/intuit/oauth2/http/Request.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/Request.java b/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/Request.java index 9ee338e0..cd7ea96f 100644 --- a/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/Request.java +++ b/oauth2-platform-api/src/main/java/com/intuit/oauth2/http/Request.java @@ -38,6 +38,7 @@ public class Request { private final List postParams; private final boolean requiresAuthentication; private final String authString; + private final String postJson; private Request(RequestBuilder builder) { this.method = builder.method; @@ -45,6 +46,7 @@ private Request(RequestBuilder builder) { this.requiresAuthentication = builder.requiresAuthentication; this.authString = builder.authString; this.postParams = builder.postParams; + this.postJson = builder.postJson; } @@ -68,6 +70,10 @@ public String getAuthString() { public List getPostParams() { return postParams; } + + public String getPostJson() { + return postJson; + } /** @@ -97,6 +103,7 @@ public static class RequestBuilder { private List postParams; private boolean requiresAuthentication; private String authString; + private String postJson; public RequestBuilder(MethodType method, String url) { this.method = method; @@ -117,6 +124,11 @@ public RequestBuilder authString(String authString) { this.authString = authString; return this; } + + public RequestBuilder postJson(String postJson) { + this.postJson = postJson; + return this; + } public Request build() { return new Request(this); From 918740b69f616e14a51966e0eb59c021ecb3185d Mon Sep 17 00:00:00 2001 From: Diana De Rose Date: Sat, 3 Mar 2018 01:58:15 -0800 Subject: [PATCH 3/3] minor version changes --- ipp-java-qbapihelper/pom.xml | 4 +- ipp-v3-java-data/pom.xml | 6 +- .../src/main/java/META-INF/sun-jaxb.episode | 5 +- .../ipp/data/APCreditCardOperationEnum.java | 17 +- .../java/com/intuit/ipp/data/Account.java | 17 +- .../data/AccountBasedExpenseLineDetail.java | 17 +- .../ipp/data/AccountClassificationEnum.java | 17 +- .../intuit/ipp/data/AccountSubTypeEnum.java | 1389 ++++++++++++++++- .../com/intuit/ipp/data/AccountTypeEnum.java | 17 +- .../com/intuit/ipp/data/AcquiredAsEnum.java | 17 +- .../ipp/data/AdvancedInventoryPrefs.java | 17 +- .../java/com/intuit/ipp/data/Attachable.java | 17 +- .../ipp/data/AttachableCategoryEnum.java | 17 +- .../com/intuit/ipp/data/AttachableRef.java | 17 +- .../intuit/ipp/data/AttachableResponse.java | 17 +- .../java/com/intuit/ipp/data/Attribute.java | 17 +- .../java/com/intuit/ipp/data/Attributes.java | 17 +- .../com/intuit/ipp/data/BatchItemRequest.java | 209 ++- .../intuit/ipp/data/BatchItemResponse.java | 209 ++- .../main/java/com/intuit/ipp/data/Bill.java | 17 +- .../java/com/intuit/ipp/data/BillPayment.java | 17 +- .../com/intuit/ipp/data/BillPaymentCheck.java | 17 +- .../ipp/data/BillPaymentCreditCard.java | 17 +- .../intuit/ipp/data/BillPaymentTypeEnum.java | 17 +- .../intuit/ipp/data/BillableStatusEnum.java | 17 +- .../BooleanTypeCustomFieldDefinition.java | 17 +- .../main/java/com/intuit/ipp/data/Budget.java | 17 +- .../com/intuit/ipp/data/BudgetDetail.java | 17 +- .../intuit/ipp/data/BudgetEntryTypeEnum.java | 17 +- .../com/intuit/ipp/data/BudgetTypeEnum.java | 17 +- .../com/intuit/ipp/data/CCAVSMatchEnum.java | 17 +- .../intuit/ipp/data/CCPaymentStatusEnum.java | 17 +- .../ipp/data/CCSecurityCodeMatchEnum.java | 17 +- .../com/intuit/ipp/data/CCTxnModeEnum.java | 17 +- .../com/intuit/ipp/data/CCTxnTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/CDCQuery.java | 17 +- .../java/com/intuit/ipp/data/CDCResponse.java | 17 +- .../java/com/intuit/ipp/data/Cascade.java | 17 +- .../com/intuit/ipp/data/CascadeResponse.java | 17 +- .../com/intuit/ipp/data/CashBackInfo.java | 17 +- .../com/intuit/ipp/data/CashPurchase.java | 17 +- .../com/intuit/ipp/data/ChargeCredit.java | 17 +- .../com/intuit/ipp/data/CheckPayment.java | 17 +- .../com/intuit/ipp/data/CheckPurchase.java | 17 +- .../main/java/com/intuit/ipp/data/Class.java | 17 +- .../java/com/intuit/ipp/data/ColData.java | 17 +- .../main/java/com/intuit/ipp/data/Column.java | 17 +- .../com/intuit/ipp/data/ColumnTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/Columns.java | 17 +- .../java/com/intuit/ipp/data/Company.java | 17 +- .../ipp/data/CompanyAccountingPrefs.java | 17 +- .../com/intuit/ipp/data/CompanyCurrency.java | 17 +- .../java/com/intuit/ipp/data/CompanyInfo.java | 17 +- .../java/com/intuit/ipp/data/ContactInfo.java | 17 +- .../com/intuit/ipp/data/ContactTypeEnum.java | 17 +- .../intuit/ipp/data/CreditCardPayment.java | 17 +- .../intuit/ipp/data/CreditCardPurchase.java | 17 +- .../intuit/ipp/data/CreditCardTypeEnum.java | 17 +- .../com/intuit/ipp/data/CreditChargeInfo.java | 17 +- .../intuit/ipp/data/CreditChargeResponse.java | 17 +- .../java/com/intuit/ipp/data/CreditMemo.java | 17 +- .../java/com/intuit/ipp/data/Currency.java | 17 +- .../com/intuit/ipp/data/CurrencyCode.java | 17 +- .../com/intuit/ipp/data/CurrencyPrefs.java | 17 +- .../java/com/intuit/ipp/data/CustomField.java | 17 +- .../ipp/data/CustomFieldDefinition.java | 17 +- .../intuit/ipp/data/CustomFieldTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/Customer.java | 61 +- .../java/com/intuit/ipp/data/CustomerMsg.java | 17 +- .../com/intuit/ipp/data/CustomerType.java | 17 +- .../com/intuit/ipp/data/CustomerTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/DateMacro.java | 17 +- .../data/DateTypeCustomFieldDefinition.java | 17 +- .../com/intuit/ipp/data/DayOfWeekEnum.java | 17 +- .../ipp/data/DeliveryErrorTypeEnum.java | 17 +- .../com/intuit/ipp/data/DeliveryTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/Department.java | 17 +- .../java/com/intuit/ipp/data/Deposit.java | 17 +- .../intuit/ipp/data/DepositLineDetail.java | 17 +- .../ipp/data/DescriptionLineDetail.java | 17 +- .../ipp/data/DesktopEntityTypeEnum.java | 17 +- .../intuit/ipp/data/DiscountLineDetail.java | 17 +- .../com/intuit/ipp/data/DiscountOverride.java | 17 +- .../com/intuit/ipp/data/DiscountTypeEnum.java | 17 +- .../data/ETransactionEnabledStatusEnum.java | 17 +- .../ipp/data/ETransactionStatusEnum.java | 17 +- .../com/intuit/ipp/data/EffectiveTaxRate.java | 17 +- .../com/intuit/ipp/data/EmailAddress.java | 17 +- .../intuit/ipp/data/EmailAddressTypeEnum.java | 17 +- .../intuit/ipp/data/EmailDeliveryInfo.java | 17 +- .../com/intuit/ipp/data/EmailMessage.java | 17 +- .../intuit/ipp/data/EmailMessagesPrefs.java | 17 +- .../com/intuit/ipp/data/EmailStatusEnum.java | 17 +- .../java/com/intuit/ipp/data/Employee.java | 17 +- .../com/intuit/ipp/data/EmployeeTypeEnum.java | 17 +- .../com/intuit/ipp/data/EntityStatusEnum.java | 17 +- .../com/intuit/ipp/data/EntityTypeEnum.java | 17 +- .../com/intuit/ipp/data/EntityTypeRef.java | 17 +- .../main/java/com/intuit/ipp/data/Error.java | 17 +- .../java/com/intuit/ipp/data/Estimate.java | 17 +- .../intuit/ipp/data/EstimateStatusEnum.java | 17 +- .../com/intuit/ipp/data/ExchangeRate.java | 17 +- .../main/java/com/intuit/ipp/data/Fault.java | 17 +- .../com/intuit/ipp/data/FaultTypeEnum.java | 17 +- .../intuit/ipp/data/FinanceChargePrefs.java | 17 +- .../java/com/intuit/ipp/data/FixedAsset.java | 17 +- .../main/java/com/intuit/ipp/data/Gender.java | 17 +- .../intuit/ipp/data/GenericContactType.java | 17 +- .../ipp/data/GlobalTaxCalculationEnum.java | 17 +- .../com/intuit/ipp/data/GroupLineDetail.java | 17 +- .../main/java/com/intuit/ipp/data/Header.java | 17 +- .../com/intuit/ipp/data/IdDomainEnum.java | 17 +- .../com/intuit/ipp/data/IntuitAnyType.java | 21 +- .../intuit/ipp/data/IntuitBatchRequest.java | 17 +- .../com/intuit/ipp/data/IntuitEntity.java | 17 +- .../com/intuit/ipp/data/IntuitResponse.java | 209 ++- .../com/intuit/ipp/data/InventorySite.java | 17 +- .../java/com/intuit/ipp/data/Invoice.java | 17 +- .../main/java/com/intuit/ipp/data/Item.java | 17 +- .../intuit/ipp/data/ItemAssemblyDetail.java | 17 +- .../ipp/data/ItemBasedExpenseLineDetail.java | 17 +- .../intuit/ipp/data/ItemCategoryTypeEnum.java | 17 +- .../intuit/ipp/data/ItemComponentLine.java | 17 +- .../com/intuit/ipp/data/ItemGroupDetail.java | 17 +- .../com/intuit/ipp/data/ItemLineDetail.java | 61 +- .../ipp/data/ItemReceiptLineDetail.java | 17 +- .../com/intuit/ipp/data/ItemTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/JobInfo.java | 17 +- .../com/intuit/ipp/data/JobStatusEnum.java | 17 +- .../java/com/intuit/ipp/data/JobType.java | 17 +- .../java/com/intuit/ipp/data/JournalCode.java | 17 +- .../intuit/ipp/data/JournalCodeTypeEnum.java | 17 +- .../com/intuit/ipp/data/JournalEntry.java | 17 +- .../ipp/data/JournalEntryLineDetail.java | 17 +- .../main/java/com/intuit/ipp/data/Line.java | 17 +- .../intuit/ipp/data/LineDetailTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/LinkedTxn.java | 17 +- .../java/com/intuit/ipp/data/MarkupInfo.java | 17 +- .../com/intuit/ipp/data/MasterAccount.java | 17 +- .../java/com/intuit/ipp/data/MemoRef.java | 17 +- .../intuit/ipp/data/ModificationMetaData.java | 17 +- .../main/java/com/intuit/ipp/data/Money.java | 17 +- .../java/com/intuit/ipp/data/MonthEnum.java | 17 +- .../java/com/intuit/ipp/data/NameBase.java | 17 +- .../java/com/intuit/ipp/data/NameValue.java | 17 +- .../data/NumberTypeCustomFieldDefinition.java | 17 +- .../java/com/intuit/ipp/data/OLBAccount.java | 17 +- .../java/com/intuit/ipp/data/OLBStatus.java | 17 +- .../com/intuit/ipp/data/OLBTransaction.java | 17 +- .../main/java/com/intuit/ipp/data/OLBTxn.java | 17 +- .../com/intuit/ipp/data/OLBTxnDetail.java | 17 +- .../com/intuit/ipp/data/OLBTxnStatusEnum.java | 17 +- .../com/intuit/ipp/data/ObjectFactory.java | 17 +- .../intuit/ipp/data/ObjectNameEnumType.java | 17 +- .../com/intuit/ipp/data/OperationEnum.java | 17 +- .../java/com/intuit/ipp/data/OtherName.java | 17 +- .../java/com/intuit/ipp/data/OtherPrefs.java | 17 +- .../com/intuit/ipp/data/PaySalesTaxEnum.java | 17 +- .../java/com/intuit/ipp/data/Payment.java | 17 +- .../intuit/ipp/data/PaymentLineDetail.java | 17 +- .../com/intuit/ipp/data/PaymentMethod.java | 17 +- .../intuit/ipp/data/PaymentMethodEnum.java | 17 +- .../intuit/ipp/data/PaymentStatusEnum.java | 17 +- .../com/intuit/ipp/data/PaymentTypeEnum.java | 17 +- .../intuit/ipp/data/PerItemAdjustEnum.java | 17 +- .../com/intuit/ipp/data/PhysicalAddress.java | 17 +- .../ipp/data/PhysicalAddressTypeEnum.java | 17 +- .../com/intuit/ipp/data/PostingTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/Preferences.java | 17 +- .../java/com/intuit/ipp/data/PriceLevel.java | 17 +- .../intuit/ipp/data/PriceLevelPerItem.java | 17 +- .../intuit/ipp/data/PriceLevelTypeEnum.java | 17 +- .../intuit/ipp/data/PrintDocumentPrefs.java | 17 +- .../com/intuit/ipp/data/PrintStatusEnum.java | 17 +- .../ipp/data/ProductAndServicesPrefs.java | 17 +- .../java/com/intuit/ipp/data/Purchase.java | 17 +- .../com/intuit/ipp/data/PurchaseByVendor.java | 17 +- .../com/intuit/ipp/data/PurchaseOrder.java | 17 +- .../ipp/data/PurchaseOrderItemLineDetail.java | 17 +- .../ipp/data/PurchaseOrderStatusEnum.java | 17 +- .../intuit/ipp/data/QbdtEntityIdMapping.java | 17 +- .../intuit/ipp/data/QboEntityTypeEnum.java | 17 +- .../ipp/data/QboEstimateStatusEnum.java | 17 +- .../com/intuit/ipp/data/QueryResponse.java | 209 ++- .../com/intuit/ipp/data/ReferenceType.java | 17 +- .../com/intuit/ipp/data/RefundReceipt.java | 17 +- .../intuit/ipp/data/ReimbursableTypeEnum.java | 17 +- .../com/intuit/ipp/data/ReimburseCharge.java | 17 +- .../main/java/com/intuit/ipp/data/Report.java | 17 +- .../com/intuit/ipp/data/ReportBasisEnum.java | 17 +- .../com/intuit/ipp/data/ReportHeader.java | 17 +- .../java/com/intuit/ipp/data/ReportPrefs.java | 17 +- .../intuit/ipp/data/RoundingMethodEnum.java | 17 +- .../main/java/com/intuit/ipp/data/Row.java | 17 +- .../java/com/intuit/ipp/data/RowTypeEnum.java | 17 +- .../main/java/com/intuit/ipp/data/Rows.java | 17 +- .../com/intuit/ipp/data/SalesFormsPrefs.java | 17 +- .../intuit/ipp/data/SalesItemLineDetail.java | 17 +- .../java/com/intuit/ipp/data/SalesOrder.java | 17 +- .../ipp/data/SalesOrderItemLineDetail.java | 17 +- .../com/intuit/ipp/data/SalesReceipt.java | 17 +- .../java/com/intuit/ipp/data/SalesRep.java | 17 +- .../com/intuit/ipp/data/SalesRepTypeEnum.java | 17 +- .../intuit/ipp/data/SalesTermTypeEnum.java | 17 +- .../com/intuit/ipp/data/SalesTransaction.java | 103 +- .../com/intuit/ipp/data/ServiceTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/ShipMethod.java | 17 +- .../intuit/ipp/data/SpecialItemTypeEnum.java | 17 +- .../intuit/ipp/data/SpecialTaxTypeEnum.java | 17 +- .../com/intuit/ipp/data/StatementCharge.java | 17 +- .../main/java/com/intuit/ipp/data/Status.java | 17 +- .../java/com/intuit/ipp/data/StatusInfo.java | 17 +- .../data/StringTypeCustomFieldDefinition.java | 17 +- .../intuit/ipp/data/SubTotalLineDetail.java | 17 +- .../ipp/data/SummarizeColumnsByEnum.java | 17 +- .../java/com/intuit/ipp/data/Summary.java | 17 +- .../intuit/ipp/data/SymbolPositionEnum.java | 17 +- .../com/intuit/ipp/data/SyncActivity.java | 17 +- .../java/com/intuit/ipp/data/SyncError.java | 17 +- .../intuit/ipp/data/SyncErrorResponse.java | 17 +- .../com/intuit/ipp/data/SyncErrorType.java | 17 +- .../java/com/intuit/ipp/data/SyncObject.java | 209 ++- .../java/com/intuit/ipp/data/SyncType.java | 17 +- .../com/intuit/ipp/data/TDSLineDetail.java | 17 +- .../java/com/intuit/ipp/data/TDSMetadata.java | 17 +- .../main/java/com/intuit/ipp/data/Task.java | 17 +- .../java/com/intuit/ipp/data/TaxAgency.java | 17 +- .../intuit/ipp/data/TaxApplicableOnEnum.java | 17 +- .../java/com/intuit/ipp/data/TaxCode.java | 59 +- .../com/intuit/ipp/data/TaxFormTypeEnum.java | 17 +- .../com/intuit/ipp/data/TaxLineDetail.java | 17 +- .../java/com/intuit/ipp/data/TaxPrefs.java | 59 +- .../java/com/intuit/ipp/data/TaxRate.java | 17 +- .../ipp/data/TaxRateApplicableOnEnum.java | 17 +- .../com/intuit/ipp/data/TaxRateDetail.java | 17 +- .../com/intuit/ipp/data/TaxRateDetails.java | 17 +- .../ipp/data/TaxRateDisplayTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/TaxRateList.java | 17 +- .../ipp/data/TaxReportBasisTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/TaxReturn.java | 103 +- .../intuit/ipp/data/TaxReturnStatusEnum.java | 51 + .../java/com/intuit/ipp/data/TaxService.java | 17 +- .../ipp/data/TaxTypeApplicablityEnum.java | 17 +- .../ipp/data/TelephoneDeviceTypeEnum.java | 17 +- .../com/intuit/ipp/data/TelephoneNumber.java | 17 +- .../ipp/data/TelephoneNumberTypeEnum.java | 17 +- .../com/intuit/ipp/data/TemplateName.java | 17 +- .../com/intuit/ipp/data/TemplateTypeEnum.java | 17 +- .../main/java/com/intuit/ipp/data/Term.java | 17 +- .../com/intuit/ipp/data/TimeActivity.java | 17 +- .../intuit/ipp/data/TimeActivityTypeEnum.java | 17 +- .../data/TimeEntryUsedForPaychecksEnum.java | 17 +- .../intuit/ipp/data/TimeTrackingPrefs.java | 17 +- .../java/com/intuit/ipp/data/Transaction.java | 17 +- .../ipp/data/TransactionDeliveryInfo.java | 17 +- .../ipp/data/TransactionLocationTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/Transfer.java | 17 +- .../com/intuit/ipp/data/TxnSourceEnum.java | 17 +- .../com/intuit/ipp/data/TxnTaxDetail.java | 17 +- .../java/com/intuit/ipp/data/TxnTypeEnum.java | 17 +- .../main/java/com/intuit/ipp/data/UOM.java | 17 +- .../com/intuit/ipp/data/UOMBaseTypeEnum.java | 17 +- .../java/com/intuit/ipp/data/UOMConvUnit.java | 17 +- .../intuit/ipp/data/UOMFeatureTypeEnum.java | 17 +- .../main/java/com/intuit/ipp/data/UOMRef.java | 17 +- .../main/java/com/intuit/ipp/data/User.java | 17 +- .../java/com/intuit/ipp/data/UserAlert.java | 17 +- .../main/java/com/intuit/ipp/data/Vendor.java | 17 +- .../ipp/data/VendorAndPurchasesPrefs.java | 17 +- .../com/intuit/ipp/data/VendorCredit.java | 17 +- .../java/com/intuit/ipp/data/VendorType.java | 17 +- .../java/com/intuit/ipp/data/Warning.java | 17 +- .../java/com/intuit/ipp/data/Warnings.java | 17 +- .../com/intuit/ipp/data/WebSiteAddress.java | 17 +- .../java/com/intuit/ipp/data/WeekEnum.java | 17 +- .../com/intuit/ipp/data/package-info.java | 17 +- ipp-v3-java-data/src/main/xsd/Finance.xjb | 0 ipp-v3-java-data/src/main/xsd/Finance.xsd | 1072 ++++++++++++- .../src/main/xsd/IntuitBaseTypes.xsd | 0 .../src/main/xsd/IntuitNamesTypes.xsd | 8 + .../src/main/xsd/IntuitRestServiceDef.xsd | 0 ipp-v3-java-data/src/main/xsd/Report.xsd | 0 ipp-v3-java-data/src/main/xsd/SalesTax.xsd | 0 ipp-v3-java-devkit/pom.xml | 6 +- .../PrepareRequestInterceptor.java | 2 +- .../src/main/resources/ippdevkit.properties | 2 +- .../PrepareRequestInterceptorTest.java | 2 +- .../src/test/resources/ippdevkit.properties | 2 +- oauth2-platform-api/pom.xml | 4 +- pom.xml | 2 +- 290 files changed, 3614 insertions(+), 4856 deletions(-) create mode 100644 ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturnStatusEnum.java mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/Finance.xjb mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/Finance.xsd mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/IntuitBaseTypes.xsd mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/IntuitNamesTypes.xsd mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/IntuitRestServiceDef.xsd mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/Report.xsd mode change 100644 => 100755 ipp-v3-java-data/src/main/xsd/SalesTax.xsd diff --git a/ipp-java-qbapihelper/pom.xml b/ipp-java-qbapihelper/pom.xml index 1bda6190..bb7bcad9 100644 --- a/ipp-java-qbapihelper/pom.xml +++ b/ipp-java-qbapihelper/pom.xml @@ -21,10 +21,10 @@ ipp-v3-java-devkit-pom com.intuit.quickbooks-online - 3.0.5 + 4.0.0 ipp-java-qbapihelper - 3.0.5 + 4.0.0 jar Quickbooks API Helper for Oauth Quickbooks API Helper Project for OAuth, Disconnect and Reconnect diff --git a/ipp-v3-java-data/pom.xml b/ipp-v3-java-data/pom.xml index e98c3f5d..4ca34c8a 100755 --- a/ipp-v3-java-data/pom.xml +++ b/ipp-v3-java-data/pom.xml @@ -4,13 +4,13 @@ com.intuit.quickbooks-online ipp-v3-java-devkit-pom - 3.0.5 + 4.0.0 ipp-v3-java-data IPP V3 Java - Data Project IPP Java V3 DevKit Data project - FMS Entities generation - 3.0.5 + 4.0.0 UTF-8 @@ -58,7 +58,7 @@ --> - @@ -729,6 +729,9 @@ Generated on: 2017.07.10 at 10:56:50 AM PDT + + + diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/APCreditCardOperationEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/APCreditCardOperationEnum.java index b0fdc3b9..83f9a872 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/APCreditCardOperationEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/APCreditCardOperationEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Account.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Account.java index 909e3e0e..c6061f0a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Account.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Account.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountBasedExpenseLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountBasedExpenseLineDetail.java index 4a257457..882420a6 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountBasedExpenseLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountBasedExpenseLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountClassificationEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountClassificationEnum.java index 89a1bdfc..8c8a3e50 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountClassificationEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountClassificationEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountSubTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountSubTypeEnum.java index 187ee6e7..44e4c626 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountSubTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountSubTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -161,6 +146,131 @@ * <enumeration value="WithholdingTaxPurchases"/> * <enumeration value="WithholdingAssetAmount"/> * <enumeration value="WithholdingLiabilityAmount"/> + * <enumeration value="WithholdingTaxSuspense"/> + * <enumeration value="DevelopmentCosts"/> + * <enumeration value="ProvisionsCurrentAssets"/> + * <enumeration value="OtherConsumables"/> + * <enumeration value="ExpenditureAuthorisationsAndLettersOfCredit"/> + * <enumeration value="InternalTransfers"/> + * <enumeration value="ProvisionsFixedAssets"/> + * <enumeration value="AssetsInCourseOfConstruction"/> + * <enumeration value="ParticipatingInterests"/> + * <enumeration value="CumulativeDepreciationOnIntangibleAssets"/> + * <enumeration value="ProvisionsNonCurrentAssets"/> + * <enumeration value="OutstandingDuesMicroSmallEnterprise"/> + * <enumeration value="OutstandingDuesOtherThanMicroSmallEnterprise"/> + * <enumeration value="GlobalTaxRefund"/> + * <enumeration value="GlobalTaxDeferred"/> + * <enumeration value="ProvisionsCurrentLiabilities"/> + * <enumeration value="StaffAndRelatedLiabilityAccounts"/> + * <enumeration value="SocialSecurityAgencies"/> + * <enumeration value="SundryDebtorsAndCreditors"/> + * <enumeration value="ProvisionsNonCurrentLiabilities"/> + * <enumeration value="DebtsRelatedToParticipatingInterests"/> + * <enumeration value="StaffAndRelatedLongTermLiabilityAccounts"/> + * <enumeration value="GovernmentAndOtherPublicAuthorities"/> + * <enumeration value="GroupAndAssociates"/> + * <enumeration value="InvestmentGrants"/> + * <enumeration value="CashReceiptIncome"/> + * <enumeration value="OwnWorkCapitalized"/> + * <enumeration value="OperatingGrants"/> + * <enumeration value="OtherCurrentOperatingIncome"/> + * <enumeration value="CostOfSales"/> + * <enumeration value="CashExpenditureExpense"/> + * <enumeration value="ExternalServices"/> + * <enumeration value="OtherExternalServices"/> + * <enumeration value="PurchasesRebates"/> + * <enumeration value="OtherRentalCosts"/> + * <enumeration value="ProjectStudiesSurveysAssessments"/> + * <enumeration value="Sundry"/> + * <enumeration value="StaffCosts"/> + * <enumeration value="OtherCurrentOperatingCharges"/> + * <enumeration value="ExtraordinaryCharges"/> + * <enumeration value="AppropriationsToDepreciation"/> + * <enumeration value="AccrualsAndDeferredIncome"/> + * <enumeration value="CurrentTaxLiability"/> + * <enumeration value="DeferredTax"/> + * <enumeration value="DistributionCosts"/> + * <enumeration value="Investments"/> + * <enumeration value="LongTermBorrowings"/> + * <enumeration value="OtherIntangibleAssets"/> + * <enumeration value="PrepaymentsAndAccruedIncome"/> + * <enumeration value="ShortTermBorrowings"/> + * <enumeration value="ProvisionForLiabilities"/> + * <enumeration value="CalledUpShareCapital"/> + * <enumeration value="CalledUpShareCapitalNotPaid"/> + * <enumeration value="LandAsset"/> + * <enumeration value="AvailableForSaleFinancialAssets"/> + * <enumeration value="ProvisionForWarrantyObligations"/> + * <enumeration value="CurrentPortionEmployeeBenefitsObligations"/> + * <enumeration value="LongTermEmployeeBenefitObligations"/> + * <enumeration value="ObligationsUnderFinanceLeases"/> + * <enumeration value="BankLoans"/> + * <enumeration value="InterestPayables"/> + * <enumeration value="GainLossOnSaleOfInvestments"/> + * <enumeration value="GainLossOnSaleOfFixedAssets"/> + * <enumeration value="ShareCapital"/> + * <enumeration value="CurrentPortionOfObligationsUnderFinanceLeases"/> + * <enumeration value="AssetsHeldForSale"/> + * <enumeration value="AccruedLiabilities"/> + * <enumeration value="AccruedLongLermLiabilities"/> + * <enumeration value="AccruedVacationPayable"/> + * <enumeration value="CashAndCashEquivalents"/> + * <enumeration value="CommissionsAndFees"/> + * <enumeration value="AmortizationExpense"/> + * <enumeration value="LossOnDiscontinuedOperationsNetOfTax"/> + * <enumeration value="ManagementCompensation"/> + * <enumeration value="OtherSellingExpenses"/> + * <enumeration value="LiabilitiesRelatedToAssetsHeldForSale"/> + * <enumeration value="LongTermDebit"/> + * <enumeration value="EquityInEarningsOfSubsiduaries"/> + * <enumeration value="OtherOperatingIncome"/> + * <enumeration value="RevenueGeneral"/> + * <enumeration value="DividendDisbursed"/> + * <enumeration value="FreightAndDeliveryCos"/> + * <enumeration value="ShippingAndDeliveryExpense"/> + * <enumeration value="TravelExpensesGeneralAndAdminExpenses"/> + * <enumeration value="TravelExpensesSellingExpense"/> + * <enumeration value="UnrealisedLossOnSecuritiesNetOfTax"/> + * <enumeration value="SalesRetail"/> + * <enumeration value="SalesWholesale"/> + * <enumeration value="AccumulatedOtherComprehensiveIncome"/> + * <enumeration value="AssetsAvailableForSale"/> + * <enumeration value="LossOnDisposalOfAssets"/> + * <enumeration value="NonCurrentAssets"/> + * <enumeration value="IncomeTaxExpense"/> + * <enumeration value="LongTermInvestments"/> + * <enumeration value="DividendsPayable"/> + * <enumeration value="TradeAndOtherReceivables"/> + * <enumeration value="TradeAndOtherPayables"/> + * <enumeration value="CurrentLiabilities"/> + * <enumeration value="SavingsByTaxScheme"/> + * <enumeration value="BorrowingCost"/> + * <enumeration value="Depletion"/> + * <enumeration value="ExceptionalItems"/> + * <enumeration value="PriorPeriodItems"/> + * <enumeration value="ExtraordinaryItems"/> + * <enumeration value="MatCredit"/> + * <enumeration value="OtherFreeReserves"/> + * <enumeration value="CapitalReserves"/> + * <enumeration value="Funds"/> + * <enumeration value="MoneyReceivedAgainstShareWarrants"/> + * <enumeration value="ShareApplicationMoneyPendingAllotment"/> + * <enumeration value="DeferredTaxLiabilities"/> + * <enumeration value="OtherLongTermProvisions"/> + * <enumeration value="CapitalWip"/> + * <enumeration value="IntangibleAssetsUnderDevelopment"/> + * <enumeration value="OtherLongTermInvestments"/> + * <enumeration value="LongTermLoansAndAdvancesToRelatedParties"/> + * <enumeration value="OtherLongTermLoansAndAdvances"/> + * <enumeration value="ShortTermInvestmentsInRelatedParties"/> + * <enumeration value="OtherEarmarkedBankAccounts"/> + * <enumeration value="ShortTermLoansAndAdvancesToRelatedParties"/> + * <enumeration value="DeferredTaxExpense"/> + * <enumeration value="IncomeTaxOtherExpense"/> + * <enumeration value="DutiesAndTaxes"/> + * <enumeration value="BalWithGovtAuthorities"/> + * <enumeration value="TaxRoundoffGainOrLoss"/> * </restriction> * </simpleType> * @@ -1737,7 +1847,1252 @@ public enum AccountSubTypeEnum { * */ @XmlEnumValue("WithholdingLiabilityAmount") - WITHHOLDING_LIABILITY_AMOUNT("WithholdingLiabilityAmount"); + WITHHOLDING_LIABILITY_AMOUNT("WithholdingLiabilityAmount"), + + /** + * + * Product: QBO + * Description: Use Withholding Tax Suspense to track the withheld amount owed to HMRC by the company. + * + * + */ + @XmlEnumValue("WithholdingTaxSuspense") + WITHHOLDING_TAX_SUSPENSE("WithholdingTaxSuspense"), + + /** + * + * Product: QBO + * Description: Use Provisions current assets to track current assets that have not yet been realized. + * + * + */ + @XmlEnumValue("ProvisionsCurrentAssets") + PROVISIONS_CURRENT_ASSETS("ProvisionsCurrentAssets"), + + /** + * + * Product: QBO + * Description: Use Other consumables for goods that become incorporated into other goods and lose their identity. + * + * + */ + @XmlEnumValue("OtherConsumables") + OTHER_CONSUMABLES("OtherConsumables"), + + /** + * + * Product: QBO + * Description: Use Expenditure authorisations and letters of credit to track allowances to make purchases, without an explicit loan. + * + * + */ + @XmlEnumValue("ExpenditureAuthorisationsAndLettersOfCredit") + EXPENDITURE_AUTHORISATIONS_AND_LETTERS_OF_CREDIT("ExpenditureAuthorisationsAndLettersOfCredit"), + + /** + * + * Product: QBO + * Description: Use Internal transfers to track transfers of amounts from one department to another within the same company. + * + * + */ + @XmlEnumValue("InternalTransfers") + INTERNAL_TRANSFERS("InternalTransfers"), + + /** + * + * Product: QBO + * Description: Use Provisions fixed assets to track fixed assets that have not yet been realized. + * + * + */ + @XmlEnumValue("ProvisionsFixedAssets") + PROVISIONS_FIXED_ASSETS("ProvisionsFixedAssets"), + + /** + * + * Product: QBO + * Description: Use Assets in course of construction to track fixed assets that are used in construction. + * + * + */ + @XmlEnumValue("AssetsInCourseOfConstruction") + ASSETS_IN_COURSE_OF_CONSTRUCTION("AssetsInCourseOfConstruction"), + + /** + * + * Product: QBO + * Description: Use Participating interests and related amounts owed to track the interest held by an undertaking in shares of another undertaking. This account should be used for interest held on a long-term basis, in order to ensure a certain level of control or influence on the other undertaking. + * + * + */ + @XmlEnumValue("ParticipatingInterests") + PARTICIPATING_INTERESTS("ParticipatingInterests"), + + /** + * + * Product: QBO + * Description: Use Cumulative depreciation on intangible assets to track how much you depreciate an intangible asset, such as a franchise, customer list, copyright, or patent. + * + * + */ + @XmlEnumValue("CumulativeDepreciationOnIntangibleAssets") + CUMULATIVE_DEPRECIATION_ON_INTANGIBLE_ASSETS("CumulativeDepreciationOnIntangibleAssets"), + + /** + * + * Product: QBO + * Description: Use Provisions non-current assets to track non-current assets that have not yet been realized. + * + * + */ + @XmlEnumValue("ProvisionsNonCurrentAssets") + PROVISIONS_NON_CURRENT_ASSETS("ProvisionsNonCurrentAssets"), + + /** + * + * Product: QBO + * Description: Account to hold principal amount and the interest due remaining unpaid to any business vendors that are MSME (Micro, Small and Medium Enterprise) + * + * + */ + @XmlEnumValue("OutstandingDuesMicroSmallEnterprise") + OUTSTANDING_DUES_MICRO_SMALL_ENTERPRISE("OutstandingDuesMicroSmallEnterprise"), + + /** + * + * Product: QBO + * Description: This account to hold principal amount and the interest due remaining unpaid to any business vendors that are not an MSME (Micro, Small and Medium Enterprise) + * + * + */ + @XmlEnumValue("OutstandingDuesOtherThanMicroSmallEnterprise") + OUTSTANDING_DUES_OTHER_THAN_MICRO_SMALL_ENTERPRISE("OutstandingDuesOtherThanMicroSmallEnterprise"), + + /** + * + * Product: QBO + * Description: Service Tax Refund + * + * + */ + @XmlEnumValue("GlobalTaxRefund") + GLOBAL_TAX_REFUND("GlobalTaxRefund"), + + /** + * + * Product: QBO + * Description: Deferred Service Tax Input Credit + * + * + */ + @XmlEnumValue("GlobalTaxDeferred") + GLOBAL_TAX_DEFERRED("GlobalTaxDeferred"), + + /** + * + * Product: QBO + * Description: Use Provisions current liabilities to track current liabilities that have not yet been relized. + * + * + */ + @XmlEnumValue("ProvisionsCurrentLiabilities") + PROVISIONS_CURRENT_LIABILITIES("ProvisionsCurrentLiabilities"), + + /** + * + * Product: QBO + * Description: Use Staff and related accounts to track amounts owed to employees (or on their behalf) that are due within a year. + * + * + */ + @XmlEnumValue("StaffAndRelatedLiabilityAccounts") + STAFF_AND_RELATED_LIABILITY_ACCOUNTS("StaffAndRelatedLiabilityAccounts"), + + /** + * + * Product: QBO + * Description: Use Social security and other social agencies to track amounts owed to government and social agencies that are due within a year. + * + * + */ + @XmlEnumValue("SocialSecurityAgencies") + SOCIAL_SECURITY_AGENCIES("SocialSecurityAgencies"), + + /** + * + * Product: QBO + * Description: Use Sundry debtors and creditors to track miscellaneous amounts owed by customers and to suppliers that are not assigned their own account, and that are due within a year. + * + * + */ + @XmlEnumValue("SundryDebtorsAndCreditors") + SUNDRY_DEBTORS_AND_CREDITORS("SundryDebtorsAndCreditors"), + + /** + * + * Product: QBO + * Description: Use Provisions non-current liabilities to track non-current liabilities that have not yet been realized. + * + * + * + */ + @XmlEnumValue("ProvisionsNonCurrentLiabilities") + PROVISIONS_NON_CURRENT_LIABILITIES("ProvisionsNonCurrentLiabilities"), + + /** + * + * Product: QBO + * Description: Use Debts related to participating interests to track amounts owed to employees (or on their behalf) that are not due within a year. + * + * + */ + @XmlEnumValue("DebtsRelatedToParticipatingInterests") + DEBTS_RELATED_TO_PARTICIPATING_INTERESTS("DebtsRelatedToParticipatingInterests"), + + /** + * + * Product: QBO + * Description: Use Staff and related accounts to track track miscellaneous amounts owed by customers and to suppliers that are not assigned their own account, and that are not due within a year. + * + * + */ + @XmlEnumValue("StaffAndRelatedLongTermLiabilityAccounts") + STAFF_AND_RELATED_LONG_TERM_LIABILITY_ACCOUNTS("StaffAndRelatedLongTermLiabilityAccounts"), + + /** + * + * Product: QBO + * Description: Use Government and other public authorities to track amounts owed to government and social agencies that are not due within a year. + * + * + */ + @XmlEnumValue("GovernmentAndOtherPublicAuthorities") + GOVERNMENT_AND_OTHER_PUBLIC_AUTHORITIES("GovernmentAndOtherPublicAuthorities"), + + /** + * + * Product: QBO + * Description: Use Group and associates to track amounts owed to subsidiaries of the company. + * + * + */ + @XmlEnumValue("GroupAndAssociates") + GROUP_AND_ASSOCIATES("GroupAndAssociates"), + + /** + * + * Product: QBO + * Description: Use Investment grants to track capital transfers in cash or in kind made by governments or by the rest of the world for investment purposes. + * + * + */ + @XmlEnumValue("InvestmentGrants") + INVESTMENT_GRANTS("InvestmentGrants"), + + /** + * + * Product: QBO + * Description: Unapplied Cash Payment $$Income$$ reports the Cash Basis $$income$$ from $$customers$$ payments you've received but not applied to invoices or charges. In general, you'd never use this directly on a purchase or sale transaction. + * + * + */ + @XmlEnumValue("CashReceiptIncome") + CASH_RECEIPT_INCOME("CashReceiptIncome"), + + /** + * + * Product: QBO + * Description: Use Own work capitalized to track the value of work performed for one's own purposes and capitalized as part of fixed assets. + * + * + */ + @XmlEnumValue("OwnWorkCapitalized") + OWN_WORK_CAPITALIZED("OwnWorkCapitalized"), + + /** + * + * Product: QBO + * Description: Use Operating grants to track capital transfers in cash or in kind made by governments or by the rest of the world for regular operating purposes. + * + * + */ + @XmlEnumValue("OperatingGrants") + OPERATING_GRANTS("OperatingGrants"), + + /** + * + * Product: QBO + * Description: Use Other current operating $$income$$ to track $$income$$ arising from operations of the company that do not fit under any other category and that are not tracked in individual accounts. + * + * + */ + @XmlEnumValue("OtherCurrentOperatingIncome") + OTHER_CURRENT_OPERATING_INCOME("OtherCurrentOperatingIncome"), + + /** + * + * Product: QBO + * Description: Use Cost of goods sold to track costs related to sales you provide + * + * + */ + @XmlEnumValue("CostOfSales") + COST_OF_SALES("CostOfSales"), + + /** + * + * Product: QBO + * Description: Unapplied Cash Bill Payment $$Expense$$ reports the Cash Basis $$expense$$ from vendor payment cheques you've sent but not yet applied to vendor bills. In general, you would never use this directly on a purchase or sale transaction. + * + * + */ + @XmlEnumValue("CashExpenditureExpense") + CASH_EXPENDITURE_EXPENSE("CashExpenditureExpense"), + + /** + * + * Product: QBO + * Description: Use External services to track $$expenses$$ paid for services provided by other companies that you are tracking in Supplier-specific accounts. If you need to track $$expenses$$ paid to other companies that do not have their own accounts, use Other external services instead. + * + * + */ + @XmlEnumValue("ExternalServices") + EXTERNAL_SERVICES("ExternalServices"), + + /** + * + * Product: QBO + * Description: Use Other external services to track $$expenses$$ paid for services provided by other companies that you are not tracking in Supplier-specific accounts. If you need to track $$expenses$$ paid to other companies that do have their own accounts, use External services instead. + * + * + */ + @XmlEnumValue("OtherExternalServices") + OTHER_EXTERNAL_SERVICES("OtherExternalServices"), + + /** + * + * Product: QBO + * Description: Use Purchases rebates on external services to track purchase rebates on $$expenses$$ paid for services provided by other companies. + * + * + */ + @XmlEnumValue("PurchasesRebates") + PURCHASES_REBATES("PurchasesRebates"), + + /** + * + * Product: QBO + * Use Other rental costs to track rental $$expenses$$ that do not fall under any other rental account. + * + * + */ + @XmlEnumValue("OtherRentalCosts") + OTHER_RENTAL_COSTS("OtherRentalCosts"), + + /** + * + * Product: QBO + * Description: Use Project studies, surveys, assessments to track $$expenses$$ relating to studies, surveys, and assessments. + * + * + */ + @XmlEnumValue("ProjectStudiesSurveysAssessments") + PROJECT_STUDIES_SURVEYS_ASSESSMENTS("ProjectStudiesSurveysAssessments"), + + /** + * + * Product: QBO + * Description: Use Sundry debtors and creditors to track miscellaneous amounts owed by customers and to suppliers that are not assigned their own account, and that are due within a year. + * + * + */ + @XmlEnumValue("Sundry") + SUNDRY("Sundry"), + + /** + * + * Product: QBO + * Description: Use Staff costs to track costs that can be associated with employees, such as benefits or parties. + * + * + */ + @XmlEnumValue("StaffCosts") + STAFF_COSTS("StaffCosts"), + + /** + * + * Product: QBO + * Description: Use Other current operating charges to track operating $$expenses$$ that do not fall under any other category. + * + * + */ + @XmlEnumValue("OtherCurrentOperatingCharges") + OTHER_CURRENT_OPERATING_CHARGES("OtherCurrentOperatingCharges"), + + /** + * + * Product: QBO + * Description: Use Extraordinary charges to track $$expenses$$ that are unusual, unexpected, and a one-time event. + * + * + */ + @XmlEnumValue("ExtraordinaryCharges") + EXTRAORDINARY_CHARGES("ExtraordinaryCharges"), + + /** + * + * Product: QBO + * Description: Use Appropriations to depreciation and provisions to track reservations on amounts on depreciation and provisions. + * + * + */ + @XmlEnumValue("AppropriationsToDepreciation") + APPROPRIATIONS_TO_DEPRECIATION("AppropriationsToDepreciation"), + + /** + * + * Product: QBO + * Description: Use Accruals and deferred $$income$$ at the accounting year end to track $$expenses$$ for invoices which have not been received by the end of the accounting period. + * + * + */ + @XmlEnumValue("AccrualsAndDeferredIncome") + ACCRUALS_AND_DEFERRED_INCOME("AccrualsAndDeferredIncome"), + + /** + * + * Product: QBO + * Description: Use Current tax liability to track the total amount of taxes collected but not yet paid to the government. + * + * + */ + @XmlEnumValue("CurrentTaxLiability") + CURRENT_TAX_LIABILITY("CurrentTaxLiability"), + + /** + * + * Product: QBO + * Description: Use Deferred tax for tax liabilities or assets that are to be used in future accounting periods. + * + * + */ + @XmlEnumValue("DeferredTax") + DEFERRED_TAX("DeferredTax"), + + /** + * + * Product: QBO + * Description: Use Distribution costs to track the cost of shipping goods to $$customers$$ or distributors. + * + * + */ + @XmlEnumValue("DistributionCosts") + DISTRIBUTION_COSTS("DistributionCosts"), + + /** + * + * Product: QBO + * Description: Use Investments to track the amounts received from individuals or other organizations + * + * + */ + @XmlEnumValue("Investments") + INVESTMENTS("Investments"), + + /** + * + * Product: QBO + * Description: Use term borrowings to track the amount due on long term borrowing + * + * + */ + @XmlEnumValue("LongTermBorrowings") + LONG_TERM_BORROWINGS("LongTermBorrowings"), + + /** + * + * Product: QBO + * Description: Use Other intangible assets to track non-monetary assets that cannot be seen, touched or physically measured that don't fall into the other intangible asset types. + * + * + */ + @XmlEnumValue("OtherIntangibleAssets") + OTHER_INTANGIBLE_ASSETS("OtherIntangibleAssets"), + + /** + * + * Product: QBO + * Description: Use Prepayments and accrued $$income$$ to track payments and $$income$$ paid in advance to cover costs that will be charged in future years. + * + * + */ + @XmlEnumValue("PrepaymentsAndAccruedIncome") + PREPAYMENTS_AND_ACCRUED_INCOME("PrepaymentsAndAccruedIncome"), + + /** + * + * Product: QBO + * Description: Use Short term borrowings to track loans that need to be paid back within 12 months. + * + * + */ + @XmlEnumValue("ShortTermBorrowings") + SHORT_TERM_BORROWINGS("ShortTermBorrowings"), + + /** + * + * Product: QBO + * Description: Use Provision for liabilities to track the funds set aside in anticipation of future expenditures. + * + * + */ + @XmlEnumValue("ProvisionForLiabilities") + PROVISION_FOR_LIABILITIES("ProvisionForLiabilities"), + + /** + * + * Product: QBO + * Description: Use Called up share capital to track share capital which has been issued. + * + * + */ + @XmlEnumValue("CalledUpShareCapital") + CALLED_UP_SHARE_CAPITAL("CalledUpShareCapital"), + + /** + * + * Product: QBO + * Description: Use Called up share capital not paid to track share capital which has been issued but not yet paid. + * + * + */ + @XmlEnumValue("CalledUpShareCapitalNotPaid") + CALLED_UP_SHARE_CAPITAL_NOT_PAID("CalledUpShareCapitalNotPaid"), + + /** + * + * Product: QBO + * Description: Use Land for land or property you don't depreciate.If land and building were acquired together, split the cost between the two in a logical way. One common method is to use the land-to-building ratio on the property tax statement.For land you use as a natural resource, use a Depletable assets account, instead. + * + * + */ + @XmlEnumValue("LandAsset") + LAND_ASSET("LandAsset"), + + /** + * + * Product: QBO + * Description: Use Available-for-sale financial assets to track financial assets held for sale. + * + * + */ + @XmlEnumValue("AvailableForSaleFinancialAssets") + AVAILABLE_FOR_SALE_FINANCIAL_ASSETS("AvailableForSaleFinancialAssets"), + + /** + * + * Product: QBO + * Description: Use Provision for warranty obligations to track expected $$expense$$ of statutory and contractual warranty claims. + * + * + */ + @XmlEnumValue("ProvisionForWarrantyObligations") + PROVISION_FOR_WARRANTY_OBLIGATIONS("ProvisionForWarrantyObligations"), + + /** + * + * Product: QBO + * Description: Use Current portion of employee benefits obligations to track the current amount due of employee benefits + * + * + */ + @XmlEnumValue("CurrentPortionEmployeeBenefitsObligations") + CURRENT_PORTION_EMPLOYEE_BENEFITS_OBLIGATIONS("CurrentPortionEmployeeBenefitsObligations"), + + /** + * + * Product: QBO + * Description: Use Long term employee benefit obligations to track the amount due on employee benefits longer than one year. + * + * + */ + @XmlEnumValue("LongTermEmployeeBenefitObligations") + LONG_TERM_EMPLOYEE_BENEFIT_OBLIGATIONS("LongTermEmployeeBenefitObligations"), + + /** + * + * Product: QBO + * Description: Use Obligations under finance leases to track additional obligations from the terms of the lease. An example would be a balloon payment made at the end of the lease agreement. + * + * + */ + @XmlEnumValue("ObligationsUnderFinanceLeases") + OBLIGATIONS_UNDER_FINANCE_LEASES("ObligationsUnderFinanceLeases"), + + /** + * + * Product: QBO + * Description: Use Bank loans to track the amount due on bank loans. + * + * + */ + @XmlEnumValue("BankLoans") + BANK_LOANS("BankLoans"), + + /** + * + * Product: QBO + * Description: Use Interest payables to track interest due on loans. + * + * + */ + @XmlEnumValue("InterestPayables") + INTEREST_PAYABLES("InterestPayables"), + + /** + * + * Product: QBO + * Description: Use Gain/loss on sale of investments to track the increase/decrease in value on the sale of investments. + * + * + */ + @XmlEnumValue("GainLossOnSaleOfInvestments") + GAIN_LOSS_ON_SALE_OF_INVESTMENTS("GainLossOnSaleOfInvestments"), + + /** + * + * Product: QBO + * Description: Use Gain/loss on sale of fixed assets (property,plant, or equipment) to track the increase/decrease in value on the sale of a fixed asset + * + * + */ + @XmlEnumValue("GainLossOnSaleOfFixedAssets") + GAIN_LOSS_ON_SALE_OF_FIXED_ASSETS("GainLossOnSaleOfFixedAssets"), + + /** + * + * Product: QBO + * Description: Use Share capital to track the funds raised by issuing shares. + * + * + */ + @XmlEnumValue("ShareCapital") + SHARE_CAPITAL("ShareCapital"), + + /** + * + * Product: QBO + * Description: Use Current portion of obligations under finance leases to track the value of lease payments due within the next 12 months. + * + * + */ + @XmlEnumValue("CurrentPortionOfObligationsUnderFinanceLeases") + CURRENT_PORTION_OF_OBLIGATIONS_UNDER_FINANCE_LEASES("CurrentPortionOfObligationsUnderFinanceLeases"), + + /** + * + * Product: QBO + * Description: Use Assets held for sale to track assets of a company that are available for sale that are not expected to be held for a long period of time. + * + * + */ + @XmlEnumValue("AssetsHeldForSale") + ASSETS_HELD_FOR_SALE("AssetsHeldForSale"), + + /** + * + * Product: QBO + * Description: Use Accrued Liabilities to track $$expenses$$ that a business has incurred but has not yet paid. For example, pensions for companies that contribute to a pension fund for their employees for their retirement. + * + * + */ + @XmlEnumValue("AccruedLiabilities") + ACCRUED_LIABILITIES("AccruedLiabilities"), + + /** + * + * Product: QBO + * Description: Use Accrued Non-current liabilities to track $$expenses$$ that a business has incurred but has not yet paid. For example, pensions for companies that contribute to a pension fund for their employees for their retirement. + * + * + */ + @XmlEnumValue("AccruedLongLermLiabilities") + ACCRUED_LONG_LERM_LIABILITIES("AccruedLongLermLiabilities"), + + /** + * + * Product: QBO + * Description: Use Accrued vacation payable to track vacation earned but that has not been paid out to employees. + * + * + */ + @XmlEnumValue("AccruedVacationPayable") + ACCRUED_VACATION_PAYABLE("AccruedVacationPayable"), + + /** + * + * Product: QBO + * Description: Use Cash and Cash Equivalents to track cash or assets that can be converted into cash immediately. For example, marketable securities and Treasury bills. + * + * + */ + @XmlEnumValue("CashAndCashEquivalents") + CASH_AND_CASH_EQUIVALENTS("CashAndCashEquivalents"), + + /** + * + * Product: QBO + * Description: Use Commissions and fees to track amounts paid to agents (such as brokers) in order for them to execute a trade. + * + * + */ + @XmlEnumValue("CommissionsAndFees") + COMMISSIONS_AND_FEES("CommissionsAndFees"), + + /** + * + * Product: QBO + * Description: Use Amortization $$expense$$ to track writing off of assets (such as intangible assets or investments) over the projected life of the assets. + * + * + */ + @XmlEnumValue("AmortizationExpense") + AMORTIZATION_EXPENSE("AmortizationExpense"), + + /** + * + * Product: QBO + * Description: Use Loss on discontinued operations, net of tax to track the loss realized when a part of the business ceases to operate or when a product line is discontinued. + * + * + */ + @XmlEnumValue("LossOnDiscontinuedOperationsNetOfTax") + LOSS_ON_DISCONTINUED_OPERATIONS_NET_OF_TAX("LossOnDiscontinuedOperationsNetOfTax"), + + /** + * + * Product: QBO + * Description: Use Management compensation to track remuneration paid to Management, Executives and non-Executives. For example, salary, fees, and benefits. + * + * + */ + @XmlEnumValue("ManagementCompensation") + MANAGEMENT_COMPENSATION("ManagementCompensation"), + + /** + * + * Product: QBO + * Description: Use Other selling $$expenses$$ to track selling $$expenses$$ incurred that do not fall under any other category. + * + * + */ + @XmlEnumValue("OtherSellingExpenses") + OTHER_SELLING_EXPENSES("OtherSellingExpenses"), + + /** + * + * Product: QBO + * Description: Use Liabilities related to assets held for sale to track any liabilities that are directly related to assets being sold or written off. + * + * + */ + @XmlEnumValue("LiabilitiesRelatedToAssetsHeldForSale") + LIABILITIES_RELATED_TO_ASSETS_HELD_FOR_SALE("LiabilitiesRelatedToAssetsHeldForSale"), + + /** + * + * Product: QBO + * Description: Use Long-term debt to track loans and obligations with a maturity of longer than one year. For example, mortgages. + * + * + */ + @XmlEnumValue("LongTermDebit") + LONG_TERM_DEBIT("LongTermDebit"), + + /** + * + * Product: QBO + * Description: Use Equity in earnings of subsidiaries to track the original investment in shares of subsidiaries plus the share of earnings or losses from the operations of the subsidiary. + * + * + */ + @XmlEnumValue("EquityInEarningsOfSubsiduaries") + EQUITY_IN_EARNINGS_OF_SUBSIDUARIES("EquityInEarningsOfSubsiduaries"), + + /** + * + * Product: QBO + * Description: Use Other operating $$income$$ to track $$income$$ from activities other than normal business operations. For example, Investment interest, foreign exchange gains, and rent $$income$$. + * + * + */ + @XmlEnumValue("OtherOperatingIncome") + OTHER_OPERATING_INCOME("OtherOperatingIncome"), + + /** + * + * Product: QBO + * Description: Use Revenue - General to track $$income$$ from normal business operations that do not fit under any other category. + * + * + */ + @XmlEnumValue("RevenueGeneral") + REVENUE_GENERAL("RevenueGeneral"), + + /** + * + * Product: QBO + * Description: Use Dividend disbursed to track a payment given to its shareholders out of the company's retained earnings. + * + * + */ + @XmlEnumValue("DividendDisbursed") + DIVIDEND_DISBURSED("DividendDisbursed"), + + /** + * + * Product: QBO + * Description: Use Freight and delivery - COS to track the cost of shipping/delivery of obtaining raw materials and producing finished goods for resale. + * + * + */ + @XmlEnumValue("FreightAndDeliveryCos") + FREIGHT_AND_DELIVERY_COS("FreightAndDeliveryCos"), + + /** + * + * Product: QBO + * Description: Use Shipping and delivery $$expense$$ to track the cost of shipping and delivery of goods to customers. + * + * + */ + @XmlEnumValue("ShippingAndDeliveryExpense") + SHIPPING_AND_DELIVERY_EXPENSE("ShippingAndDeliveryExpense"), + + /** + * + * Product: QBO + * Description: Use Travel $$expenses$$ - general and admin $$expenses$$ to track travelling costs incurred that are not directly related to the revenue-generating operation of the company. For example, flight tickets and hotel costs when performing job interviews. + * + * + */ + @XmlEnumValue("TravelExpensesGeneralAndAdminExpenses") + TRAVEL_EXPENSES_GENERAL_AND_ADMIN_EXPENSES("TravelExpensesGeneralAndAdminExpenses"), + + /** + * + * Product: QBO + * Description: Use Travel $$expenses$$ - selling $$expense$$ to track travelling costs incurred that are directly related to the revenue-generating operation of the company. For example, flight tickets and hotel costs when selling products and services. + * + * + */ + @XmlEnumValue("TravelExpensesSellingExpense") + TRAVEL_EXPENSES_SELLING_EXPENSE("TravelExpensesSellingExpense"), + + /** + * + * Product: QBO + * Description: Use Unrealised loss on securities, net of tax to track losses on securities that have occurred but are yet been realized through a transaction. For example, shares whose value has fallen but that are still being held. + * + * + */ + @XmlEnumValue("UnrealisedLossOnSecuritiesNetOfTax") + UNREALISED_LOSS_ON_SECURITIES_NET_OF_TAX("UnrealisedLossOnSecuritiesNetOfTax"), + + /** + * + * Product: QBO + * Description: Use Sales - retail to track sales of goods/services that have a mark-up cost to consumers. + * + * + */ + @XmlEnumValue("SalesRetail") + SALES_RETAIL("SalesRetail"), + + /** + * + * Product: QBO + * Description: Use Sales - wholesale to track the sale of goods in quantity for resale purposes. + * + * + */ + @XmlEnumValue("SalesWholesale") + SALES_WHOLESALE("SalesWholesale"), + + /** + * + * Product: QBO + * Description: Use Other comprehensive $$income$$ to track the increases or decreases in $$income$$ from various businesses that is not yet absorbed by the company. + * + * + */ + @XmlEnumValue("AccumulatedOtherComprehensiveIncome") + ACCUMULATED_OTHER_COMPREHENSIVE_INCOME("AccumulatedOtherComprehensiveIncome"), + + /** + * + * Product: QBO + * Description: Use Assets available for sale to track assets that are available for sale that are not expected to be held for a long period of time. + * + * + */ + @XmlEnumValue("AssetsAvailableForSale") + ASSETS_AVAILABLE_FOR_SALE("AssetsAvailableForSale"), + + /** + * + * Product: QBO + * Description: Use Loss on disposal of assets to track losses realized on the disposal of assets. + * + * + */ + @XmlEnumValue("LossOnDisposalOfAssets") + LOSS_ON_DISPOSAL_OF_ASSETS("LossOnDisposalOfAssets"), + + /** + * + * Product: QBO + * Description: Use Land to track assets that are not easily convertible to cash or not expected to become cash within the next year. For example, leasehold improvements. + * + * + */ + @XmlEnumValue("NonCurrentAssets") + NON_CURRENT_ASSETS("NonCurrentAssets"), + + /** + * + * Product: QBO + * Description: Use $$Income$$ tax $$expense$$ to track $$income$$ taxes that the company has paid to meet their tax obligations. + * + * + */ + @XmlEnumValue("IncomeTaxExpense") + INCOME_TAX_EXPENSE("IncomeTaxExpense"), + + /** + * + * Product: QBO + * Description: Use Long-term investments to track investments that have a maturity date of longer than one year. + * + * + */ + @XmlEnumValue("LongTermInvestments") + LONG_TERM_INVESTMENTS("LongTermInvestments"), + + /** + * + * Product: QBO + * Description: Use Dividends payable to track dividends that are owed to shareholders but have not yet been paid. + * + * + */ + @XmlEnumValue("DividendsPayable") + DIVIDENDS_PAYABLE("DividendsPayable"), + + /** + * + * Product: QBO + * Description: Use Accounts Receivable (A/R) to track monies to the company by their customers. This is also known as Debtors or Trade and other receivables. + * + * + */ + @XmlEnumValue("TradeAndOtherReceivables") + TRADE_AND_OTHER_RECEIVABLES("TradeAndOtherReceivables"), + + /** + * + * Product: QBO + * Description: Use Accounts Payable (A/P) to track monies owed by the company to their suppliers. This is also known as Creditors or Trade and other payables. + * + * + */ + @XmlEnumValue("TradeAndOtherPayables") + TRADE_AND_OTHER_PAYABLES("TradeAndOtherPayables"), + + /** + * + * Product: QBO + * Description: Use Other current liabilities to track monies owed by the company and due within one year. + * + * + */ + @XmlEnumValue("CurrentLiabilities") + CURRENT_LIABILITIES("CurrentLiabilities"), + + /** + * + * Product: QBO + * Description: The Savings by FRS Income account is used to track the savings incurred by using the FRS scheme at the time of filing. + * + * + */ + @XmlEnumValue("SavingsByTaxScheme") + SAVINGS_BY_TAX_SCHEME("SavingsByTaxScheme"), + + /** + * + * Product: QBO + * Description: Use Borrowing Costs to track the cost to procure funds. This includes supplementary costs that relate to borrowings. + * + * + */ + @XmlEnumValue("BorrowingCost") + BORROWING_COST("BorrowingCost"), + + /** + * + * Product: QBO + * Description: Use Depletion to track the reduction in value of an asset used in the extraction of natural resources like quarries, mines, and so on, where the quantity of the material of asset reduces with extraction. + * + * + */ + @XmlEnumValue("Depletion") + DEPLETION("Depletion"), + + /** + * + * Product: QBO + * Description: Use Exceptional Items to record income/expenditure items that are connected to the business activities, but are of exceptional nature and are observed to have a substantial impact on the performance and net results of the company. + * + * + */ + @XmlEnumValue("ExceptionalItems") + EXCEPTIONAL_ITEMS("ExceptionalItems"), + + /** + * + * Product: QBO + * Description: Use Prior Period Items to record income/expenditure items from prior accounting periods that were omitted or erroneously recorded in the prior period. + * + * + */ + @XmlEnumValue("PriorPeriodItems") + PRIOR_PERIOD_ITEMS("PriorPeriodItems"), + + /** + * + * Product: QBO + * Description: Use Extraordinary Items to record income/expenditure items from non-recurring transactions that are not connected to the routine course of business activities. + * + * + */ + @XmlEnumValue("ExtraordinaryItems") + EXTRAORDINARY_ITEMS("ExtraordinaryItems"), + + /** + * + * Product: QBO + * Description: Use MAT Credit to record the amount of Minimum Alternate Tax (MAT) credit used to pay the taxes on the current year's income. + * + * + */ + @XmlEnumValue("MatCredit") + MAT_CREDIT("MatCredit"), + + /** + * + * Product: QBO + * Description: Use Other Free Reserves to track reserves not covered by other free reserve types. Free Reserves are reserves created from profits. You can use them to declare dividends, but not to repay any future liability. + * + * + */ + @XmlEnumValue("OtherFreeReserves") + OTHER_FREE_RESERVES("OtherFreeReserves"), + + /** + * + * Product: QBO + * Description: Use Capital Reserves to track the reserves created when the company accumulated capital profits, not including any profits from revenue. + * + * + */ + @XmlEnumValue("CapitalReserves") + CAPITAL_RESERVES("CapitalReserves"), + + /** + * + * Product: QBO + * Description: Use Funds to track any portion of a reserve that is earmarked for a specific investment outside the business, such as a Sinking Fund. + * + * + */ + @XmlEnumValue("Funds") + FUNDS("Funds"), + + /** + * + * Product: QBO + * Description: Use Money Received Against Share Warrants to track money received when share warrants were issued. A share warrant is a document that entitles its holder to buy shares at a certain price in the future. + * + * + */ + @XmlEnumValue("MoneyReceivedAgainstShareWarrants") + MONEY_RECEIVED_AGAINST_SHARE_WARRANTS("MoneyReceivedAgainstShareWarrants"), + + /** + * + * Product: QBO + * Description: Use + *
+     * <?xml version="1.0" encoding="UTF-8"?><b xmlns="http://schema.intuit.com/finance/v3" xmlns:p90342_="http://java.sun.com/xml/ns/jaxb" xmlns:p9208_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:xs="http://www.w3.org/2001/XMLSchema">Share Application Money Pending Allotment</b>
+     * 
+ * to track the application amounts the company receives for shares that still need to be allotted to the investors. + * + * + */ + @XmlEnumValue("ShareApplicationMoneyPendingAllotment") + SHARE_APPLICATION_MONEY_PENDING_ALLOTMENT("ShareApplicationMoneyPendingAllotment"), + + /** + * + * Product: QBO + * Description: Use Deferred Tax Liabilities to record future tax liability from timing differences between book profits from the Companies Act and taxable profits from the Income Tax Act. + * + * + */ + @XmlEnumValue("DeferredTaxLiabilities") + DEFERRED_TAX_LIABILITIES("DeferredTaxLiabilities"), + + /** + * + * Product: QBO + * Description: Use Other Long Term Provisions to track the provisions for more than twelve months that do not classify under other account types. + * + * + */ + @XmlEnumValue("OtherLongTermProvisions") + OTHER_LONG_TERM_PROVISIONS("OtherLongTermProvisions"), + + /** + * + * Product: QBO + * Description: Use Capital Work-in-Progress to track the amount spent to create an asset that is not yet complete as of the date of the balance sheet (Work under process). For example, Asset Under Construction. + * + * + */ + @XmlEnumValue("CapitalWip") + CAPITAL_WIP("CapitalWip"), + + /** + * + * Product: QBO + * Description: Use Intangible Assets Under Development to track the amount spent to generate an intangible asset that is not yet complete as of the date of the balance sheet (Work Under Process). For example, Asset Under Construction. + * + * + */ + @XmlEnumValue("IntangibleAssetsUnderDevelopment") + INTANGIBLE_ASSETS_UNDER_DEVELOPMENT("IntangibleAssetsUnderDevelopment"), + + /** + * + * Product: QBO + * Description: Use Other Long Term Investments to track investments that you expect to hold for more than twelve months and that are not classified in other account types. + * + * + */ + @XmlEnumValue("OtherLongTermInvestments") + OTHER_LONG_TERM_INVESTMENTS("OtherLongTermInvestments"), + + /** + * + * Product: QBO + * Description: Use Long Term Loans and Advances to Related Parties to track loans and advances given to related parties for more than twelve months from the balance sheet date. + * + * + */ + @XmlEnumValue("LongTermLoansAndAdvancesToRelatedParties") + LONG_TERM_LOANS_AND_ADVANCES_TO_RELATED_PARTIES("LongTermLoansAndAdvancesToRelatedParties"), + + /** + * + * Product: QBO + * Description: Use Other Long Term Loans and Advances to track loans and advances given to related parties for more than twelve months from the balance sheet date, that are not classified in other account types. + * + * + */ + @XmlEnumValue("OtherLongTermLoansAndAdvances") + OTHER_LONG_TERM_LOANS_AND_ADVANCES("OtherLongTermLoansAndAdvances"), + + /** + * + * Product: QBO + * Description: Use Short Term Investments in Related Parties to track investments held in subsidiaries, associates, joint ventures and other related entities maturing within 12 months. + * + * + */ + @XmlEnumValue("ShortTermInvestmentsInRelatedParties") + SHORT_TERM_INVESTMENTS_IN_RELATED_PARTIES("ShortTermInvestmentsInRelatedParties"), + + /** + * + * Product: QBO + * Description: Use Other Earmarked Bank Accounts to keep track of funds set aside for a specific purpose. For example, funds set aside to be able to pay a specific liability in the future. + * + * + */ + @XmlEnumValue("OtherEarmarkedBankAccounts") + OTHER_EARMARKED_BANK_ACCOUNTS("OtherEarmarkedBankAccounts"), + + /** + * + * Product: QBO + * Description: Use Short Term Loans and Advances to Related Parties to track loans and advance given to related parties for a period not more than twelve months from the balance sheet date. + * + * + */ + @XmlEnumValue("ShortTermLoansAndAdvancesToRelatedParties") + SHORT_TERM_LOANS_AND_ADVANCES_TO_RELATED_PARTIES("ShortTermLoansAndAdvancesToRelatedParties"), + + /** + * + * Product: QBO + * Description: Use Deferred Tax Expense to track the difference between the tax liability from book profits and the tax liability from taxable profits. The variation is from timing differences between book profits and taxable profits, which may become reversed in a later period. + * + * + */ + @XmlEnumValue("DeferredTaxExpense") + DEFERRED_TAX_EXPENSE("DeferredTaxExpense"), + + /** + * + * Product: QBO + * Description: Use Income Tax to track the amount of tax liability payable on the profits earned for the period (based on The Income Tax Act). + * + * + */ + @XmlEnumValue("IncomeTaxOtherExpense") + INCOME_TAX_OTHER_EXPENSE("IncomeTaxOtherExpense"), + + /** + * + * Product: QBO + * Description: Use Duties and Taxes to keep track of various duties and taxes payable by the company. However, it does not include Income Tax (for example, VAT Payable, Service Tax Payable). + * + * + */ + @XmlEnumValue("DutiesAndTaxes") + DUTIES_AND_TAXES("DutiesAndTaxes"), + + /** + * + * Product: QBO + * Description: Use Balance with Government Authorities to track the amount of taxes paid on input services/purchases, which offset taxes collected on sales (for example, CENVAT Credit Receivable). + * + * + */ + @XmlEnumValue("BalWithGovtAuthorities") + BAL_WITH_GOVT_AUTHORITIES("BalWithGovtAuthorities"), + + /** + * + * Product: QBO + * Description: Use Tax Roundoff Gain or Loss to track gains or losses that occur as a result of Tax filing roundoff. + * + * + */ + @XmlEnumValue("TaxRoundoffGainOrLoss") + TAX_ROUNDOFF_GAIN_OR_LOSS("TaxRoundoffGainOrLoss"); private final String value; AccountSubTypeEnum(String v) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountTypeEnum.java index 4899e538..459f2c1c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AccountTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AcquiredAsEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AcquiredAsEnum.java index dfd63338..122ee305 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AcquiredAsEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AcquiredAsEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AdvancedInventoryPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AdvancedInventoryPrefs.java index e2148cf2..f8e6604b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AdvancedInventoryPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AdvancedInventoryPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attachable.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attachable.java index 2a17ac69..38a78d93 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attachable.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attachable.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableCategoryEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableCategoryEnum.java index 777d3c10..b12a879d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableCategoryEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableCategoryEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableRef.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableRef.java index 74e6c17d..397ba29e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableRef.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableRef.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableResponse.java index 3032fabc..1f5a5cd9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/AttachableResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attribute.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attribute.java index f085f9b3..38a0b58c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attribute.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attribute.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attributes.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attributes.java index 407642c2..f024426b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attributes.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Attributes.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemRequest.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemRequest.java index 475c4401..c42ecdc1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemRequest.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemRequest.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -101,68 +86,68 @@ public class BatchItemRequest implements Serializable, Equals2, HashCode2 * * @return * possible object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public JAXBElement getIntuitObject() { @@ -174,68 +159,68 @@ public JAXBElement getIntuitObject() { * * @param value * allowed object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public void setIntuitObject(JAXBElement value) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemResponse.java index 75ee8e46..838ee68f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BatchItemResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -131,68 +116,68 @@ public void setWarnings(Warnings value) { * * @return * possible object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public JAXBElement getIntuitObject() { @@ -204,68 +189,68 @@ public JAXBElement getIntuitObject() { * * @param value * allowed object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public void setIntuitObject(JAXBElement value) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Bill.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Bill.java index cfc747b6..45f6e289 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Bill.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Bill.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPayment.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPayment.java index 19b977f4..58f0de37 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPayment.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPayment.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCheck.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCheck.java index 919416a0..11098de7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCheck.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCheck.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCreditCard.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCreditCard.java index 06ec4b9c..a1b7315e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCreditCard.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentCreditCard.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentTypeEnum.java index 6ebaa0e9..3c6bb738 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillPaymentTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillableStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillableStatusEnum.java index 28b1ab9c..cfe4a671 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillableStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BillableStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BooleanTypeCustomFieldDefinition.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BooleanTypeCustomFieldDefinition.java index c409e8cd..6e5ce33e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BooleanTypeCustomFieldDefinition.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BooleanTypeCustomFieldDefinition.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Budget.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Budget.java index f22e8bd7..e9990cba 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Budget.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Budget.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetDetail.java index bf5dc6f6..6dcc4f84 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetEntryTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetEntryTypeEnum.java index fd4039db..27798734 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetEntryTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetEntryTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetTypeEnum.java index e139293b..b0b4404b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/BudgetTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCAVSMatchEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCAVSMatchEnum.java index 6436fb80..d00e69b0 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCAVSMatchEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCAVSMatchEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCPaymentStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCPaymentStatusEnum.java index 9aa043ec..29cffddd 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCPaymentStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCPaymentStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCSecurityCodeMatchEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCSecurityCodeMatchEnum.java index ad2faf95..0c898353 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCSecurityCodeMatchEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCSecurityCodeMatchEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnModeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnModeEnum.java index 962e80a1..ef9ddf52 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnModeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnModeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnTypeEnum.java index 12fe22e7..a35f08c7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CCTxnTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCQuery.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCQuery.java index 797b2194..b6856b80 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCQuery.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCQuery.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCResponse.java index 1940fff4..4acb25e6 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CDCResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Cascade.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Cascade.java index 9d839b1b..fa100f4d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Cascade.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Cascade.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CascadeResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CascadeResponse.java index ca4138d6..1f9453be 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CascadeResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CascadeResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashBackInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashBackInfo.java index 445fb20a..e8ed63e6 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashBackInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashBackInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashPurchase.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashPurchase.java index 61bb3228..44989537 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashPurchase.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CashPurchase.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ChargeCredit.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ChargeCredit.java index 3113b39d..291f09f5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ChargeCredit.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ChargeCredit.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPayment.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPayment.java index 4be92c31..1927001f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPayment.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPayment.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPurchase.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPurchase.java index 369ab269..4fafaccc 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPurchase.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CheckPurchase.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Class.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Class.java index 73c3e79e..1bff46cd 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Class.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Class.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColData.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColData.java index 4462e6c3..ded7bf73 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColData.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColData.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Column.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Column.java index 0878b41d..581a4beb 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Column.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Column.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColumnTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColumnTypeEnum.java index 5baa1ba8..c7b019ad 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColumnTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ColumnTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Columns.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Columns.java index 5d293b7c..4f503e82 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Columns.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Columns.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Company.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Company.java index 8f416852..01611a71 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Company.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Company.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyAccountingPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyAccountingPrefs.java index 78defede..450ff6e2 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyAccountingPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyAccountingPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyCurrency.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyCurrency.java index ea57a068..68d29049 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyCurrency.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyCurrency.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyInfo.java index 11e76974..b83c112a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CompanyInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactInfo.java index 05453796..e93b3a83 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactTypeEnum.java index f16f0ec2..5d5cc55d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ContactTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPayment.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPayment.java index 4bf59ee2..3704b10c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPayment.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPayment.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPurchase.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPurchase.java index 0beb35db..efe177e5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPurchase.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardPurchase.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardTypeEnum.java index f40471be..9b3a7d02 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditCardTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeInfo.java index 8d8c4122..e24dd471 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeResponse.java index 37b528e4..e44a09b2 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditChargeResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditMemo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditMemo.java index e1875943..4f6080e3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditMemo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CreditMemo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Currency.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Currency.java index c76c71bd..a6c5c67c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Currency.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Currency.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyCode.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyCode.java index 591dcffc..346815a5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyCode.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyCode.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyPrefs.java index 14a5604f..451824f6 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CurrencyPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomField.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomField.java index 82700c4c..83361926 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomField.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomField.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldDefinition.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldDefinition.java index 2f1b87f7..61455b35 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldDefinition.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldDefinition.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldTypeEnum.java index 18941222..07e4a237 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomFieldTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Customer.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Customer.java index 4a72747d..2eb5280e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Customer.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Customer.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -102,6 +87,7 @@ * <element name="ARAccountRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * <element name="PrimaryTaxIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="TaxExemptionReasonId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="IsProject" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -149,7 +135,8 @@ "secondaryTaxIdentifier", "arAccountRef", "primaryTaxIdentifier", - "taxExemptionReasonId" + "taxExemptionReasonId", + "isProject" }) public class Customer extends NameBase @@ -235,6 +222,8 @@ public class Customer protected String primaryTaxIdentifier; @XmlElement(name = "TaxExemptionReasonId") protected String taxExemptionReasonId; + @XmlElement(name = "IsProject") + protected Boolean isProject; /** * Gets the value of the taxable property. @@ -1153,6 +1142,30 @@ public void setTaxExemptionReasonId(String value) { this.taxExemptionReasonId = value; } + /** + * Gets the value of the isProject property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsProject() { + return isProject; + } + + /** + * Sets the value of the isProject property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsProject(Boolean value) { + this.isProject = value; + } + /** * Sets the value of the otherAddr property. * @@ -1518,6 +1531,15 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + Boolean lhsIsProject; + lhsIsProject = this.isIsProject(); + Boolean rhsIsProject; + rhsIsProject = that.isIsProject(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "isProject", lhsIsProject), LocatorUtils.property(thatLocator, "isProject", rhsIsProject), lhsIsProject, rhsIsProject, (this.isProject!= null), (that.isProject!= null))) { + return false; + } + } return true; } @@ -1718,6 +1740,11 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { theTaxExemptionReasonId = this.getTaxExemptionReasonId(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "taxExemptionReasonId", theTaxExemptionReasonId), currentHashCode, theTaxExemptionReasonId, (this.taxExemptionReasonId!= null)); } + { + Boolean theIsProject; + theIsProject = this.isIsProject(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "isProject", theIsProject), currentHashCode, theIsProject, (this.isProject!= null)); + } return currentHashCode; } diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerMsg.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerMsg.java index be9df183..0ae71cba 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerMsg.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerMsg.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerType.java index 98273ad5..d84b5f99 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerTypeEnum.java index e92b7db3..cb595154 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/CustomerTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateMacro.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateMacro.java index 86729c6c..7b30489f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateMacro.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateMacro.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateTypeCustomFieldDefinition.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateTypeCustomFieldDefinition.java index d34661c9..b004a200 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateTypeCustomFieldDefinition.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DateTypeCustomFieldDefinition.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DayOfWeekEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DayOfWeekEnum.java index aa9004b5..b8e37b08 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DayOfWeekEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DayOfWeekEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryErrorTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryErrorTypeEnum.java index b36943fc..0c509186 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryErrorTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryErrorTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryTypeEnum.java index 084e414d..34116611 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DeliveryTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Department.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Department.java index 55ddd5b7..9ed29920 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Department.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Department.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Deposit.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Deposit.java index fd91b333..67d6467a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Deposit.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Deposit.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DepositLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DepositLineDetail.java index 28e87afe..896efb08 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DepositLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DepositLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DescriptionLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DescriptionLineDetail.java index eacba4c5..c95b1570 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DescriptionLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DescriptionLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DesktopEntityTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DesktopEntityTypeEnum.java index 26e35d00..712afeb1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DesktopEntityTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DesktopEntityTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountLineDetail.java index 1de79ef0..f119164f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountOverride.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountOverride.java index abafe5f1..fb8cc979 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountOverride.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountOverride.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountTypeEnum.java index e6836cc4..eec9873b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/DiscountTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionEnabledStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionEnabledStatusEnum.java index e2d1a6df..933298c1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionEnabledStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionEnabledStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionStatusEnum.java index 5db0d984..0b15d8e1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ETransactionStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EffectiveTaxRate.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EffectiveTaxRate.java index fc44cafa..81e9d43d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EffectiveTaxRate.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EffectiveTaxRate.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddress.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddress.java index 80f23d45..c2c001e9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddress.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddress.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddressTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddressTypeEnum.java index 114cc92b..9c4e68bc 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddressTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailAddressTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailDeliveryInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailDeliveryInfo.java index 5b67ba35..1d1f52c8 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailDeliveryInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailDeliveryInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessage.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessage.java index 43098087..0b5441a1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessage.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessage.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessagesPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessagesPrefs.java index bd0551d4..2213389c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessagesPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailMessagesPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailStatusEnum.java index 6a69c740..6d0de142 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmailStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Employee.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Employee.java index 80198e9c..c06cbe35 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Employee.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Employee.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmployeeTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmployeeTypeEnum.java index bd6e24e2..9b6d2ed7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmployeeTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EmployeeTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityStatusEnum.java index f3713533..1d0cbd49 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeEnum.java index 74cc692a..8a3f1588 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeRef.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeRef.java index 0b03fec6..6306df08 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeRef.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EntityTypeRef.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Error.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Error.java index 58d63fe0..f919693a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Error.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Error.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Estimate.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Estimate.java index 98f97d8a..ae6312d1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Estimate.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Estimate.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EstimateStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EstimateStatusEnum.java index dae71d51..c729bf7d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EstimateStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/EstimateStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ExchangeRate.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ExchangeRate.java index 00306e6e..b05493db 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ExchangeRate.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ExchangeRate.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Fault.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Fault.java index 4b4fbb79..4939e5d3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Fault.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Fault.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FaultTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FaultTypeEnum.java index c506f6f4..92e1780a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FaultTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FaultTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FinanceChargePrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FinanceChargePrefs.java index 6e326fc5..f60f0361 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FinanceChargePrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FinanceChargePrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FixedAsset.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FixedAsset.java index c4f22f0a..335319de 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FixedAsset.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/FixedAsset.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Gender.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Gender.java index 33c4da69..1b327e2b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Gender.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Gender.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GenericContactType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GenericContactType.java index 7e919999..e32368ca 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GenericContactType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GenericContactType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GlobalTaxCalculationEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GlobalTaxCalculationEnum.java index fad4e9a8..88b91d7a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GlobalTaxCalculationEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GlobalTaxCalculationEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GroupLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GroupLineDetail.java index 583e51d2..edc1ae50 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GroupLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/GroupLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Header.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Header.java index c5ca2073..f55a3b59 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Header.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Header.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IdDomainEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IdDomainEnum.java index e6ca7994..ddad5742 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IdDomainEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IdDomainEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitAnyType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitAnyType.java index 3bec7264..79ea1d28 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitAnyType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitAnyType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -94,8 +79,8 @@ public class IntuitAnyType implements Serializable, Equals2, HashCode2 * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * * */ @@ -111,8 +96,8 @@ public List getAny() { * * @param any * allowed object is - * {@link Object } * {@link Element } + * {@link Object } * */ public void setAny(List any) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitBatchRequest.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitBatchRequest.java index f30d34b2..97ff4ee9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitBatchRequest.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitBatchRequest.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitEntity.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitEntity.java index 896c0720..5e7659aa 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitEntity.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitEntity.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitResponse.java index 6949fc2a..21f7d233 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/IntuitResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -162,68 +147,68 @@ public void setWarnings(Warnings value) { * * @return * possible object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public JAXBElement getIntuitObject() { @@ -235,68 +220,68 @@ public JAXBElement getIntuitObject() { * * @param value * allowed object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public void setIntuitObject(JAXBElement value) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/InventorySite.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/InventorySite.java index 249e51c6..068ad11b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/InventorySite.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/InventorySite.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Invoice.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Invoice.java index 7473b395..4f7702f7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Invoice.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Invoice.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Item.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Item.java index 29630321..4bb6c371 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Item.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Item.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemAssemblyDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemAssemblyDetail.java index e70faf8a..c7b68d71 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemAssemblyDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemAssemblyDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemBasedExpenseLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemBasedExpenseLineDetail.java index 449d3bdb..d6739d7c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemBasedExpenseLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemBasedExpenseLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemCategoryTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemCategoryTypeEnum.java index 7fbc0ce4..43a758aa 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemCategoryTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemCategoryTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemComponentLine.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemComponentLine.java index 6da83b46..aff50b24 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemComponentLine.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemComponentLine.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemGroupDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemGroupDetail.java index 142a4247..67334539 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemGroupDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemGroupDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemLineDetail.java index d79c0954..5a362846 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -69,6 +54,7 @@ * <element name="ItemAccountRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * <element name="InventorySiteRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * <element name="TaxCodeRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> + * <element name="TaxClassificationRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> @@ -89,7 +75,8 @@ "uomRef", "itemAccountRef", "inventorySiteRef", - "taxCodeRef" + "taxCodeRef", + "taxClassificationRef" }) @XmlSeeAlso({ ItemBasedExpenseLineDetail.class, @@ -121,6 +108,8 @@ public abstract class ItemLineDetail implements Serializable, Equals2, HashCode2 protected ReferenceType inventorySiteRef; @XmlElement(name = "TaxCodeRef") protected ReferenceType taxCodeRef; + @XmlElement(name = "TaxClassificationRef") + protected ReferenceType taxClassificationRef; /** * Gets the value of the itemRef property. @@ -386,6 +375,30 @@ public void setTaxCodeRef(ReferenceType value) { this.taxCodeRef = value; } + /** + * Gets the value of the taxClassificationRef property. + * + * @return + * possible object is + * {@link ReferenceType } + * + */ + public ReferenceType getTaxClassificationRef() { + return taxClassificationRef; + } + + /** + * Sets the value of the taxClassificationRef property. + * + * @param value + * allowed object is + * {@link ReferenceType } + * + */ + public void setTaxClassificationRef(ReferenceType value) { + this.taxClassificationRef = value; + } + public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; @@ -493,6 +506,15 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + ReferenceType lhsTaxClassificationRef; + lhsTaxClassificationRef = this.getTaxClassificationRef(); + ReferenceType rhsTaxClassificationRef; + rhsTaxClassificationRef = that.getTaxClassificationRef(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "taxClassificationRef", lhsTaxClassificationRef), LocatorUtils.property(thatLocator, "taxClassificationRef", rhsTaxClassificationRef), lhsTaxClassificationRef, rhsTaxClassificationRef, (this.taxClassificationRef!= null), (that.taxClassificationRef!= null))) { + return false; + } + } return true; } @@ -558,6 +580,11 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { theTaxCodeRef = this.getTaxCodeRef(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "taxCodeRef", theTaxCodeRef), currentHashCode, theTaxCodeRef, (this.taxCodeRef!= null)); } + { + ReferenceType theTaxClassificationRef; + theTaxClassificationRef = this.getTaxClassificationRef(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "taxClassificationRef", theTaxClassificationRef), currentHashCode, theTaxClassificationRef, (this.taxClassificationRef!= null)); + } return currentHashCode; } diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemReceiptLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemReceiptLineDetail.java index 96f91da5..f6adace9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemReceiptLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemReceiptLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemTypeEnum.java index 0ba8af9b..0dc48886 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ItemTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobInfo.java index 914d3851..f916e147 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobStatusEnum.java index 619791d7..9182a99f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobType.java index b0ca5c7d..be61553c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JobType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCode.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCode.java index 84753676..18d0b135 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCode.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCode.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCodeTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCodeTypeEnum.java index de9be061..41f731fd 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCodeTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalCodeTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntry.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntry.java index 2b80657c..d1035a56 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntry.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntry.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntryLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntryLineDetail.java index 6de9688d..cb32178a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntryLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/JournalEntryLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Line.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Line.java index 4e24489f..bfd69827 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Line.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Line.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LineDetailTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LineDetailTypeEnum.java index 4f3dcfe1..0f48081c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LineDetailTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LineDetailTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LinkedTxn.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LinkedTxn.java index 287272e3..4aabe3fe 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LinkedTxn.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/LinkedTxn.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MarkupInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MarkupInfo.java index fb140b2c..149be695 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MarkupInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MarkupInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MasterAccount.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MasterAccount.java index 1565ffa7..4c7ef7a4 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MasterAccount.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MasterAccount.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MemoRef.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MemoRef.java index c4d56bdf..fa6e7858 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MemoRef.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MemoRef.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ModificationMetaData.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ModificationMetaData.java index 0688042d..43b53b63 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ModificationMetaData.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ModificationMetaData.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Money.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Money.java index fa7c8baa..882c9b77 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Money.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Money.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MonthEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MonthEnum.java index 84a12493..e94cb35e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MonthEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/MonthEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameBase.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameBase.java index 174ad99d..d4b5e9b1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameBase.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameBase.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameValue.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameValue.java index 2a22a8f6..41703987 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameValue.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NameValue.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NumberTypeCustomFieldDefinition.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NumberTypeCustomFieldDefinition.java index 37d351c8..d43d4438 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NumberTypeCustomFieldDefinition.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/NumberTypeCustomFieldDefinition.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBAccount.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBAccount.java index 1d0921e0..370b307d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBAccount.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBAccount.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBStatus.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBStatus.java index 16d69b7f..4eed4189 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBStatus.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBStatus.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTransaction.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTransaction.java index 223ac571..f522dc62 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTransaction.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTransaction.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxn.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxn.java index 84f43905..f53c5bbd 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxn.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxn.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnDetail.java index c188f7c5..aec600da 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnStatusEnum.java index 5cb0eb6e..3fd1b10e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OLBTxnStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectFactory.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectFactory.java index b93ae112..bc0532b7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectFactory.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectFactory.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectNameEnumType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectNameEnumType.java index 4842c075..ee06ea55 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectNameEnumType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ObjectNameEnumType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OperationEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OperationEnum.java index 4fcc7d91..066a6b87 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OperationEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OperationEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherName.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherName.java index 27b4a83e..c1b31cbd 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherName.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherName.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherPrefs.java index 99331c7c..7b971093 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/OtherPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaySalesTaxEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaySalesTaxEnum.java index 18d524f6..3eeb65f5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaySalesTaxEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaySalesTaxEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Payment.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Payment.java index 858fbb67..f8c5a0d5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Payment.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Payment.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentLineDetail.java index 08c7c6f6..5e6dd595 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethod.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethod.java index a823c9cd..7dc08153 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethod.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethod.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethodEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethodEnum.java index 7252ebe5..1aca0e11 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethodEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentMethodEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentStatusEnum.java index 11948f2a..6480e3ce 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentTypeEnum.java index f2048983..63cb5ae3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PaymentTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PerItemAdjustEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PerItemAdjustEnum.java index fdda6f1a..2b154e4e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PerItemAdjustEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PerItemAdjustEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddress.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddress.java index e0f4e44e..e215b92c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddress.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddress.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddressTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddressTypeEnum.java index 8f00ba8d..bcd731fb 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddressTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PhysicalAddressTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PostingTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PostingTypeEnum.java index b340da7c..85c0fb31 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PostingTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PostingTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Preferences.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Preferences.java index 05708f80..59030fb3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Preferences.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Preferences.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevel.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevel.java index 7a1b57b9..7ae8bd00 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevel.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevel.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelPerItem.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelPerItem.java index 72430c89..cd167fe8 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelPerItem.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelPerItem.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelTypeEnum.java index e6d9fbac..21deb7ec 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PriceLevelTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintDocumentPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintDocumentPrefs.java index 11f1e56a..11a1fbe0 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintDocumentPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintDocumentPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintStatusEnum.java index eafb6bdb..d4f84f48 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PrintStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ProductAndServicesPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ProductAndServicesPrefs.java index 44199c32..deb0a64f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ProductAndServicesPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ProductAndServicesPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Purchase.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Purchase.java index 9ce162cb..83ab5cb2 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Purchase.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Purchase.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseByVendor.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseByVendor.java index 2db37c35..12488e19 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseByVendor.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseByVendor.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrder.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrder.java index 16232de5..a2412c78 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrder.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrder.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderItemLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderItemLineDetail.java index d024aa68..7b5c912c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderItemLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderItemLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderStatusEnum.java index 0726787e..ec92a12a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/PurchaseOrderStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QbdtEntityIdMapping.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QbdtEntityIdMapping.java index 811d5a18..e3fd8f64 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QbdtEntityIdMapping.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QbdtEntityIdMapping.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEntityTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEntityTypeEnum.java index 6ebdeab8..2a40227b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEntityTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEntityTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEstimateStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEstimateStatusEnum.java index c7ed55ca..e92669d9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEstimateStatusEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QboEstimateStatusEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QueryResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QueryResponse.java index 6d5ce0a8..fe2acd62 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QueryResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/QueryResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -136,68 +121,68 @@ public void setWarnings(Warnings value) { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * * */ @@ -309,68 +294,68 @@ public void setTotalCount(Integer value) { * * @param intuitObject * allowed object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public void setIntuitObject(List> intuitObject) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReferenceType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReferenceType.java index 4957905e..21ad25ed 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReferenceType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReferenceType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RefundReceipt.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RefundReceipt.java index ff40331d..0e763a75 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RefundReceipt.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RefundReceipt.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimbursableTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimbursableTypeEnum.java index e35e984c..80c21479 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimbursableTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimbursableTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimburseCharge.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimburseCharge.java index a1451c89..9979e87a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimburseCharge.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReimburseCharge.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Report.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Report.java index 6b9ef926..75c476b9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Report.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Report.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportBasisEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportBasisEnum.java index 81557d69..e06bc5a5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportBasisEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportBasisEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportHeader.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportHeader.java index 8116f6b5..210d47c5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportHeader.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportHeader.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportPrefs.java index 02bec932..3468dc38 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ReportPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RoundingMethodEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RoundingMethodEnum.java index d1ba08ab..7ef9046f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RoundingMethodEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RoundingMethodEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Row.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Row.java index 7c44cc2a..c9b6497e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Row.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Row.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RowTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RowTypeEnum.java index 3d445d9f..f7322c0f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RowTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/RowTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Rows.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Rows.java index 35db0357..d3e4ca67 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Rows.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Rows.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesFormsPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesFormsPrefs.java index 51d8ae05..36d2aed1 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesFormsPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesFormsPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesItemLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesItemLineDetail.java index cd4dbb69..08e1b74f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesItemLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesItemLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrder.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrder.java index 4bda460a..ec261d5b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrder.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrder.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrderItemLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrderItemLineDetail.java index 4d17ccce..81776a22 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrderItemLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesOrderItemLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesReceipt.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesReceipt.java index b0a2ede7..e6d7fcc7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesReceipt.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesReceipt.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRep.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRep.java index 78c4a438..61aeaf7b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRep.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRep.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRepTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRepTypeEnum.java index 6612b642..79d05d26 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRepTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesRepTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTermTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTermTypeEnum.java index 62c4a3de..e6a43506 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTermTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTermTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTransaction.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTransaction.java index bde25ec9..83eb0984 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTransaction.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SalesTransaction.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -65,6 +50,7 @@ * <element name="CustomerMemo" type="{http://schema.intuit.com/finance/v3}MemoRef" minOccurs="0"/> * <element name="BillAddr" type="{http://schema.intuit.com/finance/v3}PhysicalAddress" minOccurs="0"/> * <element name="ShipAddr" type="{http://schema.intuit.com/finance/v3}PhysicalAddress" minOccurs="0"/> + * <element name="FreeFormAddress" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="RemitToRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * <element name="ClassRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * <element name="SalesTermRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> @@ -101,6 +87,7 @@ * <element name="DiscountRate" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="DiscountAmt" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="GovtTxnRefIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="TaxExemptionRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -116,6 +103,7 @@ "customerMemo", "billAddr", "shipAddr", + "freeFormAddress", "remitToRef", "classRef", "salesTermRef", @@ -149,7 +137,8 @@ "deliveryInfo", "discountRate", "discountAmt", - "govtTxnRefIdentifier" + "govtTxnRefIdentifier", + "taxExemptionRef" }) @XmlSeeAlso({ Invoice.class, @@ -175,6 +164,8 @@ public class SalesTransaction protected PhysicalAddress billAddr; @XmlElement(name = "ShipAddr") protected PhysicalAddress shipAddr; + @XmlElement(name = "FreeFormAddress") + protected Boolean freeFormAddress; @XmlElement(name = "RemitToRef") protected ReferenceType remitToRef; @XmlElement(name = "ClassRef") @@ -247,6 +238,8 @@ public class SalesTransaction protected BigDecimal discountAmt; @XmlElement(name = "GovtTxnRefIdentifier") protected String govtTxnRefIdentifier; + @XmlElement(name = "TaxExemptionRef") + protected ReferenceType taxExemptionRef; /** * Gets the value of the autoDocNumber property. @@ -368,6 +361,30 @@ public void setShipAddr(PhysicalAddress value) { this.shipAddr = value; } + /** + * Gets the value of the freeFormAddress property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFreeFormAddress() { + return freeFormAddress; + } + + /** + * Sets the value of the freeFormAddress property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFreeFormAddress(Boolean value) { + this.freeFormAddress = value; + } + /** * Gets the value of the remitToRef property. * @@ -1184,6 +1201,30 @@ public void setGovtTxnRefIdentifier(String value) { this.govtTxnRefIdentifier = value; } + /** + * Gets the value of the taxExemptionRef property. + * + * @return + * possible object is + * {@link ReferenceType } + * + */ + public ReferenceType getTaxExemptionRef() { + return taxExemptionRef; + } + + /** + * Sets the value of the taxExemptionRef property. + * + * @param value + * allowed object is + * {@link ReferenceType } + * + */ + public void setTaxExemptionRef(ReferenceType value) { + this.taxExemptionRef = value; + } + public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; @@ -1240,6 +1281,15 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + Boolean lhsFreeFormAddress; + lhsFreeFormAddress = this.isFreeFormAddress(); + Boolean rhsFreeFormAddress; + rhsFreeFormAddress = that.isFreeFormAddress(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "freeFormAddress", lhsFreeFormAddress), LocatorUtils.property(thatLocator, "freeFormAddress", rhsFreeFormAddress), lhsFreeFormAddress, rhsFreeFormAddress, (this.freeFormAddress!= null), (that.freeFormAddress!= null))) { + return false; + } + } { ReferenceType lhsRemitToRef; lhsRemitToRef = this.getRemitToRef(); @@ -1546,6 +1596,15 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + ReferenceType lhsTaxExemptionRef; + lhsTaxExemptionRef = this.getTaxExemptionRef(); + ReferenceType rhsTaxExemptionRef; + rhsTaxExemptionRef = that.getTaxExemptionRef(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "taxExemptionRef", lhsTaxExemptionRef), LocatorUtils.property(thatLocator, "taxExemptionRef", rhsTaxExemptionRef), lhsTaxExemptionRef, rhsTaxExemptionRef, (this.taxExemptionRef!= null), (that.taxExemptionRef!= null))) { + return false; + } + } return true; } @@ -1581,6 +1640,11 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { theShipAddr = this.getShipAddr(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "shipAddr", theShipAddr), currentHashCode, theShipAddr, (this.shipAddr!= null)); } + { + Boolean theFreeFormAddress; + theFreeFormAddress = this.isFreeFormAddress(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "freeFormAddress", theFreeFormAddress), currentHashCode, theFreeFormAddress, (this.freeFormAddress!= null)); + } { ReferenceType theRemitToRef; theRemitToRef = this.getRemitToRef(); @@ -1751,6 +1815,11 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { theGovtTxnRefIdentifier = this.getGovtTxnRefIdentifier(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "govtTxnRefIdentifier", theGovtTxnRefIdentifier), currentHashCode, theGovtTxnRefIdentifier, (this.govtTxnRefIdentifier!= null)); } + { + ReferenceType theTaxExemptionRef; + theTaxExemptionRef = this.getTaxExemptionRef(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "taxExemptionRef", theTaxExemptionRef), currentHashCode, theTaxExemptionRef, (this.taxExemptionRef!= null)); + } return currentHashCode; } diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ServiceTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ServiceTypeEnum.java index 0b56d1cc..ff734e5c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ServiceTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ServiceTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ShipMethod.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ShipMethod.java index 6732e5c9..0b53c8ce 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ShipMethod.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/ShipMethod.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialItemTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialItemTypeEnum.java index f596226f..a3b18ea9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialItemTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialItemTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialTaxTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialTaxTypeEnum.java index 3da5910b..ba5e3827 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialTaxTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SpecialTaxTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatementCharge.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatementCharge.java index deb9d5bd..e5d28860 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatementCharge.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatementCharge.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Status.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Status.java index 146bb6c7..81299c68 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Status.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Status.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatusInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatusInfo.java index 3ca60d16..d663572a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatusInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StatusInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StringTypeCustomFieldDefinition.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StringTypeCustomFieldDefinition.java index 91e6517f..456de4bf 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StringTypeCustomFieldDefinition.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/StringTypeCustomFieldDefinition.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SubTotalLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SubTotalLineDetail.java index 88aa0fbb..99d816c3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SubTotalLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SubTotalLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SummarizeColumnsByEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SummarizeColumnsByEnum.java index 01954b7c..4e1f8458 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SummarizeColumnsByEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SummarizeColumnsByEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Summary.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Summary.java index 6adccdf1..d5c3dcb8 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Summary.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Summary.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SymbolPositionEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SymbolPositionEnum.java index 930b0d28..e38dff8a 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SymbolPositionEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SymbolPositionEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncActivity.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncActivity.java index a779d436..8743d2ad 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncActivity.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncActivity.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncError.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncError.java index 0c02366c..126b2dc7 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncError.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncError.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorResponse.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorResponse.java index 5e30a0a5..d3c53f98 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorResponse.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorResponse.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorType.java index 88efc7d5..33cdebe5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncErrorType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncObject.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncObject.java index 1ba6462e..03bd49f3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncObject.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncObject.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -86,68 +71,68 @@ public class SyncObject implements Serializable, Equals2, HashCode2 * * @return * possible object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public JAXBElement getIntuitObject() { @@ -159,68 +144,68 @@ public JAXBElement getIntuitObject() { * * @param value * allowed object is - * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} - * {@link JAXBElement }{@code <}{@link TaxService }{@code >} - * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} - * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} - * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} - * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} - * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} - * {@link JAXBElement }{@code <}{@link Status }{@code >} - * {@link JAXBElement }{@code <}{@link Attachable }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} - * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link Budget }{@code >} - * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} - * {@link JAXBElement }{@code <}{@link Term }{@code >} - * {@link JAXBElement }{@code <}{@link Class }{@code >} - * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} - * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} - * {@link JAXBElement }{@code <}{@link Preferences }{@code >} - * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} - * {@link JAXBElement }{@code <}{@link Customer }{@code >} - * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} * {@link JAXBElement }{@code <}{@link Payment }{@code >} + * {@link JAXBElement }{@code <}{@link NumberTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link MasterAccount }{@code >} - * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} - * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Status }{@code >} * {@link JAXBElement }{@code <}{@link ExchangeRate }{@code >} - * {@link JAXBElement }{@code <}{@link Bill }{@code >} - * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} - * {@link JAXBElement }{@code <}{@link Transfer }{@code >} * {@link JAXBElement }{@code <}{@link Company }{@code >} - * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link ReimburseCharge }{@code >} + * {@link JAXBElement }{@code <}{@link DateTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} * {@link JAXBElement }{@code <}{@link Deposit }{@code >} - * {@link JAXBElement }{@code <}{@link Invoice }{@code >} - * {@link JAXBElement }{@code <}{@link Employee }{@code >} - * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link EmailDeliveryInfo }{@code >} + * {@link JAXBElement }{@code <}{@link Preferences }{@code >} + * {@link JAXBElement }{@code <}{@link CreditMemo }{@code >} * {@link JAXBElement }{@code <}{@link SyncActivity }{@code >} - * {@link JAXBElement }{@code <}{@link Estimate }{@code >} - * {@link JAXBElement }{@code <}{@link ChargeCredit }{@code >} * {@link JAXBElement }{@code <}{@link SalesRep }{@code >} - * {@link JAXBElement }{@code <}{@link VendorType }{@code >} - * {@link JAXBElement }{@code <}{@link SalesOrder }{@code >} - * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} - * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} - * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} - * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Budget }{@code >} * {@link JAXBElement }{@code <}{@link Department }{@code >} - * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link TaxReturn }{@code >} + * {@link JAXBElement }{@code <}{@link TaxAgency }{@code >} + * {@link JAXBElement }{@code <}{@link RefundReceipt }{@code >} + * {@link JAXBElement }{@code <}{@link JournalCode }{@code >} + * {@link JAXBElement }{@code <}{@link Vendor }{@code >} + * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} + * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} * {@link JAXBElement }{@code <}{@link IntuitEntity }{@code >} - * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} * {@link JAXBElement }{@code <}{@link JournalEntry }{@code >} - * {@link JAXBElement }{@code <}{@link Item }{@code >} - * {@link JAXBElement }{@code <}{@link Account }{@code >} - * {@link JAXBElement }{@code <}{@link TaxCode }{@code >} - * {@link JAXBElement }{@code <}{@link PriceLevel }{@code >} - * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} - * {@link JAXBElement }{@code <}{@link InventorySite }{@code >} + * {@link JAXBElement }{@code <}{@link CustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link StatementCharge }{@code >} + * {@link JAXBElement }{@code <}{@link SalesReceipt }{@code >} * {@link JAXBElement }{@code <}{@link OtherName }{@code >} + * {@link JAXBElement }{@code <}{@link VendorType }{@code >} + * {@link JAXBElement }{@code <}{@link Attachable }{@code >} * {@link JAXBElement }{@code <}{@link CustomerType }{@code >} - * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link TimeActivity }{@code >} + * {@link JAXBElement }{@code <}{@link Estimate }{@code >} + * {@link JAXBElement }{@code <}{@link UserAlert }{@code >} + * {@link JAXBElement }{@code <}{@link Employee }{@code >} + * {@link JAXBElement }{@code <}{@link BooleanTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link BillPayment }{@code >} + * {@link JAXBElement }{@code <}{@link QbdtEntityIdMapping }{@code >} + * {@link JAXBElement }{@code <}{@link TDSMetadata }{@code >} + * {@link JAXBElement }{@code <}{@link Customer }{@code >} * {@link JAXBElement }{@code <}{@link PaymentMethod }{@code >} - * {@link JAXBElement }{@code <}{@link StringTypeCustomFieldDefinition }{@code >} + * {@link JAXBElement }{@code <}{@link Item }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyInfo }{@code >} + * {@link JAXBElement }{@code <}{@link CompanyCurrency }{@code >} + * {@link JAXBElement }{@code <}{@link TaxService }{@code >} + * {@link JAXBElement }{@code <}{@link Bill }{@code >} + * {@link JAXBElement }{@code <}{@link Task }{@code >} + * {@link JAXBElement }{@code <}{@link Class }{@code >} + * {@link JAXBElement }{@code <}{@link Account }{@code >} + * {@link JAXBElement }{@code <}{@link FixedAsset }{@code >} + * {@link JAXBElement }{@code <}{@link Invoice }{@code >} * {@link JAXBElement }{@code <}{@link TaxRate }{@code >} + * {@link JAXBElement }{@code <}{@link VendorCredit }{@code >} + * {@link JAXBElement }{@code <}{@link Purchase }{@code >} + * {@link JAXBElement }{@code <}{@link Transfer }{@code >} + * {@link JAXBElement }{@code <}{@link PurchaseOrder }{@code >} + * {@link JAXBElement }{@code <}{@link Term }{@code >} * */ public void setIntuitObject(JAXBElement value) { diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncType.java index 8570666a..1aa9009d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/SyncType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSLineDetail.java index 3504681e..25130309 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSMetadata.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSMetadata.java index 81dcb542..8c8879c4 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSMetadata.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TDSMetadata.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Task.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Task.java index fe26c6b6..311b8578 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Task.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Task.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxAgency.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxAgency.java index e4da2472..4a933d04 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxAgency.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxAgency.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxApplicableOnEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxApplicableOnEnum.java index 274533b5..8db09c27 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxApplicableOnEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxApplicableOnEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxCode.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxCode.java index da212192..88d696d3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxCode.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxCode.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -64,6 +49,7 @@ * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> + * <element name="Hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="Taxable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="TaxGroup" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="SalesTaxRateList" type="{http://schema.intuit.com/finance/v3}TaxRateList" minOccurs="0"/> @@ -83,6 +69,7 @@ "name", "description", "active", + "hidden", "taxable", "taxGroup", "salesTaxRateList", @@ -102,6 +89,8 @@ public class TaxCode protected String description; @XmlElement(name = "Active") protected Boolean active; + @XmlElement(name = "Hidden") + protected Boolean hidden; @XmlElement(name = "Taxable") protected Boolean taxable; @XmlElement(name = "TaxGroup") @@ -187,6 +176,30 @@ public void setActive(Boolean value) { this.active = value; } + /** + * Gets the value of the hidden property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isHidden() { + return hidden; + } + + /** + * Sets the value of the hidden property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setHidden(Boolean value) { + this.hidden = value; + } + /** * Gets the value of the taxable property. * @@ -369,6 +382,15 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + Boolean lhsHidden; + lhsHidden = this.isHidden(); + Boolean rhsHidden; + rhsHidden = that.isHidden(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "hidden", lhsHidden), LocatorUtils.property(thatLocator, "hidden", rhsHidden), lhsHidden, rhsHidden, (this.hidden!= null), (that.hidden!= null))) { + return false; + } + } { Boolean lhsTaxable; lhsTaxable = this.isTaxable(); @@ -448,6 +470,11 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { theActive = this.isActive(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "active", theActive), currentHashCode, theActive, (this.active!= null)); } + { + Boolean theHidden; + theHidden = this.isHidden(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "hidden", theHidden), currentHashCode, theHidden, (this.hidden!= null)); + } { Boolean theTaxable; theTaxable = this.isTaxable(); diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxFormTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxFormTypeEnum.java index 44a9d50c..11246c95 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxFormTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxFormTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxLineDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxLineDetail.java index 1ad3683a..0048e070 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxLineDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxLineDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxPrefs.java index 415ba90a..8a0b06e0 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -50,6 +35,7 @@ * <sequence> * <element name="UsingSalesTax" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="PartnerTaxEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> + * <element name="HideTaxManagement" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <choice> * <element name="TaxGroupCodeRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> * <element name="TaxRateRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> @@ -69,6 +55,7 @@ @XmlType(name = "TaxPrefs", propOrder = { "usingSalesTax", "partnerTaxEnabled", + "hideTaxManagement", "taxGroupCodeRef", "taxRateRef", "paySalesTax", @@ -83,6 +70,8 @@ public class TaxPrefs implements Serializable, Equals2, HashCode2 protected Boolean usingSalesTax; @XmlElement(name = "PartnerTaxEnabled") protected Boolean partnerTaxEnabled; + @XmlElement(name = "HideTaxManagement") + protected Boolean hideTaxManagement; @XmlElement(name = "TaxGroupCodeRef") protected ReferenceType taxGroupCodeRef; @XmlElement(name = "TaxRateRef") @@ -142,6 +131,30 @@ public void setPartnerTaxEnabled(Boolean value) { this.partnerTaxEnabled = value; } + /** + * Gets the value of the hideTaxManagement property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isHideTaxManagement() { + return hideTaxManagement; + } + + /** + * Sets the value of the hideTaxManagement property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setHideTaxManagement(Boolean value) { + this.hideTaxManagement = value; + } + /** * Gets the value of the taxGroupCodeRef property. * @@ -288,6 +301,15 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + Boolean lhsHideTaxManagement; + lhsHideTaxManagement = this.isHideTaxManagement(); + Boolean rhsHideTaxManagement; + rhsHideTaxManagement = that.isHideTaxManagement(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "hideTaxManagement", lhsHideTaxManagement), LocatorUtils.property(thatLocator, "hideTaxManagement", rhsHideTaxManagement), lhsHideTaxManagement, rhsHideTaxManagement, (this.hideTaxManagement!= null), (that.hideTaxManagement!= null))) { + return false; + } + } { ReferenceType lhsTaxGroupCodeRef; lhsTaxGroupCodeRef = this.getTaxGroupCodeRef(); @@ -353,6 +375,11 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { thePartnerTaxEnabled = this.isPartnerTaxEnabled(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "partnerTaxEnabled", thePartnerTaxEnabled), currentHashCode, thePartnerTaxEnabled, (this.partnerTaxEnabled!= null)); } + { + Boolean theHideTaxManagement; + theHideTaxManagement = this.isHideTaxManagement(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "hideTaxManagement", theHideTaxManagement), currentHashCode, theHideTaxManagement, (this.hideTaxManagement!= null)); + } { ReferenceType theTaxGroupCodeRef; theTaxGroupCodeRef = this.getTaxGroupCodeRef(); diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRate.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRate.java index ccd9ae68..8cf0a6a0 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRate.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRate.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateApplicableOnEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateApplicableOnEnum.java index 14170888..545f9f07 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateApplicableOnEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateApplicableOnEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetail.java index 706ffb79..b784d352 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetails.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetails.java index 07399e28..dba35e79 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetails.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDetails.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDisplayTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDisplayTypeEnum.java index a741bd20..b6b9aa2b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDisplayTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateDisplayTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateList.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateList.java index 724602c8..bf378b2b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateList.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxRateList.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReportBasisTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReportBasisTypeEnum.java index a394224e..07f256fe 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReportBasisTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReportBasisTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturn.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturn.java index 969ee2f6..4ed92ae3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturn.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturn.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @@ -67,6 +52,8 @@ * <element name="FlatRateSavingsAmountDue" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="PayGWithheldAmount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="AgencyRef" type="{http://schema.intuit.com/finance/v3}ReferenceType" minOccurs="0"/> + * <element name="TaxReturnStatus" type="{http://schema.intuit.com/finance/v3}TaxReturnStatusEnum" minOccurs="0"/> + * <element name="TaxReturnCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -84,7 +71,9 @@ "netTaxAmountDue", "flatRateSavingsAmountDue", "payGWithheldAmount", - "agencyRef" + "agencyRef", + "taxReturnStatus", + "taxReturnCode" }) public class TaxReturn extends IntuitEntity @@ -114,6 +103,10 @@ public class TaxReturn protected BigDecimal payGWithheldAmount; @XmlElement(name = "AgencyRef") protected ReferenceType agencyRef; + @XmlElement(name = "TaxReturnStatus") + protected TaxReturnStatusEnum taxReturnStatus; + @XmlElement(name = "TaxReturnCode") + protected String taxReturnCode; /** * Gets the value of the upcomingFiling property. @@ -307,6 +300,54 @@ public void setAgencyRef(ReferenceType value) { this.agencyRef = value; } + /** + * Gets the value of the taxReturnStatus property. + * + * @return + * possible object is + * {@link TaxReturnStatusEnum } + * + */ + public TaxReturnStatusEnum getTaxReturnStatus() { + return taxReturnStatus; + } + + /** + * Sets the value of the taxReturnStatus property. + * + * @param value + * allowed object is + * {@link TaxReturnStatusEnum } + * + */ + public void setTaxReturnStatus(TaxReturnStatusEnum value) { + this.taxReturnStatus = value; + } + + /** + * Gets the value of the taxReturnCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTaxReturnCode() { + return taxReturnCode; + } + + /** + * Sets the value of the taxReturnCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTaxReturnCode(String value) { + this.taxReturnCode = value; + } + public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; @@ -390,6 +431,24 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje return false; } } + { + TaxReturnStatusEnum lhsTaxReturnStatus; + lhsTaxReturnStatus = this.getTaxReturnStatus(); + TaxReturnStatusEnum rhsTaxReturnStatus; + rhsTaxReturnStatus = that.getTaxReturnStatus(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "taxReturnStatus", lhsTaxReturnStatus), LocatorUtils.property(thatLocator, "taxReturnStatus", rhsTaxReturnStatus), lhsTaxReturnStatus, rhsTaxReturnStatus, (this.taxReturnStatus!= null), (that.taxReturnStatus!= null))) { + return false; + } + } + { + String lhsTaxReturnCode; + lhsTaxReturnCode = this.getTaxReturnCode(); + String rhsTaxReturnCode; + rhsTaxReturnCode = that.getTaxReturnCode(); + if (!strategy.equals(LocatorUtils.property(thisLocator, "taxReturnCode", lhsTaxReturnCode), LocatorUtils.property(thatLocator, "taxReturnCode", rhsTaxReturnCode), lhsTaxReturnCode, rhsTaxReturnCode, (this.taxReturnCode!= null), (that.taxReturnCode!= null))) { + return false; + } + } return true; } @@ -440,6 +499,16 @@ public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { theAgencyRef = this.getAgencyRef(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "agencyRef", theAgencyRef), currentHashCode, theAgencyRef, (this.agencyRef!= null)); } + { + TaxReturnStatusEnum theTaxReturnStatus; + theTaxReturnStatus = this.getTaxReturnStatus(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "taxReturnStatus", theTaxReturnStatus), currentHashCode, theTaxReturnStatus, (this.taxReturnStatus!= null)); + } + { + String theTaxReturnCode; + theTaxReturnCode = this.getTaxReturnCode(); + currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "taxReturnCode", theTaxReturnCode), currentHashCode, theTaxReturnCode, (this.taxReturnCode!= null)); + } return currentHashCode; } diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturnStatusEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturnStatusEnum.java new file mode 100644 index 00000000..7befa70b --- /dev/null +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxReturnStatusEnum.java @@ -0,0 +1,51 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2018.03.01 at 02:14:53 PM PST +// + + +package com.intuit.ipp.data; + +import javax.xml.bind.annotation.XmlEnum; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for TaxReturnStatusEnum. + * + *

The following schema fragment specifies the expected content contained within this class. + *

+ *

+ * <simpleType name="TaxReturnStatusEnum">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="FILED"/>
+ *     <enumeration value="FILING_FAILED"/>
+ *     <enumeration value="FILING_FAILED_WRONG_AGENCY_CREDENTIALS"/>
+ *     <enumeration value="AGENCY_PAYMENT_INITIATED"/>
+ *     <enumeration value="AGENCY_PAYMENT_COMPLETED"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "TaxReturnStatusEnum") +@XmlEnum +public enum TaxReturnStatusEnum { + + FILED, + FILING_FAILED, + FILING_FAILED_WRONG_AGENCY_CREDENTIALS, + AGENCY_PAYMENT_INITIATED, + AGENCY_PAYMENT_COMPLETED; + + public String value() { + return name(); + } + + public static TaxReturnStatusEnum fromValue(String v) { + return valueOf(v); + } + +} diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxService.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxService.java index 17cc6fb6..a13c7d88 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxService.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxService.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxTypeApplicablityEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxTypeApplicablityEnum.java index c20beef2..30b5f58f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxTypeApplicablityEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TaxTypeApplicablityEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneDeviceTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneDeviceTypeEnum.java index e9f0a607..01f50718 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneDeviceTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneDeviceTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumber.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumber.java index 35d59bfa..bc81a2ab 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumber.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumber.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumberTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumberTypeEnum.java index 4836036f..b07de445 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumberTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TelephoneNumberTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateName.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateName.java index eb6ad44d..d0dff029 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateName.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateName.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateTypeEnum.java index 2c7240ae..dfa4baa2 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TemplateTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Term.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Term.java index 29b90add..ddd9c4d3 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Term.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Term.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivity.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivity.java index c26e2f08..c638a0d5 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivity.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivity.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivityTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivityTypeEnum.java index e26e0658..0d913ef8 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivityTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeActivityTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeEntryUsedForPaychecksEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeEntryUsedForPaychecksEnum.java index 19b7106f..7deacf08 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeEntryUsedForPaychecksEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeEntryUsedForPaychecksEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeTrackingPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeTrackingPrefs.java index 1edf3bfc..86ef67b9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeTrackingPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TimeTrackingPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transaction.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transaction.java index 0a79970d..3ecef98d 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transaction.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transaction.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionDeliveryInfo.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionDeliveryInfo.java index a514bdeb..e08c0603 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionDeliveryInfo.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionDeliveryInfo.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionLocationTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionLocationTypeEnum.java index f5b4a77b..f1ef5089 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionLocationTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TransactionLocationTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transfer.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transfer.java index 7c1823ab..c6d81866 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transfer.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Transfer.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnSourceEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnSourceEnum.java index 628a56ae..88ed998b 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnSourceEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnSourceEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTaxDetail.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTaxDetail.java index b9170224..0c59ae34 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTaxDetail.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTaxDetail.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTypeEnum.java index a51eaf49..57f2937f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/TxnTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOM.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOM.java index ef8e9933..621e76cd 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOM.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOM.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMBaseTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMBaseTypeEnum.java index 6c051b1d..bc560b90 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMBaseTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMBaseTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMConvUnit.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMConvUnit.java index a19911fc..e6a286d0 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMConvUnit.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMConvUnit.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMFeatureTypeEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMFeatureTypeEnum.java index 562ac392..322602d9 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMFeatureTypeEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMFeatureTypeEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMRef.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMRef.java index ee38ca26..9eba8a54 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMRef.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UOMRef.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/User.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/User.java index 991d11a7..964f0168 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/User.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/User.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UserAlert.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UserAlert.java index 28d255f1..db30d75c 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UserAlert.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/UserAlert.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Vendor.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Vendor.java index fad3bdbc..d299e323 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Vendor.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Vendor.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorAndPurchasesPrefs.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorAndPurchasesPrefs.java index 66c3e416..ab8a0326 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorAndPurchasesPrefs.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorAndPurchasesPrefs.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorCredit.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorCredit.java index 24af1dfc..31ac145f 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorCredit.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorCredit.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorType.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorType.java index e9bd8e7b..0319de76 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorType.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/VendorType.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warning.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warning.java index b0f58819..e3542f23 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warning.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warning.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warnings.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warnings.java index 9eb9ac07..5a0096aa 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warnings.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Warnings.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WebSiteAddress.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WebSiteAddress.java index fc863c04..b983e2fc 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WebSiteAddress.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WebSiteAddress.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WeekEnum.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WeekEnum.java index a1827ff5..30e9d14e 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WeekEnum.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/WeekEnum.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // diff --git a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/package-info.java b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/package-info.java index d0fe2b24..77e1e966 100644 --- a/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/package-info.java +++ b/ipp-v3-java-data/src/main/java/com/intuit/ipp/data/package-info.java @@ -1,23 +1,8 @@ -/******************************************************************************* - * Copyright (c) 2017 Intuit - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2017.07.10 at 10:56:50 AM PDT +// Generated on: 2018.03.01 at 02:14:53 PM PST // @javax.xml.bind.annotation.XmlSchema(namespace = "http://schema.intuit.com/finance/v3", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/ipp-v3-java-data/src/main/xsd/Finance.xjb b/ipp-v3-java-data/src/main/xsd/Finance.xjb old mode 100644 new mode 100755 diff --git a/ipp-v3-java-data/src/main/xsd/Finance.xsd b/ipp-v3-java-data/src/main/xsd/Finance.xsd old mode 100644 new mode 100755 index b6c8049f..6917e5bb --- a/ipp-v3-java-data/src/main/xsd/Finance.xsd +++ b/ipp-v3-java-data/src/main/xsd/Finance.xsd @@ -1583,6 +1583,1007 @@ + + + + Product: QBO + Description: Use Withholding Tax Suspense to track the withheld amount owed to HMRC by the company. + + + + + + + Product: QBO + Description: Use Development costs to track amounts you deposit or set aside to arrange for financing, such as an SBA loan, or for deposits in anticipation of the purchase of property or other assets. When the deposit is refunded, or the purchase takes place, remove the amount from this account. + + + + + + + Product: QBO + Description: Use Provisions current assets to track current assets that have not yet been realized. + + + + + + + Product: QBO + Description: Use Other consumables for goods that become incorporated into other goods and lose their identity. + + + + + + + Product: QBO + Description: Use Expenditure authorisations and letters of credit to track allowances to make purchases, without an explicit loan. + + + + + + + Product: QBO + Description: Use Internal transfers to track transfers of amounts from one department to another within the same company. + + + + + + + Product: QBO + Description: Use Provisions fixed assets to track fixed assets that have not yet been realized. + + + + + + + Product: QBO + Description: Use Assets in course of construction to track fixed assets that are used in construction. + + + + + + + Product: QBO + Description: Use Participating interests and related amounts owed to track the interest held by an undertaking in shares of another undertaking. This account should be used for interest held on a long-term basis, in order to ensure a certain level of control or influence on the other undertaking. + + + + + + + Product: QBO + Description: Use Cumulative depreciation on intangible assets to track how much you depreciate an intangible asset, such as a franchise, customer list, copyright, or patent. + + + + + + + Product: QBO + Description: Use Provisions non-current assets to track non-current assets that have not yet been realized. + + + + + + + Product: QBO + Description: Account to hold principal amount and the interest due remaining unpaid to any business vendors that are MSME (Micro, Small and Medium Enterprise) + + + + + + + Product: QBO + Description: This account to hold principal amount and the interest due remaining unpaid to any business vendors that are not an MSME (Micro, Small and Medium Enterprise) + + + + + + + Product: QBO + Description: Service Tax Refund + + + + + + + Product: QBO + Description: Deferred Service Tax Input Credit + + + + + + + Product: QBO + Description: Use Provisions current liabilities to track current liabilities that have not yet been relized. + + + + + + + Product: QBO + Description: Use Staff and related accounts to track amounts owed to employees (or on their behalf) that are due within a year. + + + + + + + Product: QBO + Description: Use Social security and other social agencies to track amounts owed to government and social agencies that are due within a year. + + + + + + + Product: QBO + Description: Use Sundry debtors and creditors to track miscellaneous amounts owed by customers and to suppliers that are not assigned their own account, and that are due within a year. + + + + + + + Product: QBO + Description: Use Provisions non-current liabilities to track non-current liabilities that have not yet been realized. + + + + + + + + Product: QBO + Description: Use Debts related to participating interests to track amounts owed to employees (or on their behalf) that are not due within a year. + + + + + + + Product: QBO + Description: Use Staff and related accounts to track track miscellaneous amounts owed by customers and to suppliers that are not assigned their own account, and that are not due within a year. + + + + + + + Product: QBO + Description: Use Government and other public authorities to track amounts owed to government and social agencies that are not due within a year. + + + + + + + Product: QBO + Description: Use Group and associates to track amounts owed to subsidiaries of the company. + + + + + + + Product: QBO + Description: Use Investment grants to track capital transfers in cash or in kind made by governments or by the rest of the world for investment purposes. + + + + + + + Product: QBO + Description: Unapplied Cash Payment $$Income$$ reports the Cash Basis $$income$$ from $$customers$$ payments you've received but not applied to invoices or charges. In general, you'd never use this directly on a purchase or sale transaction. + + + + + + + Product: QBO + Description: Use Own work capitalized to track the value of work performed for one's own purposes and capitalized as part of fixed assets. + + + + + + + Product: QBO + Description: Use Operating grants to track capital transfers in cash or in kind made by governments or by the rest of the world for regular operating purposes. + + + + + + + Product: QBO + Description: Use Other current operating $$income$$ to track $$income$$ arising from operations of the company that do not fit under any other category and that are not tracked in individual accounts. + + + + + + + Product: QBO + Description: Use Cost of goods sold to track costs related to sales you provide + + + + + + + Product: QBO + Description: Unapplied Cash Bill Payment $$Expense$$ reports the Cash Basis $$expense$$ from vendor payment cheques you've sent but not yet applied to vendor bills. In general, you would never use this directly on a purchase or sale transaction. + + + + + + + Product: QBO + Description: Use External services to track $$expenses$$ paid for services provided by other companies that you are tracking in Supplier-specific accounts. If you need to track $$expenses$$ paid to other companies that do not have their own accounts, use Other external services instead. + + + + + + + Product: QBO + Description: Use Other external services to track $$expenses$$ paid for services provided by other companies that you are not tracking in Supplier-specific accounts. If you need to track $$expenses$$ paid to other companies that do have their own accounts, use External services instead. + + + + + + + Product: QBO + Description: Use Purchases rebates on external services to track purchase rebates on $$expenses$$ paid for services provided by other companies. + + + + + + + Product: QBO + Use Other rental costs to track rental $$expenses$$ that do not fall under any other rental account. + + + + + + + Product: QBO + Description: Use Project studies, surveys, assessments to track $$expenses$$ relating to studies, surveys, and assessments. + + + + + + + Product: QBO + Description: Use Sundry debtors and creditors to track miscellaneous amounts owed by customers and to suppliers that are not assigned their own account, and that are due within a year. + + + + + + + Product: QBO + Description: Use Staff costs to track costs that can be associated with employees, such as benefits or parties. + + + + + + + Product: QBO + Description: Use Other current operating charges to track operating $$expenses$$ that do not fall under any other category. + + + + + + + Product: QBO + Description: Use Extraordinary charges to track $$expenses$$ that are unusual, unexpected, and a one-time event. + + + + + + + Product: QBO + Description: Use Appropriations to depreciation and provisions to track reservations on amounts on depreciation and provisions. + + + + + + + Product: QBO + Description: Use Accruals and deferred $$income$$ at the accounting year end to track $$expenses$$ for invoices which have not been received by the end of the accounting period. + + + + + + + Product: QBO + Description: Use Current tax liability to track the total amount of taxes collected but not yet paid to the government. + + + + + + + Product: QBO + Description: Use Deferred tax for tax liabilities or assets that are to be used in future accounting periods. + + + + + + + Product: QBO + Description: Use Distribution costs to track the cost of shipping goods to $$customers$$ or distributors. + + + + + + + Product: QBO + Description: Use Investments to track the amounts received from individuals or other organizations + + + + + + + Product: QBO + Description: Use term borrowings to track the amount due on long term borrowing + + + + + + + Product: QBO + Description: Use Other intangible assets to track non-monetary assets that cannot be seen, touched or physically measured that don't fall into the other intangible asset types. + + + + + + + Product: QBO + Description: Use Prepayments and accrued $$income$$ to track payments and $$income$$ paid in advance to cover costs that will be charged in future years. + + + + + + + Product: QBO + Description: Use Short term borrowings to track loans that need to be paid back within 12 months. + + + + + + + Product: QBO + Description: Use Provision for liabilities to track the funds set aside in anticipation of future expenditures. + + + + + + + Product: QBO + Description: Use Called up share capital to track share capital which has been issued. + + + + + + + Product: QBO + Description: Use Called up share capital not paid to track share capital which has been issued but not yet paid. + + + + + + + Product: QBO + Description: Use Land for land or property you don't depreciate.If land and building were acquired together, split the cost between the two in a logical way. One common method is to use the land-to-building ratio on the property tax statement.For land you use as a natural resource, use a Depletable assets account, instead. + + + + + + + Product: QBO + Description: Use Available-for-sale financial assets to track financial assets held for sale. + + + + + + + Product: QBO + Description: Use Provision for warranty obligations to track expected $$expense$$ of statutory and contractual warranty claims. + + + + + + + Product: QBO + Description: Use Current portion of employee benefits obligations to track the current amount due of employee benefits + + + + + + + Product: QBO + Description: Use Long term employee benefit obligations to track the amount due on employee benefits longer than one year. + + + + + + + Product: QBO + Description: Use Obligations under finance leases to track additional obligations from the terms of the lease. An example would be a balloon payment made at the end of the lease agreement. + + + + + + + Product: QBO + Description: Use Bank loans to track the amount due on bank loans. + + + + + + + Product: QBO + Description: Use Interest payables to track interest due on loans. + + + + + + + Product: QBO + Description: Use Gain/loss on sale of investments to track the increase/decrease in value on the sale of investments. + + + + + + + Product: QBO + Description: Use Gain/loss on sale of fixed assets (property,plant, or equipment) to track the increase/decrease in value on the sale of a fixed asset + + + + + + + Product: QBO + Description: Use Share capital to track the funds raised by issuing shares. + + + + + + + Product: QBO + Description: Use Current portion of obligations under finance leases to track the value of lease payments due within the next 12 months. + + + + + + + Product: QBO + Description: Use Assets held for sale to track assets of a company that are available for sale that are not expected to be held for a long period of time. + + + + + + + Product: QBO + Description: Use Accrued Liabilities to track $$expenses$$ that a business has incurred but has not yet paid. For example, pensions for companies that contribute to a pension fund for their employees for their retirement. + + + + + + + Product: QBO + Description: Use Accrued Non-current liabilities to track $$expenses$$ that a business has incurred but has not yet paid. For example, pensions for companies that contribute to a pension fund for their employees for their retirement. + + + + + + + Product: QBO + Description: Use Accrued vacation payable to track vacation earned but that has not been paid out to employees. + + + + + + + Product: QBO + Description: Use Cash and Cash Equivalents to track cash or assets that can be converted into cash immediately. For example, marketable securities and Treasury bills. + + + + + + + Product: QBO + Description: Use Commissions and fees to track amounts paid to agents (such as brokers) in order for them to execute a trade. + + + + + + + Product: QBO + Description: Use Amortization $$expense$$ to track writing off of assets (such as intangible assets or investments) over the projected life of the assets. + + + + + + + Product: QBO + Description: Use Loss on discontinued operations, net of tax to track the loss realized when a part of the business ceases to operate or when a product line is discontinued. + + + + + + + Product: QBO + Description: Use Management compensation to track remuneration paid to Management, Executives and non-Executives. For example, salary, fees, and benefits. + + + + + + + Product: QBO + Description: Use Other selling $$expenses$$ to track selling $$expenses$$ incurred that do not fall under any other category. + + + + + + + Product: QBO + Description: Use Liabilities related to assets held for sale to track any liabilities that are directly related to assets being sold or written off. + + + + + + + Product: QBO + Description: Use Long-term debt to track loans and obligations with a maturity of longer than one year. For example, mortgages. + + + + + + + Product: QBO + Description: Use Equity in earnings of subsidiaries to track the original investment in shares of subsidiaries plus the share of earnings or losses from the operations of the subsidiary. + + + + + + + Product: QBO + Description: Use Other operating $$income$$ to track $$income$$ from activities other than normal business operations. For example, Investment interest, foreign exchange gains, and rent $$income$$. + + + + + + + Product: QBO + Description: Use Revenue - General to track $$income$$ from normal business operations that do not fit under any other category. + + + + + + + Product: QBO + Description: Use Dividend disbursed to track a payment given to its shareholders out of the company's retained earnings. + + + + + + + Product: QBO + Description: Use Freight and delivery - COS to track the cost of shipping/delivery of obtaining raw materials and producing finished goods for resale. + + + + + + + Product: QBO + Description: Use Shipping and delivery $$expense$$ to track the cost of shipping and delivery of goods to customers. + + + + + + + Product: QBO + Description: Use Travel $$expenses$$ - general and admin $$expenses$$ to track travelling costs incurred that are not directly related to the revenue-generating operation of the company. For example, flight tickets and hotel costs when performing job interviews. + + + + + + + Product: QBO + Description: Use Travel $$expenses$$ - selling $$expense$$ to track travelling costs incurred that are directly related to the revenue-generating operation of the company. For example, flight tickets and hotel costs when selling products and services. + + + + + + + Product: QBO + Description: Use Unrealised loss on securities, net of tax to track losses on securities that have occurred but are yet been realized through a transaction. For example, shares whose value has fallen but that are still being held. + + + + + + + Product: QBO + Description: Use Sales - retail to track sales of goods/services that have a mark-up cost to consumers. + + + + + + + Product: QBO + Description: Use Sales - wholesale to track the sale of goods in quantity for resale purposes. + + + + + + + Product: QBO + Description: Use Other comprehensive $$income$$ to track the increases or decreases in $$income$$ from various businesses that is not yet absorbed by the company. + + + + + + + Product: QBO + Description: Use Assets available for sale to track assets that are available for sale that are not expected to be held for a long period of time. + + + + + + + Product: QBO + Description: Use Loss on disposal of assets to track losses realized on the disposal of assets. + + + + + + + Product: QBO + Description: Use Land to track assets that are not easily convertible to cash or not expected to become cash within the next year. For example, leasehold improvements. + + + + + + + Product: QBO + Description: Use $$Income$$ tax $$expense$$ to track $$income$$ taxes that the company has paid to meet their tax obligations. + + + + + + + Product: QBO + Description: Use Long-term investments to track investments that have a maturity date of longer than one year. + + + + + + + Product: QBO + Description: Use Dividends payable to track dividends that are owed to shareholders but have not yet been paid. + + + + + + + Product: QBO + Description: Use Accounts Receivable (A/R) to track monies to the company by their customers. This is also known as Debtors or Trade and other receivables. + + + + + + + Product: QBO + Description: Use Accounts Payable (A/P) to track monies owed by the company to their suppliers. This is also known as Creditors or Trade and other payables. + + + + + + + Product: QBO + Description: Use Other current liabilities to track monies owed by the company and due within one year. + + + + + + + Product: QBO + Description: The Savings by FRS Income account is used to track the savings incurred by using the FRS scheme at the time of filing. + + + + + + + Product: QBO + Description: Use Borrowing Costs to track the cost to procure funds. This includes supplementary costs that relate to borrowings. + + + + + + + Product: QBO + Description: Use Depletion to track the reduction in value of an asset used in the extraction of natural resources like quarries, mines, and so on, where the quantity of the material of asset reduces with extraction. + + + + + + + Product: QBO + Description: Use Exceptional Items to record income/expenditure items that are connected to the business activities, but are of exceptional nature and are observed to have a substantial impact on the performance and net results of the company. + + + + + + + Product: QBO + Description: Use Prior Period Items to record income/expenditure items from prior accounting periods that were omitted or erroneously recorded in the prior period. + + + + + + + Product: QBO + Description: Use Extraordinary Items to record income/expenditure items from non-recurring transactions that are not connected to the routine course of business activities. + + + + + + + Product: QBO + Description: Use MAT Credit to record the amount of Minimum Alternate Tax (MAT) credit used to pay the taxes on the current year's income. + + + + + + + Product: QBO + Description: Use Other Free Reserves to track reserves not covered by other free reserve types. Free Reserves are reserves created from profits. You can use them to declare dividends, but not to repay any future liability. + + + + + + + Product: QBO + Description: Use Capital Reserves to track the reserves created when the company accumulated capital profits, not including any profits from revenue. + + + + + + + Product: QBO + Description: Use Funds to track any portion of a reserve that is earmarked for a specific investment outside the business, such as a Sinking Fund. + + + + + + + Product: QBO + Description: Use Money Received Against Share Warrants to track money received when share warrants were issued. A share warrant is a document that entitles its holder to buy shares at a certain price in the future. + + + + + + + Product: QBO + Description: Use Share Application Money Pending Allotment to track the application amounts the company receives for shares that still need to be allotted to the investors. + + + + + + + Product: QBO + Description: Use Deferred Tax Liabilities to record future tax liability from timing differences between book profits from the Companies Act and taxable profits from the Income Tax Act. + + + + + + + Product: QBO + Description: Use Other Long Term Provisions to track the provisions for more than twelve months that do not classify under other account types. + + + + + + + Product: QBO + Description: Use Capital Work-in-Progress to track the amount spent to create an asset that is not yet complete as of the date of the balance sheet (Work under process). For example, Asset Under Construction. + + + + + + + Product: QBO + Description: Use Intangible Assets Under Development to track the amount spent to generate an intangible asset that is not yet complete as of the date of the balance sheet (Work Under Process). For example, Asset Under Construction. + + + + + + + Product: QBO + Description: Use Other Long Term Investments to track investments that you expect to hold for more than twelve months and that are not classified in other account types. + + + + + + + Product: QBO + Description: Use Long Term Loans and Advances to Related Parties to track loans and advances given to related parties for more than twelve months from the balance sheet date. + + + + + + + Product: QBO + Description: Use Other Long Term Loans and Advances to track loans and advances given to related parties for more than twelve months from the balance sheet date, that are not classified in other account types. + + + + + + + Product: QBO + Description: Use Short Term Investments in Related Parties to track investments held in subsidiaries, associates, joint ventures and other related entities maturing within 12 months. + + + + + + + Product: QBO + Description: Use Other Earmarked Bank Accounts to keep track of funds set aside for a specific purpose. For example, funds set aside to be able to pay a specific liability in the future. + + + + + + + Product: QBO + Description: Use Short Term Loans and Advances to Related Parties to track loans and advance given to related parties for a period not more than twelve months from the balance sheet date. + + + + + + + Product: QBO + Description: Use Deferred Tax Expense to track the difference between the tax liability from book profits and the tax liability from taxable profits. The variation is from timing differences between book profits and taxable profits, which may become reversed in a later period. + + + + + + + Product: QBO + Description: Use Income Tax to track the amount of tax liability payable on the profits earned for the period (based on The Income Tax Act). + + + + + + + Product: QBO + Description: Use Duties and Taxes to keep track of various duties and taxes payable by the company. However, it does not include Income Tax (for example, VAT Payable, Service Tax Payable). + + + + + + + Product: QBO + Description: Use Balance with Government Authorities to track the amount of taxes paid on input services/purchases, which offset taxes collected on sales (for example, CENVAT Credit Receivable). + + + + + + + Product: QBO + Description: Use Tax Roundoff Gain or Loss to track gains or losses that occur as a result of Tax filing roundoff. + + + @@ -2460,6 +3461,18 @@ + + + Enumeration of the filing status that a TaxReturn can have + + + + + + + + + @@ -3592,6 +4605,16 @@ + + + + Product: QBO + Description: Specifies whether + shipping address is in free-form or structured-form (city/state etc.) + + + @@ -4045,6 +5068,16 @@ + + + + Product: ALL + Description: Reference to the + TaxExemptionId and TaxExemptionReason for this customer. + + + @@ -5210,6 +6243,16 @@ + + + + Product: ALL + Description: Reference to the + SalesTaxCode for this item. + + + @@ -5491,6 +6534,15 @@ + + + + Product: QBW + Description: True if Taxcode needs to be hidden. Active tax codes can be hidden from the display using this. + Filterable: ALL + + + @@ -10173,6 +11225,8 @@ minOccurs="0" /> + @@ -12103,6 +13157,22 @@ + + + + Product: QBO + Description: Represents the status of the filing of the tax return + + + + + + + Product: QBO + Description: Represents the tax return code with the partner + + + @@ -12141,4 +13211,4 @@ - \ No newline at end of file + diff --git a/ipp-v3-java-data/src/main/xsd/IntuitBaseTypes.xsd b/ipp-v3-java-data/src/main/xsd/IntuitBaseTypes.xsd old mode 100644 new mode 100755 diff --git a/ipp-v3-java-data/src/main/xsd/IntuitNamesTypes.xsd b/ipp-v3-java-data/src/main/xsd/IntuitNamesTypes.xsd old mode 100644 new mode 100755 index 102c5bd0..e8838db3 --- a/ipp-v3-java-data/src/main/xsd/IntuitNamesTypes.xsd +++ b/ipp-v3-java-data/src/main/xsd/IntuitNamesTypes.xsd @@ -599,6 +599,14 @@ + + + + Product: QBO + Description: Specifies whether this customer is a project. + + + diff --git a/ipp-v3-java-data/src/main/xsd/IntuitRestServiceDef.xsd b/ipp-v3-java-data/src/main/xsd/IntuitRestServiceDef.xsd old mode 100644 new mode 100755 diff --git a/ipp-v3-java-data/src/main/xsd/Report.xsd b/ipp-v3-java-data/src/main/xsd/Report.xsd old mode 100644 new mode 100755 diff --git a/ipp-v3-java-data/src/main/xsd/SalesTax.xsd b/ipp-v3-java-data/src/main/xsd/SalesTax.xsd old mode 100644 new mode 100755 diff --git a/ipp-v3-java-devkit/pom.xml b/ipp-v3-java-devkit/pom.xml index 479c8646..b956cd8f 100755 --- a/ipp-v3-java-devkit/pom.xml +++ b/ipp-v3-java-devkit/pom.xml @@ -6,11 +6,11 @@ ipp-v3-java-devkit-pom com.intuit.quickbooks-online - 3.0.5 + 4.0.0 ipp-v3-java-devkit - 3.0.5 + 4.0.0 jar IPP V3 Java Devkit - Development Project IPP Java V3 DevKit Project - Core @@ -25,7 +25,7 @@ com.intuit.quickbooks-online ipp-v3-java-data - 3.0.5 + 4.0.0 diff --git a/ipp-v3-java-devkit/src/main/java/com/intuit/ipp/interceptors/PrepareRequestInterceptor.java b/ipp-v3-java-devkit/src/main/java/com/intuit/ipp/interceptors/PrepareRequestInterceptor.java index 859879d7..487eedc7 100755 --- a/ipp-v3-java-devkit/src/main/java/com/intuit/ipp/interceptors/PrepareRequestInterceptor.java +++ b/ipp-v3-java-devkit/src/main/java/com/intuit/ipp/interceptors/PrepareRequestInterceptor.java @@ -272,7 +272,7 @@ private String prepareQBOUri(String entityName, Context cont if(context.getMinorVersion() == null) { - context.setMinorVersion("12"); + context.setMinorVersion("21"); } uri.append("minorversion").append("=").append(context.getMinorVersion()).append("&"); diff --git a/ipp-v3-java-devkit/src/main/resources/ippdevkit.properties b/ipp-v3-java-devkit/src/main/resources/ippdevkit.properties index 91e62d72..b64ab062 100755 --- a/ipp-v3-java-devkit/src/main/resources/ippdevkit.properties +++ b/ipp-v3-java-devkit/src/main/resources/ippdevkit.properties @@ -2,7 +2,7 @@ ## Devkit Version # This version has to be updated according to the pom version -version = 3.0.5 +version = 4.0.0 # This is to have the request source to be sent to IDS request header request.source = V3JavaSDK diff --git a/ipp-v3-java-devkit/src/test/java/com/intuit/ipp/interceptors/PrepareRequestInterceptorTest.java b/ipp-v3-java-devkit/src/test/java/com/intuit/ipp/interceptors/PrepareRequestInterceptorTest.java index 7929752b..6d311ae8 100755 --- a/ipp-v3-java-devkit/src/test/java/com/intuit/ipp/interceptors/PrepareRequestInterceptorTest.java +++ b/ipp-v3-java-devkit/src/test/java/com/intuit/ipp/interceptors/PrepareRequestInterceptorTest.java @@ -54,7 +54,7 @@ public void tearDown() { public void testExecute_QBO_URI() throws FMSException { instance.execute(message); String actual = message.getRequestElements().getRequestParameters().get("uri"); - Assert.assertEquals(actual, Config.getProperty(Config.BASE_URL_QBO) + "/fakeRealm/fakeAction?requestid=anyRequestID&minorversion=12&"); + Assert.assertEquals(actual, Config.getProperty(Config.BASE_URL_QBO) + "/fakeRealm/fakeAction?requestid=anyRequestID&minorversion=21&"); //change by nidhi for testing //Assert.assertEquals(actual, Config.getProperty(Config.BASE_URL_QBO) + "/fakeRealm/fakeAction?requestid=anyRequestID&include=updateaccountontxnsminorversion=5&"); } diff --git a/ipp-v3-java-devkit/src/test/resources/ippdevkit.properties b/ipp-v3-java-devkit/src/test/resources/ippdevkit.properties index 6038b137..b376fa9e 100755 --- a/ipp-v3-java-devkit/src/test/resources/ippdevkit.properties +++ b/ipp-v3-java-devkit/src/test/resources/ippdevkit.properties @@ -1,7 +1,7 @@ ### IPP Dev Kit helper properties ## Devkit version -version = 3.0.5 +version = 4.0.0 # This is to have the request source to be sent to IDS request header request.source = V3JavaSDK diff --git a/oauth2-platform-api/pom.xml b/oauth2-platform-api/pom.xml index 45ee1f85..7a996993 100644 --- a/oauth2-platform-api/pom.xml +++ b/oauth2-platform-api/pom.xml @@ -18,10 +18,10 @@ ipp-v3-java-devkit-pom com.intuit.quickbooks-online - 3.0.5 + 4.0.0 oauth2-platform-api - 3.0.5 + 4.0.0 Quickbooks API Helper for OAuth2 Quickbooks API Helper Project for OAuth2 diff --git a/pom.xml b/pom.xml index 14479061..6c7a650c 100755 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.intuit.quickbooks-online ipp-v3-java-devkit-pom - 3.0.5 + 4.0.0 pom IPP V3 Java DevKit https://github.com/intuit/QuickBooks-V3-Java-SDK