import { IEventType } from "./event_type"; /** An event that occurs when the lease expires. */ export interface IEventTypeLeaseExpiry extends IEventType { /** Gets or sets gets the unique identifier for this entity. See {@link IId}. */ id: string; /** * @inheritdoc */ name: string; } //# sourceMappingURL=event_type_lease_expiry.d.ts.map