/** * 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 RegistryEventRequest */ export interface RegistryEventRequest { /** * * @type {string} * @memberof RegistryEventRequest */ id?: string; /** * * @type {string} * @memberof RegistryEventRequest */ addr?: string; /** * The host name (CNAME or IP with optional :port) of the registry where the event occurred. * @type {string} * @memberof RegistryEventRequest */ host?: string; /** * * @type {string} * @memberof RegistryEventRequest */ method?: string; /** * * @type {string} * @memberof RegistryEventRequest */ useragent?: string; } /** * Check if a given object implements the RegistryEventRequest interface. */ export declare function instanceOfRegistryEventRequest(value: object): value is RegistryEventRequest; export declare function RegistryEventRequestFromJSON(json: any): RegistryEventRequest; export declare function RegistryEventRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegistryEventRequest; export declare function RegistryEventRequestToJSON(json: any): RegistryEventRequest; export declare function RegistryEventRequestToJSONTyped(value?: RegistryEventRequest | null, ignoreDiscriminator?: boolean): any;