wallee
Version:
TypeScript/JavaScript client for wallee
19 lines (18 loc) • 633 B
JavaScript
/**
* Check if a given object implements the PaymentAppProcessorDetails interface.
*/
export function instanceOfPaymentAppProcessorDetails(value) {
return true;
}
export function PaymentAppProcessorDetailsFromJSON(json) {
return PaymentAppProcessorDetailsFromJSONTyped(json, false);
}
export function PaymentAppProcessorDetailsFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
export function PaymentAppProcessorDetailsToJSON(json) {
return PaymentAppProcessorDetailsToJSONTyped(json, false);
}
export function PaymentAppProcessorDetailsToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}