blob: bd46bfa5bbc27b3ad540c8c650ead84d631de912 [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.
*/
import { ShareAccountDividendData } from './shareAccountDividendData';
import { ShareAccountSummaryData } from './shareAccountSummaryData';
import { ShareAccountTransactionData } from './shareAccountTransactionData';
import { CurrencyData } from './currencyData';
import { ShareAccountStatusEnumData } from './shareAccountStatusEnumData';
import { SavingsAccountData } from './savingsAccountData';
import { ShareAccountChargeData } from './shareAccountChargeData';
import { ChargeData } from './chargeData';
import { EnumOptionData } from './enumOptionData';
import { ShareAccountApplicationTimelineData } from './shareAccountApplicationTimelineData';
export interface ShareAccountData {
accountNo?: string;
allowDividendCalculationForInactiveClients?: boolean;
applicationDate?: string;
chargeOptions?: Array<ChargeData>;
charges?: Array<ShareAccountChargeData>;
clientId?: number;
clientName?: string;
clientSavingsAccounts?: Array<SavingsAccountData>;
currency?: CurrencyData;
currentMarketPrice?: number;
dateFormat?: string;
defaultShares?: number;
dividends?: Array<ShareAccountDividendData>;
externalId?: string;
id?: number;
locale?: string;
lockPeriodTypeEnum?: EnumOptionData;
lockinPeriod?: number;
lockinPeriodFrequency?: number;
lockinPeriodFrequencyType?: number;
lockinPeriodFrequencyTypeOptions?: Array<EnumOptionData>;
minimumActivePeriod?: number;
minimumActivePeriodFrequencyType?: number;
minimumActivePeriodFrequencyTypeOptions?: Array<EnumOptionData>;
minimumActivePeriodTypeEnum?: EnumOptionData;
productId?: number;
productName?: string;
productOptions?: Array<object>;
purchasedShares?: Array<ShareAccountTransactionData>;
requestedShares?: number;
rowIndex?: number;
savingsAccountId?: number;
savingsAccountNumber?: string;
status?: ShareAccountStatusEnumData;
submittedDate?: string;
summary?: ShareAccountSummaryData;
timeline?: ShareAccountApplicationTimelineData;
}