interface Merch {
    _id: string;
    condition: string;
    createdAt: string;
    createdAtTimestamp: number;
    duration?: any;
    from: string;
    imageHref: string;
    isTest: boolean;
    message: string;
    payload: any;
    priority: number;
    product: string;
    repeat: boolean;
    to: To;
    type: undefined;
}

Properties

_id: string
condition: string
createdAt: string
createdAtTimestamp: number
duration?: any
from: string
imageHref: string
isTest: boolean
message: string
payload: any
priority: number
product: string
repeat: boolean
to: To
type: undefined