/** * 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. */ import type { AccessControlList } from './AccessControlList'; import type { Entity } from './Entity'; import type { V2Annotations } from './V2Annotations'; /** * Used to create Entity and associated metadata in a single transaction * @export * @interface EntityBundleCreate */ export interface EntityBundleCreate { /** * * @type {Entity} * @memberof EntityBundleCreate */ entity?: Entity; /** * * @type {V2Annotations} * @memberof EntityBundleCreate */ annotations?: V2Annotations; /** * * @type {AccessControlList} * @memberof EntityBundleCreate */ accessControlList?: AccessControlList; } /** * Check if a given object implements the EntityBundleCreate interface. */ export declare function instanceOfEntityBundleCreate(value: object): value is EntityBundleCreate; export declare function EntityBundleCreateFromJSON(json: any): EntityBundleCreate; export declare function EntityBundleCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityBundleCreate; export declare function EntityBundleCreateToJSON(json: any): EntityBundleCreate; export declare function EntityBundleCreateToJSONTyped(value?: EntityBundleCreate | null, ignoreDiscriminator?: boolean): any;