UNPKG

wallee

Version:
29 lines (28 loc) 916 B
/** * Check if a given object implements the PaymentAppConnectorDetailsCreate interface. */ export function instanceOfPaymentAppConnectorDetailsCreate(value) { return true; } export function PaymentAppConnectorDetailsCreateFromJSON(json) { return PaymentAppConnectorDetailsCreateFromJSONTyped(json, false); } export function PaymentAppConnectorDetailsCreateFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'externalId': json['externalId'] == null ? undefined : json['externalId'], }; } export function PaymentAppConnectorDetailsCreateToJSON(json) { return PaymentAppConnectorDetailsCreateToJSONTyped(json, false); } export function PaymentAppConnectorDetailsCreateToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'externalId': value['externalId'], }; }