We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 754d5f7 + db7de4e commit 7e776a2Copy full SHA for 7e776a2
lib/apicontracts.js
@@ -9,8 +9,11 @@ class ANetApiRequest {
9
logger.debug('Enter ANetApiRequest constructor');
10
if(arguments.length == 1) {
11
if(('merchantAuthentication' in obj) && (obj.merchantAuthentication != null)) { this.setMerchantAuthentication(new MerchantAuthenticationType(obj.merchantAuthentication)); }
12
+ else { this.setMerchantAuthentication(null); }
13
if(('clientId' in obj) && (obj.clientId != null)) { this.setClientId(obj.clientId); }
14
+ else { this.setClientId(null); }
15
if(('refId' in obj) && (obj.refId != null)) { this.setRefId(obj.refId); }
16
+ else { this.setRefId(null); }
17
}
18
else {
19
this.setMerchantAuthentication(null);
0 commit comments