@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
19 lines (18 loc) • 415 B
TypeScript
import { IProperty } from "./property.response";
export interface IPaymentResponse extends Array<IPayment> {
}
export interface IPayment {
id: string;
propertyId: string;
userId: string;
amount: string;
type: string;
status: string;
reqAt: string;
paidAt: string;
referanceId: null;
isActive: boolean;
createdAt: string;
updatedAt: string;
property: IProperty;
}