Skip to content

Commit 5588e79

Browse files
committed
Add support for internal properties on the Card resource
1 parent 59d7fe4 commit 5588e79

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Stripe.net/Entities/StripeCard.cs

+10
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,15 @@ internal object InternalRecipient
128128

129129
[JsonProperty("tokenization_method")]
130130
public string TokenizationMethod { get; set; }
131+
132+
// The properties below are for internal use only and not returned as part of standard API requests.
133+
[JsonProperty("description")]
134+
public string Description { get; set; }
135+
136+
[JsonProperty("iin")]
137+
public string IIN { get; set; }
138+
139+
[JsonProperty("issuer")]
140+
public string Issuer { get; set; }
131141
}
132142
}

0 commit comments

Comments
 (0)