export interface IFcmTokenMessage {
    companyId: string | null;
    containerId: string | null;
    createdAt: Date;
    customerId: string | null;
    deviceId: string | null;
    id: string;
    name: string | null;
    partnerId: string | null;
    updatedAt: Date;
    value: string;
}
