interface AppArticleInfo {
    id: string;
    title: undefined | string;
    body: ContentBodyInfo;
    excerpt: undefined | string;
    bannerUrl: undefined | string;
    createdDate: Date;
    updatedDate: Date;
    callToActionUrl: undefined | string;
    callToActionLabel: undefined | string;
    customData: unknown;
}

Properties

id: string
title: undefined | string
excerpt: undefined | string
bannerUrl: undefined | string
createdDate: Date
updatedDate: Date
callToActionUrl: undefined | string
callToActionLabel: undefined | string
customData: unknown