/** * 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. */ /** * GetStepFunnelRequest asks how far visitors get through a link's workflow. * @export * @interface GetStepFunnelRequest */ export interface GetStepFunnelRequest { /** * * @type {Date} * @memberof GetStepFunnelRequest */ endDate?: Date; /** * * @type {string} * @memberof GetStepFunnelRequest */ linkId?: string; /** * * @type {Date} * @memberof GetStepFunnelRequest */ startDate?: Date; } /** * Check if a given object implements the GetStepFunnelRequest interface. */ export declare function instanceOfGetStepFunnelRequest(value: object): value is GetStepFunnelRequest; export declare function GetStepFunnelRequestFromJSON(json: any): GetStepFunnelRequest; export declare function GetStepFunnelRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetStepFunnelRequest; export declare function GetStepFunnelRequestToJSON(json: any): GetStepFunnelRequest; export declare function GetStepFunnelRequestToJSONTyped(value?: GetStepFunnelRequest | null, ignoreDiscriminator?: boolean): any;