/** * 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. */ /** * * @export * @interface CustomDomainsServiceUpdateBody */ export interface CustomDomainsServiceUpdateBody { /** * URL where visitors are redirected when accessing your custom domain without a path (e.g., qr.yourdomain.com). This redirect is not tracked and serves purely for white-label purposes—preventing visitors from seeing linkbreakers.com branding. Leave empty to redirect to linkbreakers.com by default. * @type {string} * @memberof CustomDomainsServiceUpdateBody */ rootDestination?: string; } /** * Check if a given object implements the CustomDomainsServiceUpdateBody interface. */ export declare function instanceOfCustomDomainsServiceUpdateBody(value: object): value is CustomDomainsServiceUpdateBody; export declare function CustomDomainsServiceUpdateBodyFromJSON(json: any): CustomDomainsServiceUpdateBody; export declare function CustomDomainsServiceUpdateBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomDomainsServiceUpdateBody; export declare function CustomDomainsServiceUpdateBodyToJSON(json: any): CustomDomainsServiceUpdateBody; export declare function CustomDomainsServiceUpdateBodyToJSONTyped(value?: CustomDomainsServiceUpdateBody | null, ignoreDiscriminator?: boolean): any;