/** * 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. */ /** * * @export * @interface RegistryEventSource */ export interface RegistryEventSource { /** * * @type {string} * @memberof RegistryEventSource */ addr?: string; /** * * @type {string} * @memberof RegistryEventSource */ instanceID?: string; } /** * Check if a given object implements the RegistryEventSource interface. */ export declare function instanceOfRegistryEventSource(value: object): value is RegistryEventSource; export declare function RegistryEventSourceFromJSON(json: any): RegistryEventSource; export declare function RegistryEventSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegistryEventSource; export declare function RegistryEventSourceToJSON(json: any): RegistryEventSource; export declare function RegistryEventSourceToJSONTyped(value?: RegistryEventSource | null, ignoreDiscriminator?: boolean): any;