UNPKG

wallee

Version:
26 lines (25 loc) 1.1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfPaymentAppConnectorDetails = instanceOfPaymentAppConnectorDetails; exports.PaymentAppConnectorDetailsFromJSON = PaymentAppConnectorDetailsFromJSON; exports.PaymentAppConnectorDetailsFromJSONTyped = PaymentAppConnectorDetailsFromJSONTyped; exports.PaymentAppConnectorDetailsToJSON = PaymentAppConnectorDetailsToJSON; exports.PaymentAppConnectorDetailsToJSONTyped = PaymentAppConnectorDetailsToJSONTyped; /** * Check if a given object implements the PaymentAppConnectorDetails interface. */ function instanceOfPaymentAppConnectorDetails(value) { return true; } function PaymentAppConnectorDetailsFromJSON(json) { return PaymentAppConnectorDetailsFromJSONTyped(json, false); } function PaymentAppConnectorDetailsFromJSONTyped(json, ignoreDiscriminator) { return json; } function PaymentAppConnectorDetailsToJSON(json) { return PaymentAppConnectorDetailsToJSONTyped(json, false); } function PaymentAppConnectorDetailsToJSONTyped(value, ignoreDiscriminator = false) { return value; }