wallee
Version:
TypeScript/JavaScript client for wallee
27 lines (26 loc) • 860 B
JavaScript
/**
* Check if a given object implements the AnalyticsQueryExecutionResponse interface.
*/
export function instanceOfAnalyticsQueryExecutionResponse(value) {
return true;
}
export function AnalyticsQueryExecutionResponseFromJSON(json) {
return AnalyticsQueryExecutionResponseFromJSONTyped(json, false);
}
export function AnalyticsQueryExecutionResponseFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'queryToken': json['queryToken'] == null ? undefined : json['queryToken'],
};
}
export function AnalyticsQueryExecutionResponseToJSON(json) {
return AnalyticsQueryExecutionResponseToJSONTyped(json, false);
}
export function AnalyticsQueryExecutionResponseToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {};
}