import { CustomerInterface } from './customer.interface'; export interface GetOptionsResponseBookCodesEntryInterface { key?: string; value?: string; } export interface GetOptionsResponseContractTypesEntryInterface { key?: number; value?: string; } export interface CreateCustomerRequestInterface { customer?: CustomerInterface; } export interface CreateCustomerResponseInterface { internalCustomerId?: string; } export interface GetOptionsResponseEditionsEntryInterface { key?: string; value?: string; } export interface GetOptionsRequestInterface { } export interface GetOptionsResponseInterface { bankNames?: string[]; bankAccountTypes?: string[]; paySources?: { [key: string]: string; }; payMethods?: { [key: string]: string; }; bookCodes?: { [key: string]: string; }; editions?: { [key: string]: string; }; contractTypes?: { [key: string]: string; }; } export interface GetOptionsResponsePayMethodsEntryInterface { key?: number; value?: string; } export interface GetOptionsResponsePaySourcesEntryInterface { key?: number; value?: string; }