/** * 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. */ /** * - LINK_VIEW_UNSPECIFIED: Return all links regardless of directory (default) * - LINK_VIEW_DIRECTORY: Return links scoped to a directory. * When directory_id is set, returns links in that directory. * When directory_id is empty, returns root-level links (no directory). * @export */ export declare const LinkView: { readonly LinkViewUnspecified: "LINK_VIEW_UNSPECIFIED"; readonly LinkViewDirectory: "LINK_VIEW_DIRECTORY"; }; export type LinkView = typeof LinkView[keyof typeof LinkView]; export declare function instanceOfLinkView(value: any): boolean; export declare function LinkViewFromJSON(json: any): LinkView; export declare function LinkViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkView; export declare function LinkViewToJSON(value?: LinkView | null): any; export declare function LinkViewToJSONTyped(value: any, ignoreDiscriminator: boolean): LinkView;