Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Oct 3, 2018
1 parent 04415cc commit 8f016e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Stripe.net/Entities/Discounts/Discount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Stripe
using Newtonsoft.Json;
using Stripe.Infrastructure;

public class Discount : StripeEntityWithIdAndObject
public class Discount : StripeEntityWithObject
{
[JsonProperty("coupon")]
public Coupon Coupon { get; set; }
Expand Down
5 changes: 1 addition & 4 deletions src/Stripe.net/Entities/Recipients/RecipientActiveAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@ namespace Stripe
using System.Collections.Generic;
using Newtonsoft.Json;

public class RecipientActiveAccount : StripeEntityWithId
public class RecipientActiveAccount : StripeEntityWithIdAndObject
{
[JsonProperty("object")]
public string Object { get; set; }

[JsonProperty("bank_name")]
public string BankName { get; set; }

Expand Down

0 comments on commit 8f016e4

Please sign in to comment.