/** * 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. */ /** * `NullValue` is a singleton enumeration to represent the null value for the * `Value` type union. * * The JSON representation for `NullValue` is JSON `null`. * * - NULL_VALUE: Null value. * @export */ export declare const ProtobufNullValue: { readonly NullValue: "NULL_VALUE"; }; export type ProtobufNullValue = typeof ProtobufNullValue[keyof typeof ProtobufNullValue]; export declare function instanceOfProtobufNullValue(value: any): boolean; export declare function ProtobufNullValueFromJSON(json: any): ProtobufNullValue; export declare function ProtobufNullValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProtobufNullValue; export declare function ProtobufNullValueToJSON(value?: ProtobufNullValue | null): any; export declare function ProtobufNullValueToJSONTyped(value: any, ignoreDiscriminator: boolean): ProtobufNullValue;