fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
39 lines • 1.41 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* fastcomments
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.instanceOfQueryPredicateValue = instanceOfQueryPredicateValue;
exports.QueryPredicateValueFromJSON = QueryPredicateValueFromJSON;
exports.QueryPredicateValueFromJSONTyped = QueryPredicateValueFromJSONTyped;
exports.QueryPredicateValueToJSON = QueryPredicateValueToJSON;
exports.QueryPredicateValueToJSONTyped = QueryPredicateValueToJSONTyped;
/**
* Check if a given object implements the QueryPredicateValue interface.
*/
function instanceOfQueryPredicateValue(value) {
return true;
}
function QueryPredicateValueFromJSON(json) {
return QueryPredicateValueFromJSONTyped(json, false);
}
function QueryPredicateValueFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function QueryPredicateValueToJSON(json) {
return QueryPredicateValueToJSONTyped(json, false);
}
function QueryPredicateValueToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}
//# sourceMappingURL=QueryPredicateValue.js.map