UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

7 lines (6 loc) 361 B
import { AiAgentReference } from './aiAgentReference'; import { AiAgentAsk } from './aiAgentAsk'; import { SerializedData } from '../serialization/json'; export type AiAskAgent = AiAgentReference | AiAgentAsk; export declare function serializeAiAskAgent(val: any): SerializedData; export declare function deserializeAiAskAgent(val: SerializedData): AiAskAgent;