/** * 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. */ /** * PreferredLinkType indicates the dominant link creation pattern for a workspace. * * - PREFERRED_LINK_TYPE_URL: Default when no links exist yet — treated as URL * - PREFERRED_LINK_TYPE_CONTACT_CARD: Workspace primarily creates contact card links * - PREFERRED_LINK_TYPE_SOCIAL_LINKS_PAGE: Workspace primarily creates social links pages * - PREFERRED_LINK_TYPE_MIX: Workspace uses a mix of different link types * @export */ export declare const PreferredLinkType: { readonly PreferredLinkTypeUrl: "PREFERRED_LINK_TYPE_URL"; readonly PreferredLinkTypeContactCard: "PREFERRED_LINK_TYPE_CONTACT_CARD"; readonly PreferredLinkTypeSocialLinksPage: "PREFERRED_LINK_TYPE_SOCIAL_LINKS_PAGE"; readonly PreferredLinkTypeMix: "PREFERRED_LINK_TYPE_MIX"; }; export type PreferredLinkType = typeof PreferredLinkType[keyof typeof PreferredLinkType]; export declare function instanceOfPreferredLinkType(value: any): boolean; export declare function PreferredLinkTypeFromJSON(json: any): PreferredLinkType; export declare function PreferredLinkTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PreferredLinkType; export declare function PreferredLinkTypeToJSON(value?: PreferredLinkType | null): any; export declare function PreferredLinkTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): PreferredLinkType;