Skip to content

Commit 03e1075

Browse files
author
Sunny Raj Rathod
authored
Merge pull request AuthorizeNet#220 from vijayabraj/master
MarketType should not be hardcoded inside transRetailInfoType. Fixing issue AuthorizeNet#213.
2 parents 597f64b + ea47934 commit 03e1075

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ public static void transRetailInfoType(transRetailInfoType argument)
242242
{
243243
if (null != argument)
244244
{
245-
argument.marketType = "2";
245+
//marketType should not be assigned here
246+
//argument.marketType = "2";
246247
}
247248
}
248249
public static void ccAuthenticationType(ccAuthenticationType argument)

0 commit comments

Comments
 (0)