/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 ProtobufAny */ export interface ProtobufAny { [key: string]: any | any; /** * * @type {string} * @memberof ProtobufAny */ type?: string; } /** * Check if a given object implements the ProtobufAny interface. */ export declare function instanceOfProtobufAny(value: object): value is ProtobufAny; export declare function ProtobufAnyFromJSON(json: any): ProtobufAny; export declare function ProtobufAnyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProtobufAny; export declare function ProtobufAnyToJSON(json: any): ProtobufAny; export declare function ProtobufAnyToJSONTyped(value?: ProtobufAny | null, ignoreDiscriminator?: boolean): any;