add client_ip to StripeTokenResponse

See https://stripe.com/docs/api#token_object
This commit is contained in:
André Werlang
2017-01-26 12:48:39 -02:00
committed by GitHub
parent 6f0270ef4c
commit 0bf5b987e4

1
stripe/index.d.ts vendored
View File

@@ -36,6 +36,7 @@ interface StripeTokenData {
interface StripeTokenResponse {
id: string;
card: StripeCardData;
client_ip: string;
created: number;
livemode: boolean;
object: string;