Skip to content

Commit

Permalink
typo fix (#149)
Browse files Browse the repository at this point in the history
* typo fix

* typo fix
  • Loading branch information
byasarcse authored Nov 4, 2024
1 parent 94f828c commit cb203d9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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

0 comments on commit cb203d9

Please sign in to comment.