@grouparoo/core
Version:
The Grouparoo Core
25 lines (24 loc) • 670 B
TypeScript
import { Property } from "./Property";
import { Destination } from "./Destination";
import { Source } from "./Source";
import { CommonModel } from "../classes/commonModel";
export declare class Mapping extends CommonModel<Mapping> {
idPrefix(): string;
ownerId: string;
ownerType: string;
propertyId: string;
remoteKey: string;
destination: Destination;
source: Source;
property: Property;
uniqueIdentifier: string[];
apiData(): Promise<{
id: string;
ownerId: string;
ownerType: string;
propertyId: string;
remoteKey: string;
createdAt: number;
updatedAt: number;
}>;
}