/** * 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 an Entity to a JSON schema. * @export * @interface BindSchemaToEntityRequest */ export interface BindSchemaToEntityRequest { /** * The ID of the the entity. * @type {string} * @memberof BindSchemaToEntityRequest */ entityId?: string; /** * The $id of the JSON schema to bind to the entity. Note: If the $id includes a semantic version then entity will be bound to that specific version. If the $id excludes the semantic version then the entity will be bound to the latest version of that schema. * @type {string} * @memberof BindSchemaToEntityRequest */ schema$id?: string; /** * When 'true', Synapse will automatically, calculate the derived annotations for the Entities bound to this schema. Defaults to 'false'. * @type {boolean} * @memberof BindSchemaToEntityRequest */ enableDerivedAnnotations?: boolean; } /** * Check if a given object implements the BindSchemaToEntityRequest interface. */ export declare function instanceOfBindSchemaToEntityRequest(value: object): value is BindSchemaToEntityRequest; export declare function BindSchemaToEntityRequestFromJSON(json: any): BindSchemaToEntityRequest; export declare function BindSchemaToEntityRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BindSchemaToEntityRequest; export declare function BindSchemaToEntityRequestToJSON(json: any): BindSchemaToEntityRequest; export declare function BindSchemaToEntityRequestToJSONTyped(value?: BindSchemaToEntityRequest | null, ignoreDiscriminator?: boolean): any;