/** * 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. */ /** * Allowed values for device actor routing conditions. * @export */ export declare const DeviceActorConditionValue: { readonly DeviceActorConditionValueUnspecified: "DEVICE_ACTOR_CONDITION_VALUE_UNSPECIFIED"; readonly DeviceActorConditionValueHuman: "DEVICE_ACTOR_CONDITION_VALUE_HUMAN"; readonly DeviceActorConditionValueBot: "DEVICE_ACTOR_CONDITION_VALUE_BOT"; readonly DeviceActorConditionValueAgent: "DEVICE_ACTOR_CONDITION_VALUE_AGENT"; readonly DeviceActorConditionValueUnknown: "DEVICE_ACTOR_CONDITION_VALUE_UNKNOWN"; }; export type DeviceActorConditionValue = typeof DeviceActorConditionValue[keyof typeof DeviceActorConditionValue]; export declare function instanceOfDeviceActorConditionValue(value: any): boolean; export declare function DeviceActorConditionValueFromJSON(json: any): DeviceActorConditionValue; export declare function DeviceActorConditionValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceActorConditionValue; export declare function DeviceActorConditionValueToJSON(value?: DeviceActorConditionValue | null): any; export declare function DeviceActorConditionValueToJSONTyped(value: any, ignoreDiscriminator: boolean): DeviceActorConditionValue;