001package com.echothree.model.jooq.server.keys.payment;
002
003import com.echothree.model.jooq.server.records.payment.BillingAccountDetails;
004import com.echothree.model.jooq.server.records.payment.BillingAccountRoleTypeDescriptions;
005import com.echothree.model.jooq.server.records.payment.BillingAccountRoleTypes;
006import com.echothree.model.jooq.server.records.payment.BillingAccountRoles;
007import com.echothree.model.jooq.server.records.payment.BillingAccountStatuses;
008import com.echothree.model.jooq.server.records.payment.BillingAccounts;
009import com.echothree.model.jooq.server.records.payment.PartyPaymentMethodContactMechanisms;
010import com.echothree.model.jooq.server.records.payment.PartyPaymentMethodCreditCardSecurityCodes;
011import com.echothree.model.jooq.server.records.payment.PartyPaymentMethodCreditCards;
012import com.echothree.model.jooq.server.records.payment.PartyPaymentMethodDetails;
013import com.echothree.model.jooq.server.records.payment.PartyPaymentMethods;
014import com.echothree.model.jooq.server.records.payment.PaymentApplicationDetails;
015import com.echothree.model.jooq.server.records.payment.PaymentApplications;
016import com.echothree.model.jooq.server.records.payment.PaymentChecks;
017import com.echothree.model.jooq.server.records.payment.PaymentCreditCards;
018import com.echothree.model.jooq.server.records.payment.PaymentDeductionDetails;
019import com.echothree.model.jooq.server.records.payment.PaymentDeductionTypeDescriptions;
020import com.echothree.model.jooq.server.records.payment.PaymentDeductionTypes;
021import com.echothree.model.jooq.server.records.payment.PaymentDeductions;
022import com.echothree.model.jooq.server.records.payment.PaymentDetails;
023import com.echothree.model.jooq.server.records.payment.PaymentMethodChecks;
024import com.echothree.model.jooq.server.records.payment.PaymentMethodCreditCards;
025import com.echothree.model.jooq.server.records.payment.PaymentMethodDescriptions;
026import com.echothree.model.jooq.server.records.payment.PaymentMethodDetails;
027import com.echothree.model.jooq.server.records.payment.PaymentMethodTypeDescriptions;
028import com.echothree.model.jooq.server.records.payment.PaymentMethodTypeDetails;
029import com.echothree.model.jooq.server.records.payment.PaymentMethodTypePartyTypeDetails;
030import com.echothree.model.jooq.server.records.payment.PaymentMethodTypePartyTypes;
031import com.echothree.model.jooq.server.records.payment.PaymentMethodTypes;
032import com.echothree.model.jooq.server.records.payment.PaymentMethods;
033import com.echothree.model.jooq.server.records.payment.PaymentProcessorActionTypeDescriptions;
034import com.echothree.model.jooq.server.records.payment.PaymentProcessorActionTypeDetails;
035import com.echothree.model.jooq.server.records.payment.PaymentProcessorActionTypes;
036import com.echothree.model.jooq.server.records.payment.PaymentProcessorActions;
037import com.echothree.model.jooq.server.records.payment.PaymentProcessorDescriptions;
038import com.echothree.model.jooq.server.records.payment.PaymentProcessorDetails;
039import com.echothree.model.jooq.server.records.payment.PaymentProcessorResultCodeDescriptions;
040import com.echothree.model.jooq.server.records.payment.PaymentProcessorResultCodeDetails;
041import com.echothree.model.jooq.server.records.payment.PaymentProcessorResultCodes;
042import com.echothree.model.jooq.server.records.payment.PaymentProcessorTransactionCodes;
043import com.echothree.model.jooq.server.records.payment.PaymentProcessorTransactionDetails;
044import com.echothree.model.jooq.server.records.payment.PaymentProcessorTransactions;
045import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeActionDetails;
046import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeActions;
047import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeCodeDescriptions;
048import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeCodeDetails;
049import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeCodeTypeDescriptions;
050import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeCodeTypeDetails;
051import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeCodeTypes;
052import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeCodes;
053import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeDescriptions;
054import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypeDetails;
055import com.echothree.model.jooq.server.records.payment.PaymentProcessorTypes;
056import com.echothree.model.jooq.server.records.payment.PaymentProcessors;
057import com.echothree.model.jooq.server.records.payment.Payments;
058
059import org.jooq.TableField;
060import org.jooq.UniqueKey;
061import org.jooq.impl.DSL;
062import org.jooq.impl.Internal;
063
064/**
065 * Key definitions for the PaymentUnique component.
066 */
067public interface PaymentUniqueKeys {
068    public static final UniqueKey<BillingAccountDetails> BILLING_ACCOUNT_DETAILS_BILLING_ACCOUNT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails.BILLING_ACCOUNT, com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails.THRU_TIME }, true);
069    public static final UniqueKey<BillingAccountDetails> BILLING_ACCOUNT_DETAILS_BILLING_ACCOUNT_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails.BILLING_ACCOUNT_NAME, com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails.THRU_TIME }, true);
070    public static final UniqueKey<BillingAccountDetails> BILLING_ACCOUNT_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountDetails.BillingAccountDetails.BILLING_ACCOUNT_DETAIL }, true);
071    public static final UniqueKey<BillingAccountRoles> BILLING_ACCOUNT_ROLES_BILLING_ACCOUNT_AND_BILLING_ACCOUNT_ROLE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountRoles.BillingAccountRoles, DSL.name("index6_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountRoles.BillingAccountRoles.BILLING_ACCOUNT, com.echothree.model.jooq.server.tables.payment.BillingAccountRoles.BillingAccountRoles.BILLING_ACCOUNT_ROLE_TYPE, com.echothree.model.jooq.server.tables.payment.BillingAccountRoles.BillingAccountRoles.THRU_TIME }, true);
072    public static final UniqueKey<BillingAccountRoles> BILLING_ACCOUNT_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountRoles.BillingAccountRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountRoles.BillingAccountRoles.BILLING_ACCOUNT_ROLE }, true);
073    public static final UniqueKey<BillingAccountRoleTypeDescriptions> BILLING_ACCOUNT_ROLE_TYPE_DESCRIPTIONS_BILLING_ACCOUNT_ROLE_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypeDescriptions.BillingAccountRoleTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypeDescriptions.BillingAccountRoleTypeDescriptions.BILLING_ACCOUNT_ROLE_TYPE, com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypeDescriptions.BillingAccountRoleTypeDescriptions.LANGUAGE }, true);
074    public static final UniqueKey<BillingAccountRoleTypeDescriptions> BILLING_ACCOUNT_ROLE_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypeDescriptions.BillingAccountRoleTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypeDescriptions.BillingAccountRoleTypeDescriptions.BILLING_ACCOUNT_ROLE_TYPE_DESCRIPTION }, true);
075    public static final UniqueKey<BillingAccountRoleTypes> BILLING_ACCOUNT_ROLE_TYPES_BILLING_ACCOUNT_ROLE_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypes.BillingAccountRoleTypes, DSL.name("billingaccountroletypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypes.BillingAccountRoleTypes.BILLING_ACCOUNT_ROLE_TYPE_NAME }, true);
076    public static final UniqueKey<BillingAccountRoleTypes> BILLING_ACCOUNT_ROLE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypes.BillingAccountRoleTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountRoleTypes.BillingAccountRoleTypes.BILLING_ACCOUNT_ROLE_TYPE }, true);
077    public static final UniqueKey<BillingAccounts> BILLING_ACCOUNTS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccounts.BillingAccounts, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccounts.BillingAccounts.ACTIVE_DETAIL }, true);
078    public static final UniqueKey<BillingAccounts> BILLING_ACCOUNTS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccounts.BillingAccounts, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccounts.BillingAccounts.LAST_DETAIL }, true);
079    public static final UniqueKey<BillingAccounts> BILLING_ACCOUNTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccounts.BillingAccounts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccounts.BillingAccounts.BILLING_ACCOUNT }, true);
080    public static final UniqueKey<BillingAccountStatuses> BILLING_ACCOUNT_STATUSES_BILLING_ACCOUNT_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountStatuses.BillingAccountStatuses, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountStatuses.BillingAccountStatuses.BILLING_ACCOUNT }, true);
081    public static final UniqueKey<BillingAccountStatuses> BILLING_ACCOUNT_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.BillingAccountStatuses.BillingAccountStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.BillingAccountStatuses.BillingAccountStatuses.BILLING_ACCOUNT_STATUS }, true);
082    public static final UniqueKey<PartyPaymentMethodContactMechanisms> PARTY_PAYMENT_METHOD_CONTACT_MECHANISMS_PARTY_PAYMENT_METHOD_AND_PARTY_CONTACT_MECHANISM_PURPOSE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodContactMechanisms.PartyPaymentMethodContactMechanisms, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodContactMechanisms.PartyPaymentMethodContactMechanisms.PARTY_PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodContactMechanisms.PartyPaymentMethodContactMechanisms.PARTY_CONTACT_MECHANISM_PURPOSE, com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodContactMechanisms.PartyPaymentMethodContactMechanisms.THRU_TIME }, true);
083    public static final UniqueKey<PartyPaymentMethodContactMechanisms> PARTY_PAYMENT_METHOD_CONTACT_MECHANISMS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodContactMechanisms.PartyPaymentMethodContactMechanisms, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodContactMechanisms.PartyPaymentMethodContactMechanisms.PARTY_PAYMENT_METHOD_CONTACT_MECHANISM }, true);
084    public static final UniqueKey<PartyPaymentMethodCreditCards> PARTY_PAYMENT_METHOD_CREDIT_CARDS_PARTY_PAYMENT_METHOD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCards.PartyPaymentMethodCreditCards, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCards.PartyPaymentMethodCreditCards.PARTY_PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCards.PartyPaymentMethodCreditCards.THRU_TIME }, true);
085    public static final UniqueKey<PartyPaymentMethodCreditCards> PARTY_PAYMENT_METHOD_CREDIT_CARDS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCards.PartyPaymentMethodCreditCards, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCards.PartyPaymentMethodCreditCards.PARTY_PAYMENT_METHOD_CREDIT_CARD }, true);
086    public static final UniqueKey<PartyPaymentMethodCreditCardSecurityCodes> PARTY_PAYMENT_METHOD_CREDIT_CARD_SECURITY_CODES_PARTY_PAYMENT_METHOD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCardSecurityCodes.PartyPaymentMethodCreditCardSecurityCodes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCardSecurityCodes.PartyPaymentMethodCreditCardSecurityCodes.PARTY_PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCardSecurityCodes.PartyPaymentMethodCreditCardSecurityCodes.THRU_TIME }, true);
087    public static final UniqueKey<PartyPaymentMethodCreditCardSecurityCodes> PARTY_PAYMENT_METHOD_CREDIT_CARD_SECURITY_CODES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCardSecurityCodes.PartyPaymentMethodCreditCardSecurityCodes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodCreditCardSecurityCodes.PartyPaymentMethodCreditCardSecurityCodes.PARTY_PAYMENT_METHOD_CREDIT_CARD_SECURITY_CODE }, true);
088    public static final UniqueKey<PartyPaymentMethodDetails> PARTY_PAYMENT_METHOD_DETAILS_PARTY_PAYMENT_METHOD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails.PARTY_PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails.THRU_TIME }, true);
089    public static final UniqueKey<PartyPaymentMethodDetails> PARTY_PAYMENT_METHOD_DETAILS_PARTY_PAYMENT_METHOD_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails, DSL.name("index3_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails.PARTY_PAYMENT_METHOD_NAME, com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails.THRU_TIME }, true);
090    public static final UniqueKey<PartyPaymentMethodDetails> PARTY_PAYMENT_METHOD_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethodDetails.PartyPaymentMethodDetails.PARTY_PAYMENT_METHOD_DETAIL }, true);
091    public static final UniqueKey<PartyPaymentMethods> PARTY_PAYMENT_METHODS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethods.PartyPaymentMethods, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethods.PartyPaymentMethods.ACTIVE_DETAIL }, true);
092    public static final UniqueKey<PartyPaymentMethods> PARTY_PAYMENT_METHODS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethods.PartyPaymentMethods, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethods.PartyPaymentMethods.LAST_DETAIL }, true);
093    public static final UniqueKey<PartyPaymentMethods> PARTY_PAYMENT_METHODS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PartyPaymentMethods.PartyPaymentMethods, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PartyPaymentMethods.PartyPaymentMethods.PARTY_PAYMENT_METHOD }, true);
094    public static final UniqueKey<PaymentApplicationDetails> PAYMENT_APPLICATION_DETAILS_PAYMENT_APPLICATION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails.PAYMENT_APPLICATION, com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails.THRU_TIME }, true);
095    public static final UniqueKey<PaymentApplicationDetails> PAYMENT_APPLICATION_DETAILS_PAYMENT_AND_INVOICE_LINE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails.PAYMENT, com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails.INVOICE_LINE, com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails.THRU_TIME }, true);
096    public static final UniqueKey<PaymentApplicationDetails> PAYMENT_APPLICATION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails.PAYMENT_APPLICATION_DETAIL }, true);
097    public static final UniqueKey<PaymentApplications> PAYMENT_APPLICATIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentApplications.PaymentApplications, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentApplications.PaymentApplications.ACTIVE_DETAIL }, true);
098    public static final UniqueKey<PaymentApplications> PAYMENT_APPLICATIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentApplications.PaymentApplications, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentApplications.PaymentApplications.LAST_DETAIL }, true);
099    public static final UniqueKey<PaymentApplications> PAYMENT_APPLICATIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentApplications.PaymentApplications, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentApplications.PaymentApplications.PAYMENT_APPLICATION }, true);
100    public static final UniqueKey<PaymentChecks> PAYMENT_CHECKS_PAYMENT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentChecks.PaymentChecks, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentChecks.PaymentChecks.PAYMENT, com.echothree.model.jooq.server.tables.payment.PaymentChecks.PaymentChecks.THRU_TIME }, true);
101    public static final UniqueKey<PaymentChecks> PAYMENT_CHECKS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentChecks.PaymentChecks, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentChecks.PaymentChecks.PAYMENT_CHECK }, true);
102    public static final UniqueKey<PaymentCreditCards> PAYMENT_CREDIT_CARDS_PAYMENT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentCreditCards.PaymentCreditCards, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentCreditCards.PaymentCreditCards.PAYMENT, com.echothree.model.jooq.server.tables.payment.PaymentCreditCards.PaymentCreditCards.THRU_TIME }, true);
103    public static final UniqueKey<PaymentCreditCards> PAYMENT_CREDIT_CARDS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentCreditCards.PaymentCreditCards, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentCreditCards.PaymentCreditCards.PAYMENT_CREDIT_CARD }, true);
104    public static final UniqueKey<PaymentDeductionDetails> PAYMENT_DEDUCTION_DETAILS_PAYMENT_DEDUCTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails.PAYMENT_DEDUCTION, com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails.THRU_TIME }, true);
105    public static final UniqueKey<PaymentDeductionDetails> PAYMENT_DEDUCTION_DETAILS_PAYMENT_DEDUCTION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails.PAYMENT_DEDUCTION_NAME, com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails.THRU_TIME }, true);
106    public static final UniqueKey<PaymentDeductionDetails> PAYMENT_DEDUCTION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionDetails.PaymentDeductionDetails.PAYMENT_DEDUCTION_DETAIL }, true);
107    public static final UniqueKey<PaymentDeductions> PAYMENT_DEDUCTIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductions.PaymentDeductions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductions.PaymentDeductions.ACTIVE_DETAIL }, true);
108    public static final UniqueKey<PaymentDeductions> PAYMENT_DEDUCTIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductions.PaymentDeductions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductions.PaymentDeductions.LAST_DETAIL }, true);
109    public static final UniqueKey<PaymentDeductions> PAYMENT_DEDUCTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductions.PaymentDeductions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductions.PaymentDeductions.PAYMENT_DEDUCTION }, true);
110    public static final UniqueKey<PaymentDeductionTypeDescriptions> PAYMENT_DEDUCTION_TYPE_DESCRIPTIONS_PAYMENT_DEDUCTION_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypeDescriptions.PaymentDeductionTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypeDescriptions.PaymentDeductionTypeDescriptions.PAYMENT_DEDUCTION_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypeDescriptions.PaymentDeductionTypeDescriptions.LANGUAGE }, true);
111    public static final UniqueKey<PaymentDeductionTypeDescriptions> PAYMENT_DEDUCTION_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypeDescriptions.PaymentDeductionTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypeDescriptions.PaymentDeductionTypeDescriptions.PAYMENT_DEDUCTION_TYPE_DESCRIPTION }, true);
112    public static final UniqueKey<PaymentDeductionTypes> PAYMENT_DEDUCTION_TYPES_PAYMENT_DEDUCTION_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypes.PaymentDeductionTypes, DSL.name("paymentdeductiontypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypes.PaymentDeductionTypes.PAYMENT_DEDUCTION_TYPE_NAME }, true);
113    public static final UniqueKey<PaymentDeductionTypes> PAYMENT_DEDUCTION_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypes.PaymentDeductionTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDeductionTypes.PaymentDeductionTypes.PAYMENT_DEDUCTION_TYPE }, true);
114    public static final UniqueKey<PaymentDetails> PAYMENT_DETAILS_PAYMENT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails.PAYMENT, com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails.THRU_TIME }, true);
115    public static final UniqueKey<PaymentDetails> PAYMENT_DETAILS_PAYMENT_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails.PAYMENT_NAME, com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails.THRU_TIME }, true);
116    public static final UniqueKey<PaymentDetails> PAYMENT_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentDetails.PaymentDetails.PAYMENT_DETAIL }, true);
117    public static final UniqueKey<PaymentMethodChecks> PAYMENT_METHOD_CHECKS_PAYMENT_METHOD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodChecks.PaymentMethodChecks, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodChecks.PaymentMethodChecks.PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PaymentMethodChecks.PaymentMethodChecks.THRU_TIME }, true);
118    public static final UniqueKey<PaymentMethodChecks> PAYMENT_METHOD_CHECKS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodChecks.PaymentMethodChecks, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodChecks.PaymentMethodChecks.PAYMENT_METHOD_CHECK }, true);
119    public static final UniqueKey<PaymentMethodCreditCards> PAYMENT_METHOD_CREDIT_CARDS_PAYMENT_METHOD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodCreditCards.PaymentMethodCreditCards, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodCreditCards.PaymentMethodCreditCards.PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PaymentMethodCreditCards.PaymentMethodCreditCards.THRU_TIME }, true);
120    public static final UniqueKey<PaymentMethodCreditCards> PAYMENT_METHOD_CREDIT_CARDS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodCreditCards.PaymentMethodCreditCards, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodCreditCards.PaymentMethodCreditCards.PAYMENT_METHOD_CREDIT_CARD }, true);
121    public static final UniqueKey<PaymentMethodDescriptions> PAYMENT_METHOD_DESCRIPTIONS_PAYMENT_METHOD_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodDescriptions.PaymentMethodDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodDescriptions.PaymentMethodDescriptions.PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PaymentMethodDescriptions.PaymentMethodDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentMethodDescriptions.PaymentMethodDescriptions.THRU_TIME }, true);
122    public static final UniqueKey<PaymentMethodDescriptions> PAYMENT_METHOD_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodDescriptions.PaymentMethodDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodDescriptions.PaymentMethodDescriptions.PAYMENT_METHOD_DESCRIPTION }, true);
123    public static final UniqueKey<PaymentMethodDetails> PAYMENT_METHOD_DETAILS_PAYMENT_METHOD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails.PAYMENT_METHOD, com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails.THRU_TIME }, true);
124    public static final UniqueKey<PaymentMethodDetails> PAYMENT_METHOD_DETAILS_PAYMENT_METHOD_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails.PAYMENT_METHOD_NAME, com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails.THRU_TIME }, true);
125    public static final UniqueKey<PaymentMethodDetails> PAYMENT_METHOD_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodDetails.PaymentMethodDetails.PAYMENT_METHOD_DETAIL }, true);
126    public static final UniqueKey<PaymentMethods> PAYMENT_METHODS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethods.PaymentMethods, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethods.PaymentMethods.ACTIVE_DETAIL }, true);
127    public static final UniqueKey<PaymentMethods> PAYMENT_METHODS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethods.PaymentMethods, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethods.PaymentMethods.LAST_DETAIL }, true);
128    public static final UniqueKey<PaymentMethods> PAYMENT_METHODS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethods.PaymentMethods, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethods.PaymentMethods.PAYMENT_METHOD }, true);
129    public static final UniqueKey<PaymentMethodTypeDescriptions> PAYMENT_METHOD_TYPE_DESCRIPTIONS_PAYMENT_METHOD_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDescriptions.PaymentMethodTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDescriptions.PaymentMethodTypeDescriptions.PAYMENT_METHOD_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDescriptions.PaymentMethodTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDescriptions.PaymentMethodTypeDescriptions.THRU_TIME }, true);
130    public static final UniqueKey<PaymentMethodTypeDescriptions> PAYMENT_METHOD_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDescriptions.PaymentMethodTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDescriptions.PaymentMethodTypeDescriptions.PAYMENT_METHOD_TYPE_DESCRIPTION }, true);
131    public static final UniqueKey<PaymentMethodTypeDetails> PAYMENT_METHOD_TYPE_DETAILS_PAYMENT_METHOD_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails.PAYMENT_METHOD_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails.THRU_TIME }, true);
132    public static final UniqueKey<PaymentMethodTypeDetails> PAYMENT_METHOD_TYPE_DETAILS_PAYMENT_METHOD_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails.PAYMENT_METHOD_TYPE_NAME, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails.THRU_TIME }, true);
133    public static final UniqueKey<PaymentMethodTypeDetails> PAYMENT_METHOD_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypeDetails.PaymentMethodTypeDetails.PAYMENT_METHOD_TYPE_DETAIL }, true);
134    public static final UniqueKey<PaymentMethodTypePartyTypeDetails> PAYMENT_METHOD_TYPE_PARTY_TYPE_DETAILS_PAYMENT_METHOD_TYPE_PARTY_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails.PAYMENT_METHOD_TYPE_PARTY_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails.THRU_TIME }, true);
135    public static final UniqueKey<PaymentMethodTypePartyTypeDetails> PAYMENT_METHOD_TYPE_PARTY_TYPE_DETAILS_PAYMENT_METHOD_TYPE_AND_PARTY_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails.PAYMENT_METHOD_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails.PARTY_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails.THRU_TIME }, true);
136    public static final UniqueKey<PaymentMethodTypePartyTypeDetails> PAYMENT_METHOD_TYPE_PARTY_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypeDetails.PaymentMethodTypePartyTypeDetails.PAYMENT_METHOD_TYPE_PARTY_TYPE_DETAIL }, true);
137    public static final UniqueKey<PaymentMethodTypePartyTypes> PAYMENT_METHOD_TYPE_PARTY_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypes.PaymentMethodTypePartyTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypes.PaymentMethodTypePartyTypes.ACTIVE_DETAIL }, true);
138    public static final UniqueKey<PaymentMethodTypePartyTypes> PAYMENT_METHOD_TYPE_PARTY_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypes.PaymentMethodTypePartyTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypes.PaymentMethodTypePartyTypes.LAST_DETAIL }, true);
139    public static final UniqueKey<PaymentMethodTypePartyTypes> PAYMENT_METHOD_TYPE_PARTY_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypes.PaymentMethodTypePartyTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypePartyTypes.PaymentMethodTypePartyTypes.PAYMENT_METHOD_TYPE_PARTY_TYPE }, true);
140    public static final UniqueKey<PaymentMethodTypes> PAYMENT_METHOD_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypes.PaymentMethodTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypes.PaymentMethodTypes.ACTIVE_DETAIL }, true);
141    public static final UniqueKey<PaymentMethodTypes> PAYMENT_METHOD_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypes.PaymentMethodTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypes.PaymentMethodTypes.LAST_DETAIL }, true);
142    public static final UniqueKey<PaymentMethodTypes> PAYMENT_METHOD_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentMethodTypes.PaymentMethodTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentMethodTypes.PaymentMethodTypes.PAYMENT_METHOD_TYPE }, true);
143    public static final UniqueKey<PaymentProcessorActions> PAYMENT_PROCESSOR_ACTIONS_PAYMENT_PROCESSOR_AND_PAYMENT_PROCESSOR_TYPE_ACTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActions.PaymentProcessorActions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActions.PaymentProcessorActions.PAYMENT_PROCESSOR, com.echothree.model.jooq.server.tables.payment.PaymentProcessorActions.PaymentProcessorActions.PAYMENT_PROCESSOR_TYPE_ACTION, com.echothree.model.jooq.server.tables.payment.PaymentProcessorActions.PaymentProcessorActions.THRU_TIME }, true);
144    public static final UniqueKey<PaymentProcessorActions> PAYMENT_PROCESSOR_ACTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActions.PaymentProcessorActions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActions.PaymentProcessorActions.PAYMENT_PROCESSOR_ACTION }, true);
145    public static final UniqueKey<PaymentProcessorActionTypeDescriptions> PAYMENT_PROCESSOR_ACTION_TYPE_DESCRIPTIONS_PAYMENT_PROCESSOR_ACTION_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDescriptions.PaymentProcessorActionTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDescriptions.PaymentProcessorActionTypeDescriptions.PAYMENT_PROCESSOR_ACTION_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDescriptions.PaymentProcessorActionTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDescriptions.PaymentProcessorActionTypeDescriptions.THRU_TIME }, true);
146    public static final UniqueKey<PaymentProcessorActionTypeDescriptions> PAYMENT_PROCESSOR_ACTION_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDescriptions.PaymentProcessorActionTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDescriptions.PaymentProcessorActionTypeDescriptions.PAYMENT_PROCESSOR_ACTION_TYPE_DESCRIPTION }, true);
147    public static final UniqueKey<PaymentProcessorActionTypeDetails> PAYMENT_PROCESSOR_ACTION_TYPE_DETAILS_PAYMENT_PROCESSOR_ACTION_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails.PAYMENT_PROCESSOR_ACTION_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails.THRU_TIME }, true);
148    public static final UniqueKey<PaymentProcessorActionTypeDetails> PAYMENT_PROCESSOR_ACTION_TYPE_DETAILS_PAYMENT_PROCESSOR_ACTION_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails.PAYMENT_PROCESSOR_ACTION_TYPE_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails.THRU_TIME }, true);
149    public static final UniqueKey<PaymentProcessorActionTypeDetails> PAYMENT_PROCESSOR_ACTION_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypeDetails.PaymentProcessorActionTypeDetails.PAYMENT_PROCESSOR_ACTION_TYPE_DETAIL }, true);
150    public static final UniqueKey<PaymentProcessorActionTypes> PAYMENT_PROCESSOR_ACTION_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypes.PaymentProcessorActionTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypes.PaymentProcessorActionTypes.ACTIVE_DETAIL }, true);
151    public static final UniqueKey<PaymentProcessorActionTypes> PAYMENT_PROCESSOR_ACTION_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypes.PaymentProcessorActionTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypes.PaymentProcessorActionTypes.LAST_DETAIL }, true);
152    public static final UniqueKey<PaymentProcessorActionTypes> PAYMENT_PROCESSOR_ACTION_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypes.PaymentProcessorActionTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorActionTypes.PaymentProcessorActionTypes.PAYMENT_PROCESSOR_ACTION_TYPE }, true);
153    public static final UniqueKey<PaymentProcessorDescriptions> PAYMENT_PROCESSOR_DESCRIPTIONS_PAYMENT_PROCESSOR_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorDescriptions.PaymentProcessorDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorDescriptions.PaymentProcessorDescriptions.PAYMENT_PROCESSOR, com.echothree.model.jooq.server.tables.payment.PaymentProcessorDescriptions.PaymentProcessorDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorDescriptions.PaymentProcessorDescriptions.THRU_TIME }, true);
154    public static final UniqueKey<PaymentProcessorDescriptions> PAYMENT_PROCESSOR_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorDescriptions.PaymentProcessorDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorDescriptions.PaymentProcessorDescriptions.PAYMENT_PROCESSOR_DESCRIPTION }, true);
155    public static final UniqueKey<PaymentProcessorDetails> PAYMENT_PROCESSOR_DETAILS_PAYMENT_PROCESSOR_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails.PAYMENT_PROCESSOR, com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails.THRU_TIME }, true);
156    public static final UniqueKey<PaymentProcessorDetails> PAYMENT_PROCESSOR_DETAILS_PAYMENT_PROCESSOR_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails.PAYMENT_PROCESSOR_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails.THRU_TIME }, true);
157    public static final UniqueKey<PaymentProcessorDetails> PAYMENT_PROCESSOR_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorDetails.PaymentProcessorDetails.PAYMENT_PROCESSOR_DETAIL }, true);
158    public static final UniqueKey<PaymentProcessorResultCodeDescriptions> PAYMENT_PROCESSOR_RESULT_CODE_DESCRIPTIONS_PAYMENT_PROCESSOR_RESULT_CODE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDescriptions.PaymentProcessorResultCodeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDescriptions.PaymentProcessorResultCodeDescriptions.PAYMENT_PROCESSOR_RESULT_CODE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDescriptions.PaymentProcessorResultCodeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDescriptions.PaymentProcessorResultCodeDescriptions.THRU_TIME }, true);
159    public static final UniqueKey<PaymentProcessorResultCodeDescriptions> PAYMENT_PROCESSOR_RESULT_CODE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDescriptions.PaymentProcessorResultCodeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDescriptions.PaymentProcessorResultCodeDescriptions.PAYMENT_PROCESSOR_RESULT_CODE_DESCRIPTION }, true);
160    public static final UniqueKey<PaymentProcessorResultCodeDetails> PAYMENT_PROCESSOR_RESULT_CODE_DETAILS_PAYMENT_PROCESSOR_RESULT_CODE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails.PAYMENT_PROCESSOR_RESULT_CODE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails.THRU_TIME }, true);
161    public static final UniqueKey<PaymentProcessorResultCodeDetails> PAYMENT_PROCESSOR_RESULT_CODE_DETAILS_PAYMENT_PROCESSOR_RESULT_CODE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails.PAYMENT_PROCESSOR_RESULT_CODE_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails.THRU_TIME }, true);
162    public static final UniqueKey<PaymentProcessorResultCodeDetails> PAYMENT_PROCESSOR_RESULT_CODE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodeDetails.PaymentProcessorResultCodeDetails.PAYMENT_PROCESSOR_RESULT_CODE_DETAIL }, true);
163    public static final UniqueKey<PaymentProcessorResultCodes> PAYMENT_PROCESSOR_RESULT_CODES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodes.PaymentProcessorResultCodes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodes.PaymentProcessorResultCodes.ACTIVE_DETAIL }, true);
164    public static final UniqueKey<PaymentProcessorResultCodes> PAYMENT_PROCESSOR_RESULT_CODES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodes.PaymentProcessorResultCodes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodes.PaymentProcessorResultCodes.LAST_DETAIL }, true);
165    public static final UniqueKey<PaymentProcessorResultCodes> PAYMENT_PROCESSOR_RESULT_CODES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodes.PaymentProcessorResultCodes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorResultCodes.PaymentProcessorResultCodes.PAYMENT_PROCESSOR_RESULT_CODE }, true);
166    public static final UniqueKey<PaymentProcessors> PAYMENT_PROCESSORS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessors.PaymentProcessors, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessors.PaymentProcessors.ACTIVE_DETAIL }, true);
167    public static final UniqueKey<PaymentProcessors> PAYMENT_PROCESSORS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessors.PaymentProcessors, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessors.PaymentProcessors.LAST_DETAIL }, true);
168    public static final UniqueKey<PaymentProcessors> PAYMENT_PROCESSORS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessors.PaymentProcessors, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessors.PaymentProcessors.PAYMENT_PROCESSOR }, true);
169    public static final UniqueKey<PaymentProcessorTransactionCodes> PAYMENT_PROCESSOR_TRANSACTION_CODES_PAYMENT_PROCESSOR_TRANSACTION_AND_PAYMENT_PROCESSOR_TYPE_CODE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionCodes.PaymentProcessorTransactionCodes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionCodes.PaymentProcessorTransactionCodes.PAYMENT_PROCESSOR_TRANSACTION, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionCodes.PaymentProcessorTransactionCodes.PAYMENT_PROCESSOR_TYPE_CODE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionCodes.PaymentProcessorTransactionCodes.THRU_TIME }, true);
170    public static final UniqueKey<PaymentProcessorTransactionCodes> PAYMENT_PROCESSOR_TRANSACTION_CODES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionCodes.PaymentProcessorTransactionCodes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionCodes.PaymentProcessorTransactionCodes.PAYMENT_PROCESSOR_TRANSACTION_CODE }, true);
171    public static final UniqueKey<PaymentProcessorTransactionDetails> PAYMENT_PROCESSOR_TRANSACTION_DETAILS_PAYMENT_PROCESSOR_TRANSACTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails.PAYMENT_PROCESSOR_TRANSACTION, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails.THRU_TIME }, true);
172    public static final UniqueKey<PaymentProcessorTransactionDetails> PAYMENT_PROCESSOR_TRANSACTION_DETAILS_PAYMENT_PROCESSOR_TRANSACTION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails.PAYMENT_PROCESSOR_TRANSACTION_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails.THRU_TIME }, true);
173    public static final UniqueKey<PaymentProcessorTransactionDetails> PAYMENT_PROCESSOR_TRANSACTION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactionDetails.PaymentProcessorTransactionDetails.PAYMENT_PROCESSOR_TRANSACTION_DETAIL }, true);
174    public static final UniqueKey<PaymentProcessorTransactions> PAYMENT_PROCESSOR_TRANSACTIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactions.PaymentProcessorTransactions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactions.PaymentProcessorTransactions.ACTIVE_DETAIL }, true);
175    public static final UniqueKey<PaymentProcessorTransactions> PAYMENT_PROCESSOR_TRANSACTIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactions.PaymentProcessorTransactions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactions.PaymentProcessorTransactions.LAST_DETAIL }, true);
176    public static final UniqueKey<PaymentProcessorTransactions> PAYMENT_PROCESSOR_TRANSACTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactions.PaymentProcessorTransactions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTransactions.PaymentProcessorTransactions.PAYMENT_PROCESSOR_TRANSACTION }, true);
177    public static final UniqueKey<PaymentProcessorTypeActionDetails> PAYMENT_PROCESSOR_TYPE_ACTION_DETAILS_PAYMENT_PROCESSOR_TYPE_ACTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails.PAYMENT_PROCESSOR_TYPE_ACTION, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails.THRU_TIME }, true);
178    public static final UniqueKey<PaymentProcessorTypeActionDetails> PAYMENT_PROCESSOR_TYPE_ACTION_DETAILS_PAYMENT_PROCESSOR_TYPE_AND_PAYMENT_PROCESSOR_ACTION_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails.PAYMENT_PROCESSOR_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails.PAYMENT_PROCESSOR_ACTION_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails.THRU_TIME }, true);
179    public static final UniqueKey<PaymentProcessorTypeActionDetails> PAYMENT_PROCESSOR_TYPE_ACTION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActionDetails.PaymentProcessorTypeActionDetails.PAYMENT_PROCESSOR_TYPE_ACTION_DETAIL }, true);
180    public static final UniqueKey<PaymentProcessorTypeActions> PAYMENT_PROCESSOR_TYPE_ACTIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActions.PaymentProcessorTypeActions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActions.PaymentProcessorTypeActions.ACTIVE_DETAIL }, true);
181    public static final UniqueKey<PaymentProcessorTypeActions> PAYMENT_PROCESSOR_TYPE_ACTIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActions.PaymentProcessorTypeActions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActions.PaymentProcessorTypeActions.LAST_DETAIL }, true);
182    public static final UniqueKey<PaymentProcessorTypeActions> PAYMENT_PROCESSOR_TYPE_ACTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActions.PaymentProcessorTypeActions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeActions.PaymentProcessorTypeActions.PAYMENT_PROCESSOR_TYPE_ACTION }, true);
183    public static final UniqueKey<PaymentProcessorTypeCodeDescriptions> PAYMENT_PROCESSOR_TYPE_CODE_DESCRIPTIONS_PAYMENT_PROCESSOR_TYPE_CODE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDescriptions.PaymentProcessorTypeCodeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDescriptions.PaymentProcessorTypeCodeDescriptions.PAYMENT_PROCESSOR_TYPE_CODE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDescriptions.PaymentProcessorTypeCodeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDescriptions.PaymentProcessorTypeCodeDescriptions.THRU_TIME }, true);
184    public static final UniqueKey<PaymentProcessorTypeCodeDescriptions> PAYMENT_PROCESSOR_TYPE_CODE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDescriptions.PaymentProcessorTypeCodeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDescriptions.PaymentProcessorTypeCodeDescriptions.PAYMENT_PROCESSOR_TYPE_CODE_DESCRIPTION }, true);
185    public static final UniqueKey<PaymentProcessorTypeCodeDetails> PAYMENT_PROCESSOR_TYPE_CODE_DETAILS_PAYMENT_PROCESSOR_TYPE_CODE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails.PAYMENT_PROCESSOR_TYPE_CODE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails.THRU_TIME }, true);
186    public static final UniqueKey<PaymentProcessorTypeCodeDetails> PAYMENT_PROCESSOR_TYPE_CODE_DETAILS_PAYMENT_PROCESSOR_TYPE_CODE_TYPE_AND_PAYMENT_PROCESSOR_TYPE_CODE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails, DSL.name("index3_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails.PAYMENT_PROCESSOR_TYPE_CODE_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails.PAYMENT_PROCESSOR_TYPE_CODE_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails.THRU_TIME }, true);
187    public static final UniqueKey<PaymentProcessorTypeCodeDetails> PAYMENT_PROCESSOR_TYPE_CODE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeDetails.PaymentProcessorTypeCodeDetails.PAYMENT_PROCESSOR_TYPE_CODE_DETAIL }, true);
188    public static final UniqueKey<PaymentProcessorTypeCodes> PAYMENT_PROCESSOR_TYPE_CODES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodes.PaymentProcessorTypeCodes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodes.PaymentProcessorTypeCodes.ACTIVE_DETAIL }, true);
189    public static final UniqueKey<PaymentProcessorTypeCodes> PAYMENT_PROCESSOR_TYPE_CODES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodes.PaymentProcessorTypeCodes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodes.PaymentProcessorTypeCodes.LAST_DETAIL }, true);
190    public static final UniqueKey<PaymentProcessorTypeCodes> PAYMENT_PROCESSOR_TYPE_CODES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodes.PaymentProcessorTypeCodes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodes.PaymentProcessorTypeCodes.PAYMENT_PROCESSOR_TYPE_CODE }, true);
191    public static final UniqueKey<PaymentProcessorTypeCodeTypeDescriptions> PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DESCRIPTIONS_PAYMENT_PROCESSOR_TYPE_CODE_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDescriptions.PaymentProcessorTypeCodeTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDescriptions.PaymentProcessorTypeCodeTypeDescriptions.PAYMENT_PROCESSOR_TYPE_CODE_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDescriptions.PaymentProcessorTypeCodeTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDescriptions.PaymentProcessorTypeCodeTypeDescriptions.THRU_TIME }, true);
192    public static final UniqueKey<PaymentProcessorTypeCodeTypeDescriptions> PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDescriptions.PaymentProcessorTypeCodeTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDescriptions.PaymentProcessorTypeCodeTypeDescriptions.PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DESCRIPTION }, true);
193    public static final UniqueKey<PaymentProcessorTypeCodeTypeDetails> PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DETAILS_PAYMENT_PROCESSOR_TYPE_CODE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails.PAYMENT_PROCESSOR_TYPE_CODE_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails.THRU_TIME }, true);
194    public static final UniqueKey<PaymentProcessorTypeCodeTypeDetails> PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DETAILS_PAYMENT_PROCESSOR_TYPE_AND_PAYMENT_PROCESSOR_TYPE_CODE_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails.PAYMENT_PROCESSOR_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails.PAYMENT_PROCESSOR_TYPE_CODE_TYPE_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails.THRU_TIME }, true);
195    public static final UniqueKey<PaymentProcessorTypeCodeTypeDetails> PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypeDetails.PaymentProcessorTypeCodeTypeDetails.PAYMENT_PROCESSOR_TYPE_CODE_TYPE_DETAIL }, true);
196    public static final UniqueKey<PaymentProcessorTypeCodeTypes> PAYMENT_PROCESSOR_TYPE_CODE_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypes.PaymentProcessorTypeCodeTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypes.PaymentProcessorTypeCodeTypes.ACTIVE_DETAIL }, true);
197    public static final UniqueKey<PaymentProcessorTypeCodeTypes> PAYMENT_PROCESSOR_TYPE_CODE_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypes.PaymentProcessorTypeCodeTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypes.PaymentProcessorTypeCodeTypes.LAST_DETAIL }, true);
198    public static final UniqueKey<PaymentProcessorTypeCodeTypes> PAYMENT_PROCESSOR_TYPE_CODE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypes.PaymentProcessorTypeCodeTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeCodeTypes.PaymentProcessorTypeCodeTypes.PAYMENT_PROCESSOR_TYPE_CODE_TYPE }, true);
199    public static final UniqueKey<PaymentProcessorTypeDescriptions> PAYMENT_PROCESSOR_TYPE_DESCRIPTIONS_PAYMENT_PROCESSOR_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDescriptions.PaymentProcessorTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDescriptions.PaymentProcessorTypeDescriptions.PAYMENT_PROCESSOR_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDescriptions.PaymentProcessorTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDescriptions.PaymentProcessorTypeDescriptions.THRU_TIME }, true);
200    public static final UniqueKey<PaymentProcessorTypeDescriptions> PAYMENT_PROCESSOR_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDescriptions.PaymentProcessorTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDescriptions.PaymentProcessorTypeDescriptions.PAYMENT_PROCESSOR_TYPE_DESCRIPTION }, true);
201    public static final UniqueKey<PaymentProcessorTypeDetails> PAYMENT_PROCESSOR_TYPE_DETAILS_PAYMENT_PROCESSOR_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails.PAYMENT_PROCESSOR_TYPE, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails.THRU_TIME }, true);
202    public static final UniqueKey<PaymentProcessorTypeDetails> PAYMENT_PROCESSOR_TYPE_DETAILS_PAYMENT_PROCESSOR_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails.PAYMENT_PROCESSOR_TYPE_NAME, com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails.THRU_TIME }, true);
203    public static final UniqueKey<PaymentProcessorTypeDetails> PAYMENT_PROCESSOR_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypeDetails.PaymentProcessorTypeDetails.PAYMENT_PROCESSOR_TYPE_DETAIL }, true);
204    public static final UniqueKey<PaymentProcessorTypes> PAYMENT_PROCESSOR_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypes.PaymentProcessorTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypes.PaymentProcessorTypes.ACTIVE_DETAIL }, true);
205    public static final UniqueKey<PaymentProcessorTypes> PAYMENT_PROCESSOR_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypes.PaymentProcessorTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypes.PaymentProcessorTypes.LAST_DETAIL }, true);
206    public static final UniqueKey<PaymentProcessorTypes> PAYMENT_PROCESSOR_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypes.PaymentProcessorTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.PaymentProcessorTypes.PaymentProcessorTypes.PAYMENT_PROCESSOR_TYPE }, true);
207    public static final UniqueKey<Payments> PAYMENTS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.Payments.Payments, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.Payments.Payments.ACTIVE_DETAIL }, true);
208    public static final UniqueKey<Payments> PAYMENTS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.Payments.Payments, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.payment.Payments.Payments.LAST_DETAIL }, true);
209    public static final UniqueKey<Payments> PAYMENTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.payment.Payments.Payments, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.payment.Payments.Payments.PAYMENT }, true);
210}