/** * 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 LinksServiceUpdateBody */ export interface LinksServiceUpdateBody { /** * * @type {string} * @memberof LinksServiceUpdateBody */ directoryId?: string; /** * * @type {boolean} * @memberof LinksServiceUpdateBody */ directoryIdDelete?: boolean; /** * * @type {string} * @memberof LinksServiceUpdateBody */ fallbackDestination?: string; /** * * @type {string} * @memberof LinksServiceUpdateBody */ name?: string; /** * * @type {string} * @memberof LinksServiceUpdateBody */ pageThemeId?: string; /** * What the user is trying to achieve with this link, in one or two sentences. * Lead scoring weights the link from this, and the link's assistant * conversations read it as context, so it is restated whenever the workflow * changes shape. * @type {string} * @memberof LinksServiceUpdateBody */ purpose?: string; /** * * @type {string} * @memberof LinksServiceUpdateBody */ qrcodeTemplateId?: string; /** * * @type {boolean} * @memberof LinksServiceUpdateBody */ qrcodeTemplateIdDelete?: boolean; /** * Set the tags to associate with the link. * If a tag with the given name doesn't exist, it will be created. * @type {Array} * @memberof LinksServiceUpdateBody */ tags?: Array; /** * Delete all tags from the link * If true, all tags will be removed from the link. * @type {boolean} * @memberof LinksServiceUpdateBody */ tagsDelete?: boolean; } /** * Check if a given object implements the LinksServiceUpdateBody interface. */ export declare function instanceOfLinksServiceUpdateBody(value: object): value is LinksServiceUpdateBody; export declare function LinksServiceUpdateBodyFromJSON(json: any): LinksServiceUpdateBody; export declare function LinksServiceUpdateBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinksServiceUpdateBody; export declare function LinksServiceUpdateBodyToJSON(json: any): LinksServiceUpdateBody; export declare function LinksServiceUpdateBodyToJSONTyped(value?: LinksServiceUpdateBody | null, ignoreDiscriminator?: boolean): any;