Skip to content

Commit

Permalink
Merge pull request #26 from iyzico/develop
Browse files Browse the repository at this point in the history
#23, #24, #25 issues solved
  • Loading branch information
sotuzun committed Apr 4, 2016
2 parents 10587e7 + 8e62585 commit 454ff38
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion iyzipay-dotnet/Model/BKMInitialize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ namespace Iyzipay.Model
public class BKMInitialize : IyzipayResource
{
public String HtmlContent { get; set; }

public String Token { get; set; }

public static BKMInitialize Create(CreateBKMInitializeRequest request, Options options)
{
BKMInitialize response = RestHttpClient.Create().Post<BKMInitialize>(options.BaseUrl + "/payment/iyzipos/bkm/initialize/ecom", GetHttpHeaders(request, options), request);
Expand Down
1 change: 1 addition & 0 deletions iyzipay-dotnet/Model/ConnectBKMInitialize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace Iyzipay.Model
public class ConnectBKMInitialize : IyzipayResource
{
public String HtmlContent { get; set; }
public String Token { get; set; }

public static ConnectBKMInitialize Create(CreateConnectBKMInitializeRequest request, Options options)
{
Expand Down
1 change: 1 addition & 0 deletions iyzipay-dotnet/Model/ConnectPayment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class ConnectPayment : IyzipayResource
public String CardUserKey { get; set; }
public String BinNumber { get; set; }
public String PaymentTransactionId { get; set; }
public String AuthCode { get; set; }
public String ConnectorName { get; set; }
}
}
2 changes: 1 addition & 1 deletion iyzipay-dotnet/Model/Payment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public class Payment : IyzipayResource
public String BinNumber { get; set; }
public String BasketId { get; set; }
[JsonProperty(PropertyName = "itemTransactions")]
private List<PaymentItem> PaymentItems { get; set; }
public List<PaymentItem> PaymentItems { get; set; }
}
}
2 changes: 1 addition & 1 deletion iyzipay-dotnet/iyzipay-dotnet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Iyzipay</id>
<version>1.0.4</version>
<version>1.0.5</version>
<title>Iyzipay</title>
<authors>Iyzico Ödeme Hizmetleri A.Ş.</authors>
<owners>iyzico</owners>
Expand Down
Binary file modified iyzipay-dotnet/lib/Iyzipay.dll
Binary file not shown.

0 comments on commit 454ff38

Please sign in to comment.