From 48b1985d58ad336fb5060050d75cb1bcde5f140d Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 4 Nov 2020 14:03:13 -0800 Subject: [PATCH] Codegen for openapi cdc85cf --- .../Services/Accounts/AccountCompanyOptions.cs | 9 +++++++++ .../Services/Tokens/TokenAccountCompanyOptions.cs | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/src/Stripe.net/Services/Accounts/AccountCompanyOptions.cs b/src/Stripe.net/Services/Accounts/AccountCompanyOptions.cs index f8e7613fe8..5bdce5cc28 100644 --- a/src/Stripe.net/Services/Accounts/AccountCompanyOptions.cs +++ b/src/Stripe.net/Services/Accounts/AccountCompanyOptions.cs @@ -75,6 +75,15 @@ public class AccountCompanyOptions : INestedOptions [JsonProperty("phone")] public string Phone { get; set; } + /// + /// The identification number given to a company when it is registered or incorporated, if + /// distinct from the identification number used for filing taxes. (Examples are the CIN for + /// companies and LLP IN for partnerships in India, and the Company Registration Number in + /// Hong Kong). + /// + [JsonProperty("registration_number")] + public string RegistrationNumber { get; set; } + /// /// The category identifying the legal structure of the company or legal entity. See Business diff --git a/src/Stripe.net/Services/Tokens/TokenAccountCompanyOptions.cs b/src/Stripe.net/Services/Tokens/TokenAccountCompanyOptions.cs index 319caf5383..2a70e43f98 100644 --- a/src/Stripe.net/Services/Tokens/TokenAccountCompanyOptions.cs +++ b/src/Stripe.net/Services/Tokens/TokenAccountCompanyOptions.cs @@ -75,6 +75,15 @@ public class TokenAccountCompanyOptions : INestedOptions [JsonProperty("phone")] public string Phone { get; set; } + /// + /// The identification number given to a company when it is registered or incorporated, if + /// distinct from the identification number used for filing taxes. (Examples are the CIN for + /// companies and LLP IN for partnerships in India, and the Company Registration Number in + /// Hong Kong). + /// + [JsonProperty("registration_number")] + public string RegistrationNumber { get; set; } + /// /// The category identifying the legal structure of the company or legal entity. See Business