@getopenpay/client
Version:
OpenPay API TypeScript SDK
39 lines (38 loc) • 1.05 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* 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.instanceOfValue = instanceOfValue;
exports.ValueFromJSON = ValueFromJSON;
exports.ValueFromJSONTyped = ValueFromJSONTyped;
exports.ValueToJSON = ValueToJSON;
exports.ValueToJSONTyped = ValueToJSONTyped;
/**
* Check if a given object implements the Value interface.
*/
function instanceOfValue(value) {
return true;
}
function ValueFromJSON(json) {
return ValueFromJSONTyped(json, false);
}
function ValueFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function ValueToJSON(json) {
return ValueToJSONTyped(json, false);
}
function ValueToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}