/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * name: "Copy of Contacts", * slug: "contacts-copy" * } */ export interface DuplicateSheetRequest { /** Custom name for the duplicated sheet. Defaults to "Copy of [original name]" */ name?: string; /** Custom slug for the duplicated sheet. Defaults to "[original slug]-copy-[timestamp]" */ slug?: string; }