/** * 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 { DockerRegistryEvent } from './DockerRegistryEvent'; /** * List of Registry Events * @export * @interface DockerRegistryEventList */ export interface DockerRegistryEventList { /** * A list of events that occurred in a docker registry * @type {Array} * @memberof DockerRegistryEventList */ events?: Array; } /** * Check if a given object implements the DockerRegistryEventList interface. */ export declare function instanceOfDockerRegistryEventList(value: object): value is DockerRegistryEventList; export declare function DockerRegistryEventListFromJSON(json: any): DockerRegistryEventList; export declare function DockerRegistryEventListFromJSONTyped(json: any, ignoreDiscriminator: boolean): DockerRegistryEventList; export declare function DockerRegistryEventListToJSON(json: any): DockerRegistryEventList; export declare function DockerRegistryEventListToJSONTyped(value?: DockerRegistryEventList | null, ignoreDiscriminator?: boolean): any;