@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
62 lines (61 loc) • 1.78 kB
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { FunnelGroupedDisplay } from "./FunnelGroupedDisplay";
import { FunnelWidgetDefinitionType } from "./FunnelWidgetDefinitionType";
import { ProductAnalyticsFunnelRequest } from "./ProductAnalyticsFunnelRequest";
import { WidgetTextAlign } from "./WidgetTextAlign";
import { WidgetTime } from "./WidgetTime";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* The user journey funnel visualization displays conversion funnels based on user journey data from Product Analytics.
*/
export declare class ProductAnalyticsFunnelWidgetDefinition {
/**
* The description of the widget.
*/
"description"?: string;
/**
* Display mode for grouped funnel results.
*/
"groupedDisplay"?: FunnelGroupedDisplay;
/**
* Request payload used to query items.
*/
"requests": Array<ProductAnalyticsFunnelRequest>;
/**
* Time setting for the widget.
*/
"time"?: WidgetTime;
/**
* The title of the widget.
*/
"title"?: string;
/**
* How to align the text on the widget.
*/
"titleAlign"?: WidgetTextAlign;
/**
* The size of the title.
*/
"titleSize"?: string;
/**
* Type of funnel widget.
*/
"type": FunnelWidgetDefinitionType;
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}