/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AssistantMessageAllOfContext */ export interface AssistantMessageAllOfContext { /** * * @type {Array} * @memberof AssistantMessageAllOfContext */ 'resourceIds'?: Array; /** * * @type {Array} * @memberof AssistantMessageAllOfContext */ 'snippets'?: Array; } /** * Check if a given object implements the AssistantMessageAllOfContext interface. */ export declare function instanceOfAssistantMessageAllOfContext(value: object): value is AssistantMessageAllOfContext; export declare function AssistantMessageAllOfContextFromJSON(json: any): AssistantMessageAllOfContext; export declare function AssistantMessageAllOfContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssistantMessageAllOfContext; export declare function AssistantMessageAllOfContextToJSON(json: any): AssistantMessageAllOfContext; export declare function AssistantMessageAllOfContextToJSONTyped(value?: AssistantMessageAllOfContext | null, ignoreDiscriminator?: boolean): any;