@documment/mmp.core
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.
49 lines (48 loc) • 1.2 kB
TypeScript
import { IExchequerAudit } from './exchequer-audit.model';
import { ExchequerAudit } from './exchequer-audit.model';
import { IGoal } from './goal.model';
import { Goal } from './goal.model';
export interface IExchequerEvent {
id: number;
goalId: number;
goal: IGoal;
groupedAt: string;
submittedAt: string;
eventType: string;
amount: string;
audit: IExchequerAudit;
state: string;
reason: string;
goalUuid: string;
isCandidate: boolean;
isCreated: boolean;
isPending: boolean;
isSettled: boolean;
isFailed: boolean;
createdAt: string;
updatedAt: string;
}
export declare class ExchequerEvent implements IExchequerEvent {
id: number;
goalId: number;
goal: Goal;
groupedAt: string;
submittedAt: string;
postedAt: string;
evaluatedAt: string;
eventType: string;
amount: string;
audit: ExchequerAudit;
checkNumber: string;
state: string;
reason: string;
goalUuid: string;
isCandidate: boolean;
isCreated: boolean;
isPending: boolean;
isSettled: boolean;
isFailed: boolean;
createdAt: string;
updatedAt: string;
constructor(params?: any);
}