export type notifications_InProductDeliveryTarget = { /** * Body is the optional supporting text shown beneath the title. */ body?: string; /** * CtaParams are key/value parameters used to build the notification's call-to-action link. */ ctaParams?: Record; /** * IsRead indicates whether the recipient has read the notification. Read-only. */ isRead?: boolean; /** * Title is the headline shown in the inbox. Required. */ title: string; };