Type Alias ProfileInsightsInput

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

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

Properties

Properties

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

Data wrapper for request input

Type declaration

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

    The request body for this resource

    • OptionaldataSetId?: DataSetId

      The Qlik catalog dataset ID

    • OptionalexperimentType?: ExperimentType

      Experiment type

    • OptionalshouldWait?: boolean

      Whether the server should or client should manage polling/waiting

    • Optionaltarget?: string

      Optional selected target provided on subsequent requests

  • Optionaltype?: "profile-insights"