@documment/mmp.core
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.
26 lines (25 loc) • 705 B
TypeScript
import { IInstitution } from './institution.model';
import { Institution } from './institution.model';
export interface IExchequerAccount {
id: number;
institutionId: number;
institution: IInstitution;
clientProfileId: string;
providerTypeId: string;
providerProfileId: string;
isActive: boolean;
createdAt: string;
updatedAt: string;
}
export declare class ExchequerAccount implements IExchequerAccount {
id: number;
institutionId: number;
institution: Institution;
clientProfileId: string;
providerTypeId: string;
providerProfileId: string;
isActive: boolean;
createdAt: string;
updatedAt: string;
constructor(params?: any);
}