Class: Stripe::FinancialConnections::AccountOwner
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::FinancialConnections::AccountOwner
- Defined in:
- lib/stripe/resources/financial_connections/account_owner.rb
Overview
Describes an owner of an account.
Constant Summary collapse
- OBJECT_NAME =
"financial_connections.account_owner"
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#email ⇒ Object
readonly
The email address of the owner.
-
#id ⇒ Object
readonly
Unique identifier for the object.
-
#name ⇒ Object
readonly
The full name of the owner.
-
#object ⇒ Object
readonly
String representing the object’s type.
-
#ownership ⇒ Object
readonly
The ownership object that this owner belongs to.
-
#phone ⇒ Object
readonly
The raw phone number of the owner.
-
#raw_address ⇒ Object
readonly
The raw physical address of the owner.
-
#refreshed_at ⇒ Object
readonly
The timestamp of the refresh that updated this owner.
Attributes inherited from StripeObject
Class Method Summary collapse
Methods inherited from StripeObject
#==, #[], #[]=, 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
#email ⇒ Object (readonly)
The email address of the owner.
14 15 16 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 14 def email @email end |
#id ⇒ Object (readonly)
Unique identifier for the object.
16 17 18 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 16 def id @id end |
#name ⇒ Object (readonly)
The full name of the owner.
18 19 20 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 18 def name @name end |
#object ⇒ Object (readonly)
String representing the object’s type. Objects of the same type share the same value.
20 21 22 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 20 def object @object end |
#ownership ⇒ Object (readonly)
The ownership object that this owner belongs to.
22 23 24 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 22 def ownership @ownership end |
#phone ⇒ Object (readonly)
The raw phone number of the owner.
24 25 26 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 24 def phone @phone end |
#raw_address ⇒ Object (readonly)
The raw physical address of the owner.
26 27 28 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 26 def raw_address @raw_address end |
#refreshed_at ⇒ Object (readonly)
The timestamp of the refresh that updated this owner.
28 29 30 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 28 def refreshed_at @refreshed_at end |
Class Method Details
.object_name ⇒ Object
9 10 11 |
# File 'lib/stripe/resources/financial_connections/account_owner.rb', line 9 def self.object_name "financial_connections.account_owner" end |