Type Alias ProfileInsightsInput

Input to get dataset and feature metadata needed to create experiment versions

type ProfileInsightsInput = {
    data?: {
        attributes?: {
            dataSetId?: DataSetId;
            experimentType?: ExperimentType;
            include?: IncludeProfileInsightsField;
            shouldWait?: boolean;
            target?: string;
        };
        type?: "profile-insights";
    };
}
Index

Properties

Properties

data?: {
    attributes?: {
        dataSetId?: DataSetId;
        experimentType?: ExperimentType;
        include?: IncludeProfileInsightsField;
        shouldWait?: boolean;
        target?: string;
    };
    type?: "profile-insights";
}

Data wrapper for request input

Type Declaration

  • Optionalattributes?: {
        dataSetId?: DataSetId;
        experimentType?: ExperimentType;
        include?: IncludeProfileInsightsField;
        shouldWait?: boolean;
        target?: string;
    }

    The request body for this resource

    • OptionaldataSetId?: DataSetId

      The Qlik catalog dataset ID

    • OptionalexperimentType?: ExperimentType
    • Optionalinclude?: IncludeProfileInsightsField

      Fields to include in the response.

      Currently only supported value is dataSetProfile.

      When dataSetProfile is specified, the response includes the full dataset profile.

    • OptionalshouldWait?: boolean
    • Optionaltarget?: string
  • Optionaltype?: "profile-insights"