Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Apr 15, 2022
1 parent 77b9966 commit 75446be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// File generated from our OpenAPI spec
namespace Stripe
{
using System;
using Newtonsoft.Json;

/// <summary>
Expand All @@ -12,8 +13,16 @@ namespace Stripe
/// href="https://stripe.com/docs/payments/customer-balance/funding-instructions">Customer
/// Balance - Funding Instructions</a> to learn more.
/// </summary>
public class FundingInstructions : StripeEntity<FundingInstructions>, IHasObject
public class FundingInstructions : StripeEntity<FundingInstructions>, IHasObject, IHasId
{
[JsonIgnore]
public string Id
{
get { throw new InvalidOperationException(); }

set { throw new InvalidOperationException(); }
}

/// <summary>
/// String representing the object's type. Objects of the same type share the same value.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Configuration : StripeEntity<Configuration>, IHasId, IHasObject
[JsonProperty("tipping")]
public ConfigurationTipping Tipping { get; set; }

[JsonProperty("verifone_P400")]
[JsonProperty("verifone_p400")]
public ConfigurationVerifoneP400 VerifoneP400 { get; set; }
}
}

0 comments on commit 75446be

Please sign in to comment.