/** * * @export * @interface AnalyticsQueryExecutionResponse */ export interface AnalyticsQueryExecutionResponse { /** * The unique query token associated with a submitted analytics query execution. This token can be used to check the execution status of the query. * @type {string} * @memberof AnalyticsQueryExecutionResponse */ readonly queryToken?: string; } /** * Check if a given object implements the AnalyticsQueryExecutionResponse interface. */ export declare function instanceOfAnalyticsQueryExecutionResponse(value: object): value is AnalyticsQueryExecutionResponse; export declare function AnalyticsQueryExecutionResponseFromJSON(json: any): AnalyticsQueryExecutionResponse; export declare function AnalyticsQueryExecutionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsQueryExecutionResponse; export declare function AnalyticsQueryExecutionResponseToJSON(json: any): AnalyticsQueryExecutionResponse; export declare function AnalyticsQueryExecutionResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;