/** * 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. */ /** * - VISITOR_SORT_FIELD_UNSPECIFIED: Sort field not specified (defaults to created_at) * - VISITOR_SORT_FIELD_CREATED_AT: Sort by the date the visitor was first seen * - VISITOR_SORT_FIELD_VISIT_COUNT: Sort by total number of visits (events) * - VISITOR_SORT_FIELD_DEVICE_COUNT: Sort by number of attributed devices * - VISITOR_SORT_FIELD_QRCODE_COUNT: Sort by number of distinct QR codes interacted with * @export */ export declare const VisitorSortField: { readonly VisitorSortFieldUnspecified: "VISITOR_SORT_FIELD_UNSPECIFIED"; readonly VisitorSortFieldCreatedAt: "VISITOR_SORT_FIELD_CREATED_AT"; readonly VisitorSortFieldVisitCount: "VISITOR_SORT_FIELD_VISIT_COUNT"; readonly VisitorSortFieldDeviceCount: "VISITOR_SORT_FIELD_DEVICE_COUNT"; readonly VisitorSortFieldQrcodeCount: "VISITOR_SORT_FIELD_QRCODE_COUNT"; }; export type VisitorSortField = typeof VisitorSortField[keyof typeof VisitorSortField]; export declare function instanceOfVisitorSortField(value: any): boolean; export declare function VisitorSortFieldFromJSON(json: any): VisitorSortField; export declare function VisitorSortFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorSortField; export declare function VisitorSortFieldToJSON(value?: VisitorSortField | null): any; export declare function VisitorSortFieldToJSONTyped(value: any, ignoreDiscriminator: boolean): VisitorSortField;