blob: 3a9a35b3d343eae6190d3ac89e1a07b0b88b4049 [file]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface SavingsAccountTransactionEnumData {
accrual?: boolean;
amountHold?: boolean;
amountRelease?: boolean;
annualFee?: boolean;
approveTransfer?: boolean;
chargeTransaction?: boolean;
code?: string;
credit?: boolean;
debit?: boolean;
deposit?: boolean;
depositOrWithdrawal?: boolean;
dividendPayout?: boolean;
entryType?: SavingsAccountTransactionEnumData.EntryTypeEnum;
escheat?: boolean;
feeDeduction?: boolean;
id?: number;
incomeFromInterest?: boolean;
initiateTransfer?: boolean;
interestPosting?: boolean;
overDraftInterestPosting?: boolean;
overdraftFee?: boolean;
overdraftInterest?: boolean;
payCharge?: boolean;
rejectTransfer?: boolean;
transactionTypeEnum?: SavingsAccountTransactionEnumData.TransactionTypeEnumEnum;
value?: string;
withdrawTransfer?: boolean;
withdrawal?: boolean;
withdrawalFee?: boolean;
withholdTax?: boolean;
writtenoff?: boolean;
}
export namespace SavingsAccountTransactionEnumData {
export const EntryTypeEnum = {
Credit: 'CREDIT',
Debit: 'DEBIT'
} as const;
export type EntryTypeEnum = typeof EntryTypeEnum[keyof typeof EntryTypeEnum];
export const TransactionTypeEnumEnum = {
Invalid: 'INVALID',
Deposit: 'DEPOSIT',
Withdrawal: 'WITHDRAWAL',
InterestPosting: 'INTEREST_POSTING',
WithdrawalFee: 'WITHDRAWAL_FEE',
AnnualFee: 'ANNUAL_FEE',
WaiveCharges: 'WAIVE_CHARGES',
PayCharge: 'PAY_CHARGE',
DividendPayout: 'DIVIDEND_PAYOUT',
Accrual: 'ACCRUAL',
InitiateTransfer: 'INITIATE_TRANSFER',
ApproveTransfer: 'APPROVE_TRANSFER',
WithdrawTransfer: 'WITHDRAW_TRANSFER',
RejectTransfer: 'REJECT_TRANSFER',
WrittenOff: 'WRITTEN_OFF',
OverdraftInterest: 'OVERDRAFT_INTEREST',
WithholdTax: 'WITHHOLD_TAX',
Escheat: 'ESCHEAT',
AmountHold: 'AMOUNT_HOLD',
AmountRelease: 'AMOUNT_RELEASE'
} as const;
export type TransactionTypeEnumEnum = typeof TransactionTypeEnumEnum[keyof typeof TransactionTypeEnumEnum];
}