/** * 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. */ /** * The model object represents a topic of subscription. * @export * @interface Topic */ export interface Topic { /** * The ID of the object that could be subscribed * @type {string} * @memberof Topic */ objectId?: string; /** * The types of object that can be subscribed. * @type {string} * @memberof Topic */ objectType?: TopicObjectTypeEnum; } /** * @export */ export declare const TopicObjectTypeEnum: { readonly FORUM: "FORUM"; readonly THREAD: "THREAD"; readonly DATA_ACCESS_SUBMISSION: "DATA_ACCESS_SUBMISSION"; readonly DATA_ACCESS_SUBMISSION_STATUS: "DATA_ACCESS_SUBMISSION_STATUS"; }; export type TopicObjectTypeEnum = typeof TopicObjectTypeEnum[keyof typeof TopicObjectTypeEnum]; /** * Check if a given object implements the Topic interface. */ export declare function instanceOfTopic(value: object): value is Topic; export declare function TopicFromJSON(json: any): Topic; export declare function TopicFromJSONTyped(json: any, ignoreDiscriminator: boolean): Topic; export declare function TopicToJSON(json: any): Topic; export declare function TopicToJSONTyped(value?: Topic | null, ignoreDiscriminator?: boolean): any;