25 lines
599 B
TypeScript
25 lines
599 B
TypeScript
export type MerchantAdminResponse = {
|
|
id: number;
|
|
name: string;
|
|
avantlinkMid: string | null;
|
|
feedUrl: string | null;
|
|
offerFeedUrl: string | null;
|
|
isActive: boolean;
|
|
lastFullImportAt: string | null;
|
|
lastOfferSyncAt: string | null;
|
|
};
|
|
|
|
export type MerchantAdminCreateRequest = {
|
|
name: string;
|
|
avantlinkMid?: string | null;
|
|
feedUrl?: string | null;
|
|
offerFeedUrl?: string | null;
|
|
isActive?: boolean | null;
|
|
};
|
|
|
|
export type MerchantAdminUpdateRequest = {
|
|
feedUrl?: string | null;
|
|
offerFeedUrl?: string | null;
|
|
isActive?: boolean | null;
|
|
};
|