Skip to content

Commit

Permalink
Address more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Oct 4, 2018
1 parent 03d2e7b commit 3762630
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Stripe
{
using Newtonsoft.Json;

public class EphemeralKeyAssociatedObject : StripeEntity, IHasId
public class EphemeralKeyAssociatedObject : StripeEntity
{
[JsonProperty("id")]
public string Id { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/Stripe.net/Entities/Events/EventRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Stripe
{
using Newtonsoft.Json;

public class EventRequest : StripeEntity, IHasId
public class EventRequest : StripeEntity
{
[JsonProperty("id")]
public string Id { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/Stripe.net/Entities/Orders/ShippingMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Stripe
{
using Newtonsoft.Json;

public class ShippingMethod : StripeEntity, IHasId
public class ShippingMethod : StripeEntity
{
[JsonProperty("id")]
public string Id { get; set; }
Expand Down

0 comments on commit 3762630

Please sign in to comment.