diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index c1a9918d..a8c020bf 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v1665 \ No newline at end of file +v1666 \ No newline at end of file diff --git a/lib/stripe/resources/account.rb b/lib/stripe/resources/account.rb index 5e09c5b4..7b16c9dc 100644 --- a/lib/stripe/resources/account.rb +++ b/lib/stripe/resources/account.rb @@ -71,6 +71,8 @@ module Stripe attr_reader :estimated_worker_count # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. attr_reader :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + attr_reader :minority_owned_business_designation # Attribute for field monthly_estimated_revenue attr_reader :monthly_estimated_revenue # The customer-facing business name. @@ -769,6 +771,8 @@ module Stripe attr_accessor :estimated_worker_count # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. attr_accessor :monthly_estimated_revenue # The customer-facing business name. @@ -790,6 +794,7 @@ module Stripe annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -802,6 +807,7 @@ module Stripe @annual_revenue = annual_revenue @estimated_worker_count = estimated_worker_count @mcc = mcc + @minority_owned_business_designation = minority_owned_business_designation @monthly_estimated_revenue = monthly_estimated_revenue @name = name @product_description = product_description @@ -3007,6 +3013,8 @@ module Stripe attr_accessor :estimated_worker_count # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. attr_accessor :monthly_estimated_revenue # The customer-facing business name. @@ -3028,6 +3036,7 @@ module Stripe annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -3040,6 +3049,7 @@ module Stripe @annual_revenue = annual_revenue @estimated_worker_count = estimated_worker_count @mcc = mcc + @minority_owned_business_designation = minority_owned_business_designation @monthly_estimated_revenue = monthly_estimated_revenue @name = name @product_description = product_description diff --git a/lib/stripe/services/account_service.rb b/lib/stripe/services/account_service.rb index 4de29c03..a656bb59 100644 --- a/lib/stripe/services/account_service.rb +++ b/lib/stripe/services/account_service.rb @@ -125,6 +125,8 @@ module Stripe attr_accessor :estimated_worker_count # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. attr_accessor :monthly_estimated_revenue # The customer-facing business name. @@ -146,6 +148,7 @@ module Stripe annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -158,6 +161,7 @@ module Stripe @annual_revenue = annual_revenue @estimated_worker_count = estimated_worker_count @mcc = mcc + @minority_owned_business_designation = minority_owned_business_designation @monthly_estimated_revenue = monthly_estimated_revenue @name = name @product_description = product_description @@ -2372,6 +2376,8 @@ module Stripe attr_accessor :estimated_worker_count # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. attr_accessor :monthly_estimated_revenue # The customer-facing business name. @@ -2393,6 +2399,7 @@ module Stripe annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -2405,6 +2412,7 @@ module Stripe @annual_revenue = annual_revenue @estimated_worker_count = estimated_worker_count @mcc = mcc + @minority_owned_business_designation = minority_owned_business_designation @monthly_estimated_revenue = monthly_estimated_revenue @name = name @product_description = product_description diff --git a/rbi/stripe.rbi b/rbi/stripe.rbi index 529a259d..b34b496f 100644 --- a/rbi/stripe.rbi +++ b/rbi/stripe.rbi @@ -4381,6 +4381,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_reader :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_reader :minority_owned_business_designation # Attribute for field monthly_estimated_revenue sig { returns(MonthlyEstimatedRevenue) } attr_reader :monthly_estimated_revenue @@ -5360,6 +5363,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -5387,12 +5393,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -7526,6 +7533,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::Account::CreateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -7553,12 +7563,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -108799,6 +108810,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -108828,12 +108842,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -111080,6 +111095,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -111109,12 +111127,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, diff --git a/rbi/stripe/resources/account.rbi b/rbi/stripe/resources/account.rbi index 8f3cb1fb..32a7c677 100644 --- a/rbi/stripe/resources/account.rbi +++ b/rbi/stripe/resources/account.rbi @@ -65,6 +65,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_reader :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_reader :minority_owned_business_designation # Attribute for field monthly_estimated_revenue sig { returns(MonthlyEstimatedRevenue) } attr_reader :monthly_estimated_revenue @@ -1044,6 +1047,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -1071,12 +1077,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -3210,6 +3217,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::Account::CreateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -3237,12 +3247,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::Account::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, diff --git a/rbi/stripe/services/account_service.rbi b/rbi/stripe/services/account_service.rbi index 3df0da77..492f5e40 100644 --- a/rbi/stripe/services/account_service.rbi +++ b/rbi/stripe/services/account_service.rbi @@ -120,6 +120,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -149,12 +152,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::UpdateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil, @@ -2401,6 +2405,9 @@ module Stripe # [The merchant category code for the account](/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. sig { returns(T.nilable(String)) } attr_accessor :mcc + # Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business. + sig { returns(T.nilable(T::Array[String])) } + attr_accessor :minority_owned_business_designation # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India. sig { returns(T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::MonthlyEstimatedRevenue)) @@ -2430,12 +2437,13 @@ module Stripe sig { returns(T.nilable(String)) } attr_accessor :url sig { - params(annual_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void + params(annual_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::AnnualRevenue), estimated_worker_count: T.nilable(Integer), mcc: T.nilable(String), minority_owned_business_designation: T.nilable(T::Array[String]), monthly_estimated_revenue: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::MonthlyEstimatedRevenue), name: T.nilable(String), product_description: T.nilable(String), support_address: T.nilable(::Stripe::AccountService::CreateParams::BusinessProfile::SupportAddress), support_email: T.nilable(String), support_phone: T.nilable(String), support_url: T.nilable(T.nilable(String)), url: T.nilable(String)).void } def initialize( annual_revenue: nil, estimated_worker_count: nil, mcc: nil, + minority_owned_business_designation: nil, monthly_estimated_revenue: nil, name: nil, product_description: nil,