/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Request to bind a SearchConfiguration to an entity. The caller must have edit permission on the entity. Replaces any existing binding for the entity. * @export * @interface BindSearchConfigToEntityRequest */ export interface BindSearchConfigToEntityRequest { /** * The ID of the entity to bind the search configuration to. * @type {string} * @memberof BindSearchConfigToEntityRequest */ entityId?: string; /** * The ID of the SearchConfiguration to bind. * @type {string} * @memberof BindSearchConfigToEntityRequest */ searchConfigurationId?: string; } /** * Check if a given object implements the BindSearchConfigToEntityRequest interface. */ export declare function instanceOfBindSearchConfigToEntityRequest(value: object): value is BindSearchConfigToEntityRequest; export declare function BindSearchConfigToEntityRequestFromJSON(json: any): BindSearchConfigToEntityRequest; export declare function BindSearchConfigToEntityRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BindSearchConfigToEntityRequest; export declare function BindSearchConfigToEntityRequestToJSON(json: any): BindSearchConfigToEntityRequest; export declare function BindSearchConfigToEntityRequestToJSONTyped(value?: BindSearchConfigToEntityRequest | null, ignoreDiscriminator?: boolean): any;