mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
12 lines (11 loc) • 460 B
TypeScript
import { IPrivacySetting } from '../interfaces/i-customer-privacy';
export declare class PrivacySettingEntity implements IPrivacySetting {
orderNotifications: boolean;
pushNotificationsPromo: boolean;
emailNotificationsPromo: boolean;
whatsAppNotificationsPromo: boolean;
smsNotificationsPromo: boolean;
acceptPrivayAndPolicyTerm: boolean;
acceptPrivayAndPolicyTermAt: Date;
constructor(data?: Partial<PrivacySettingEntity>);
}