TypeAlias.CreateImportMapper
type CreateImportMapper = {
application: string;
cronFrequency?: string | null;
csvHasHeader?: boolean | null;
name: string;
rows: {
destination: string;
source: string;
type: "path" | "const" | "column";
}[];
type: "url" | "file";
url?: string | null;
};
Body shape for creating an import mapper.
Type Declaration
| Name | Type |
|---|---|
application | string |
cronFrequency? | string |
csvHasHeader? | boolean |
name | string |
rows | { destination: string; source: string; type: "path" |
type | "url" |
url? | string |