Skip to content

Commit

Permalink
Add support for location on ConnectionToken
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed May 30, 2019
1 parent 20703cc commit 64d3a9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ public class ConnectionToken : StripeEntity, IHasObject
[JsonProperty("object")]
public string Object { get; set; }

[JsonProperty("location")]
public string Locaation { get; set; }

[JsonProperty("secret")]
public string Secret { get; set; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ namespace Stripe.Terminal

public class ConnectionTokenCreateOptions : BaseOptions
{
[JsonProperty("location")]
public string Location { get; set; }

[Obsolete("This feature has been deprecated and should not be used moving forward.")]
[JsonProperty("operator_account")]
public string OperatorAccount { get; set; }
Expand Down

0 comments on commit 64d3a9e

Please sign in to comment.