export type AptlyNotificationTrigger = AptlyNotificationTriggerSchema<string, string>;
export interface AptlyNotificationTriggerSchema<ID, DATE> {
    _id: ID;
    _type: string;
    period: ID;
    time: DATE;
    sent: boolean;
    sentTime: DATE;
}
