IAgentPatch
Home > @gooddata/sdk-model > IAgentPatch
IAgentPatch type
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Patch definition for an AI agent. All fields except id are optional.
Signature:
export type IAgentPatch = Partial<Omit<IAgent, "ref" | "createdAt" | "modifiedAt" | "createdBy" | "modifiedBy">> & Pick<IAgent, "ref">;
References: IAgent