Files
2026-01-23 21:40:16 -05:00

11 lines
359 B
TypeScript

export type MerchantAdminDto = {
id?: number; // Optional for create payloads
name: string;
avantlinkMid?: string | null;
feedUrl?: string | null;
offerFeedUrl?: string | null;
isActive?: boolean | null;
lastFullImportAt?: string | null; // Spring Instant/LocalDateTime serialized as string
lastOfferSyncAt?: string | null;
};