/** * 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. */ import type { WorkflowStep } from './WorkflowStep'; import type { Link } from './Link'; /** * * @export * @interface CreateLinkResponse */ export interface CreateLinkResponse { /** * * @type {Link} * @memberof CreateLinkResponse */ link?: Link; /** * The workflow steps that were created alongside the link. * * Every link is created with an entry step (event_action * EVENT_ACTION_LINK_VISIT, kind KIND_ENTRY) and a default exit step, already * connected to each other. They are returned here so a caller never has to * guess or look up the entry step's id before attaching its own steps to it. * @type {Array} * @memberof CreateLinkResponse */ workflowSteps?: Array; } /** * Check if a given object implements the CreateLinkResponse interface. */ export declare function instanceOfCreateLinkResponse(value: object): value is CreateLinkResponse; export declare function CreateLinkResponseFromJSON(json: any): CreateLinkResponse; export declare function CreateLinkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLinkResponse; export declare function CreateLinkResponseToJSON(json: any): CreateLinkResponse; export declare function CreateLinkResponseToJSONTyped(value?: CreateLinkResponse | null, ignoreDiscriminator?: boolean): any;