pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
31 lines (27 loc) • 806 B
text/typescript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema, stringEnum } from '../schema';
/**
* Enum for BalanceModelTypeEnum
*/
export enum BalanceModelTypeEnum {
ClosingAvailable = 'ClosingAvailable',
ClosingBooked = 'ClosingBooked',
Expected = 'Expected',
ForwardAvailable = 'ForwardAvailable',
Information = 'Information',
InterimAvailable = 'InterimAvailable',
InterimBooked = 'InterimBooked',
OpeningAvailable = 'OpeningAvailable',
OpeningBooked = 'OpeningBooked',
PreviouslyClosedBooked = 'PreviouslyClosedBooked',
}
/**
* Schema for BalanceModelTypeEnum
*/
export const balanceModelTypeEnumSchema: Schema<BalanceModelTypeEnum> = stringEnum(
BalanceModelTypeEnum
);