Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo fix #149

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Iyzipay.Samples/CardManagementPageSample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public async Task Should_Initialize_Card_Management_PageAsync()
Locale = Locale.TR.ToString()
};

CardManagementPageInitialize cardManagementPageInitialize = await CardManagementPageInitialize.Create(request, options);
CardManagementPageInitialize cardManagementPageInitialize = CardManagementPageInitialize.Create(request, options);
PrintResponse(cardManagementPageInitialize);

Assert.AreEqual(Locale.TR.ToString(), cardManagementPageInitialize.Locale);
Expand Down
2 changes: 1 addition & 1 deletion Iyzipay.Samples/IyziLinkSample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void Should_Create_IyziLink()
productBuyerInfo.BuyerCity = "Ankara";
productBuyerInfo.BuyerCountry = "Turkey";
productBuyerInfo.BuyerGsmNumber = "+905554443322";
productBuyerInfo.BuyerEmail = "[email protected]";
productBuyerInfo.BuyerEmailAddress = "[email protected]";
productBuyerInfo.BuyerAddress = "Turkey";
request.ProductBuyerInfo = productBuyerInfo;

Expand Down
2 changes: 1 addition & 1 deletion Iyzipay.Tests/Functional/SubscriptionCustomer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void Should_Update_Customer()
Locale = Locale.TR.ToString(),
Name = "upd-customer-name",
Surname = "upd-customer-surname",
Enail = "upd-customer-email",
Email = "upd-customer-email@iyzico.com",
GsmNumber = "+905555555555",
BillingAddress = new Address
{
Expand Down
2 changes: 1 addition & 1 deletion Iyzipay/Model/V2/Subscription/ProductResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public class ProductResource
public long? CreatedDate { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public List<Plan> PricingPlans { get; set; }
public List<PlanResource> PricingPlans { get; set; }
}
}
2 changes: 1 addition & 1 deletion Iyzipay/Request/ProductBuyerInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ProductBuyerInfo
public String BuyerCity { get; set; }
public String BuyerCountry { get; set; }
public String BuyerGsmNumber { get; set; }
public String BuyerEmail { get; set; }
public String BuyerEmailAddress { get; set; }
public String BuyerAddress { get; set; }
}
}
2 changes: 1 addition & 1 deletion Iyzipay/Request/V2/Subscription/UpdateCustomerRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class UpdateCustomerRequest : BaseRequestV2
public string CustomerReferenceCode { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public string Enail { get; set; }
public string Email { get; set; }
public string GsmNumber { get; set; }
public string IdentityNumber { get; set; }
public Address BillingAddress { get; set; }
Expand Down
Loading