UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

16 lines (15 loc) 708 B
import type { GetExtendedListAllOfCampaignStats } from './GetExtendedListAllOfCampaignStats.js'; export interface GetExtendedList { id: number; name: string; totalBlacklisted: number; totalSubscribers: number; folderId: number; createdAt: Date; campaignStats?: Array<GetExtendedListAllOfCampaignStats>; dynamicList?: boolean; } export declare function instanceOfGetExtendedList(value: object): boolean; export declare function GetExtendedListFromJSON(json: any): GetExtendedList; export declare function GetExtendedListFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetExtendedList; export declare function GetExtendedListToJSON(value?: GetExtendedList | null): any;