/** * 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. */ /** * FunnelBranch is one choice within a step, such as a button on a multi-link * page. * @export * @interface FunnelBranch */ export interface FunnelBranch { /** * * @type {string} * @memberof FunnelBranch */ label?: string; /** * * @type {number} * @memberof FunnelBranch */ shareOfStep?: number; /** * Journeys that took this branch. Zero means it was offered and nobody took * it, which is worth seeing rather than hiding. * @type {string} * @memberof FunnelBranch */ visits?: string; } /** * Check if a given object implements the FunnelBranch interface. */ export declare function instanceOfFunnelBranch(value: object): value is FunnelBranch; export declare function FunnelBranchFromJSON(json: any): FunnelBranch; export declare function FunnelBranchFromJSONTyped(json: any, ignoreDiscriminator: boolean): FunnelBranch; export declare function FunnelBranchToJSON(json: any): FunnelBranch; export declare function FunnelBranchToJSONTyped(value?: FunnelBranch | null, ignoreDiscriminator?: boolean): any;