/** * 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 RegistryEventActor */ export interface RegistryEventActor { /** * The name of the user who initiated the event. * @type {string} * @memberof RegistryEventActor */ name?: string; } /** * Check if a given object implements the RegistryEventActor interface. */ export declare function instanceOfRegistryEventActor(value: object): value is RegistryEventActor; export declare function RegistryEventActorFromJSON(json: any): RegistryEventActor; export declare function RegistryEventActorFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegistryEventActor; export declare function RegistryEventActorToJSON(json: any): RegistryEventActor; export declare function RegistryEventActorToJSONTyped(value?: RegistryEventActor | null, ignoreDiscriminator?: boolean): any;