/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * name: "Assign mapping rule", * type: "assign", * config: {}, * metadata: {} * } */ export interface MappingRuleConfig { /** Name of the mapping rule */ name: string; type: string; config?: any; /** Time the mapping rule was last updated */ acceptedAt?: Date; /** User ID of the contributor of the mapping rule */ acceptedBy?: Flatfile.ActorId; /** Metadata of the mapping rule */ metadata?: any; }