UNPKG

wallee

Version:
26 lines (25 loc) 1.1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfPaymentAppProcessorDetails = instanceOfPaymentAppProcessorDetails; exports.PaymentAppProcessorDetailsFromJSON = PaymentAppProcessorDetailsFromJSON; exports.PaymentAppProcessorDetailsFromJSONTyped = PaymentAppProcessorDetailsFromJSONTyped; exports.PaymentAppProcessorDetailsToJSON = PaymentAppProcessorDetailsToJSON; exports.PaymentAppProcessorDetailsToJSONTyped = PaymentAppProcessorDetailsToJSONTyped; /** * Check if a given object implements the PaymentAppProcessorDetails interface. */ function instanceOfPaymentAppProcessorDetails(value) { return true; } function PaymentAppProcessorDetailsFromJSON(json) { return PaymentAppProcessorDetailsFromJSONTyped(json, false); } function PaymentAppProcessorDetailsFromJSONTyped(json, ignoreDiscriminator) { return json; } function PaymentAppProcessorDetailsToJSON(json) { return PaymentAppProcessorDetailsToJSONTyped(json, false); } function PaymentAppProcessorDetailsToJSONTyped(value, ignoreDiscriminator = false) { return value; }