Class: Stripe::V2::Core::Account::Configuration::Merchant

Inherits:
StripeObject
  • Object
show all
Defined in:
lib/stripe/resources/v2/core/account.rb

Defined Under Namespace

Classes: BacsDebitPayments, Branding, Capabilities, CardPayments, KonbiniPayments, ScriptStatementDescriptor, SepaDebitPayments, StatementDescriptor, Support

Constant Summary

Constants inherited from StripeObject

StripeObject::RESERVED_FIELD_NAMES

Instance Attribute Summary collapse

Attributes inherited from StripeObject

#last_response

Class Method Summary collapse

Methods inherited from StripeObject

#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values

Constructor Details

This class inherits a constructor from Stripe::StripeObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject

Instance Attribute Details

#appliedObject (readonly)

Indicates whether the merchant configuration is active. You can deactivate or reactivate the merchant configuration by updating this property. Deactivating the configuration by setting this value to false doesn’t delete the configuration’s properties.



1902
1903
1904
# File 'lib/stripe/resources/v2/core/account.rb', line 1902

def applied
  @applied
end

#bacs_debit_paymentsObject (readonly)

Settings for Bacs Direct Debit payments.



1904
1905
1906
# File 'lib/stripe/resources/v2/core/account.rb', line 1904

def bacs_debit_payments
  @bacs_debit_payments
end

#brandingObject (readonly)

Settings used to apply the merchant’s branding to email receipts, invoices, Checkout, and other products.



1906
1907
1908
# File 'lib/stripe/resources/v2/core/account.rb', line 1906

def branding
  @branding
end

#capabilitiesObject (readonly)

Capabilities that have been requested on the Merchant Configuration.



1908
1909
1910
# File 'lib/stripe/resources/v2/core/account.rb', line 1908

def capabilities
  @capabilities
end

#card_paymentsObject (readonly)

Card payments settings.



1910
1911
1912
# File 'lib/stripe/resources/v2/core/account.rb', line 1910

def card_payments
  @card_payments
end

#konbini_paymentsObject (readonly)

Settings specific to Konbini payments on the account.



1912
1913
1914
# File 'lib/stripe/resources/v2/core/account.rb', line 1912

def konbini_payments
  @konbini_payments
end

#mccObject (readonly)

The Merchant Category Code (MCC) for the merchant. MCCs classify businesses based on the goods or services they provide.



1914
1915
1916
# File 'lib/stripe/resources/v2/core/account.rb', line 1914

def mcc
  @mcc
end

#script_statement_descriptorObject (readonly)

Settings for the default text that appears on statements for language variations.



1916
1917
1918
# File 'lib/stripe/resources/v2/core/account.rb', line 1916

def script_statement_descriptor
  @script_statement_descriptor
end

#sepa_debit_paymentsObject (readonly)

Settings for SEPA Direct Debit payments.



1918
1919
1920
# File 'lib/stripe/resources/v2/core/account.rb', line 1918

def sepa_debit_payments
  @sepa_debit_payments
end

#statement_descriptorObject (readonly)

Statement descriptor.



1920
1921
1922
# File 'lib/stripe/resources/v2/core/account.rb', line 1920

def statement_descriptor
  @statement_descriptor
end

#supportObject (readonly)

Publicly available contact information for sending support issues to.



1922
1923
1924
# File 'lib/stripe/resources/v2/core/account.rb', line 1922

def support
  @support
end

Class Method Details

.field_remappingsObject



1938
1939
1940
# File 'lib/stripe/resources/v2/core/account.rb', line 1938

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
# File 'lib/stripe/resources/v2/core/account.rb', line 1924

def self.inner_class_types
  @inner_class_types = {
    bacs_debit_payments: BacsDebitPayments,
    branding: Branding,
    capabilities: Capabilities,
    card_payments: CardPayments,
    konbini_payments: KonbiniPayments,
    script_statement_descriptor: ScriptStatementDescriptor,
    sepa_debit_payments: SepaDebitPayments,
    statement_descriptor: StatementDescriptor,
    support: Support,
  }
end