/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface DeleteCustomInstructionsRequest { /** Determines which group graphs will have their custom instructions deleted. If no graphs are provided, the project-wide custom instructions will be affected. */ graphIds?: string[]; /** Unique identifier for the instructions to be deleted. If empty deletes all instructions. */ instructionNames?: string[]; /** Determines which user graphs will have their custom instructions deleted. If no users are provided, the project-wide custom instructions will be affected. */ userIds?: string[]; }