11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
/**
|
|
* a contract event describes any kind of sale
|
|
*/
|
|
export interface IEvent_Contract {
|
|
contractId: string;
|
|
date: number;
|
|
enddate: number;
|
|
product: string;
|
|
type: 'single purchase' | 'subscription' | 'canceled';
|
|
}
|