wallee
Version:
TypeScript/JavaScript client for wallee
19 lines (18 loc) • 633 B
JavaScript
/**
* Check if a given object implements the PaymentAppConnectorDetails interface.
*/
export function instanceOfPaymentAppConnectorDetails(value) {
return true;
}
export function PaymentAppConnectorDetailsFromJSON(json) {
return PaymentAppConnectorDetailsFromJSONTyped(json, false);
}
export function PaymentAppConnectorDetailsFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
export function PaymentAppConnectorDetailsToJSON(json) {
return PaymentAppConnectorDetailsToJSONTyped(json, false);
}
export function PaymentAppConnectorDetailsToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}