import { NotificationStatusEnum } from './NotificationStatusEnum';
/** SMS notifications */
export interface NichandleSmsNotification {
    /** Receive notification for abuse reports */
    abuse: boolean;
    /** Creation date */
    creationDate: string;
    /** The phone number you want to receive notification on */
    phoneNumber: string;
    /** Status of your notification */
    status: NotificationStatusEnum;
    /** Last update date */
    updateDate?: string;
}
//# sourceMappingURL=NichandleSmsNotification.d.ts.map