/** * 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 { FunnelStep } from './FunnelStep'; /** * GetStepFunnelResponse contains the ordered funnel. * @export * @interface GetStepFunnelResponse */ export interface GetStepFunnelResponse { /** * * @type {number} * @memberof GetStepFunnelResponse */ completionRate?: number; /** * * @type {string} * @memberof GetStepFunnelResponse */ entryVisits?: string; /** * * @type {Array} * @memberof GetStepFunnelResponse */ steps?: Array; } /** * Check if a given object implements the GetStepFunnelResponse interface. */ export declare function instanceOfGetStepFunnelResponse(value: object): value is GetStepFunnelResponse; export declare function GetStepFunnelResponseFromJSON(json: any): GetStepFunnelResponse; export declare function GetStepFunnelResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetStepFunnelResponse; export declare function GetStepFunnelResponseToJSON(json: any): GetStepFunnelResponse; export declare function GetStepFunnelResponseToJSONTyped(value?: GetStepFunnelResponse | null, ignoreDiscriminator?: boolean): any;