UNPKG

wallee

Version:
34 lines (33 loc) 1.37 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfAnalyticsQueryExecutionResponse = instanceOfAnalyticsQueryExecutionResponse; exports.AnalyticsQueryExecutionResponseFromJSON = AnalyticsQueryExecutionResponseFromJSON; exports.AnalyticsQueryExecutionResponseFromJSONTyped = AnalyticsQueryExecutionResponseFromJSONTyped; exports.AnalyticsQueryExecutionResponseToJSON = AnalyticsQueryExecutionResponseToJSON; exports.AnalyticsQueryExecutionResponseToJSONTyped = AnalyticsQueryExecutionResponseToJSONTyped; /** * Check if a given object implements the AnalyticsQueryExecutionResponse interface. */ function instanceOfAnalyticsQueryExecutionResponse(value) { return true; } function AnalyticsQueryExecutionResponseFromJSON(json) { return AnalyticsQueryExecutionResponseFromJSONTyped(json, false); } function AnalyticsQueryExecutionResponseFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'queryToken': json['queryToken'] == null ? undefined : json['queryToken'], }; } function AnalyticsQueryExecutionResponseToJSON(json) { return AnalyticsQueryExecutionResponseToJSONTyped(json, false); } function AnalyticsQueryExecutionResponseToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return {}; }