Class: Stripe::Treasury::FinancialAccount

Inherits:
APIResource show all
Extended by:
APIOperations::Create, APIOperations::List
Includes:
APIOperations::Save
Defined in:
lib/stripe/resources/treasury/financial_account.rb

Overview

Stripe Treasury provides users with a container for money called a FinancialAccount that is separate from their Payments balance. FinancialAccounts serve as the source and destination of Treasury’s money movement APIs.

Defined Under Namespace

Classes: Balance, FinancialAddress, PlatformRestrictions, StatusDetails

Constant Summary collapse

OBJECT_NAME =
"treasury.financial_account"

Constants inherited from StripeObject

StripeObject::RESERVED_FIELD_NAMES

Instance Attribute Summary collapse

Attributes inherited from APIResource

#save_with_parent

Attributes inherited from StripeObject

#last_response

Class Method Summary collapse

Instance Method Summary collapse

Methods included from APIOperations::Create

create

Methods included from APIOperations::List

list

Methods included from APIOperations::Save

included, #save

Methods inherited from APIResource

class_name, custom_method, #refresh, #request_stripe_object, resource_url, #resource_url, retrieve, save_nested_resource

Methods included from APIOperations::Request

included

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

#active_featuresObject (readonly)

The array of paths to active Features in the Features hash.



112
113
114
# File 'lib/stripe/resources/treasury/financial_account.rb', line 112

def active_features
  @active_features
end

#balanceObject (readonly)

Balance information for the FinancialAccount



114
115
116
# File 'lib/stripe/resources/treasury/financial_account.rb', line 114

def balance
  @balance
end

#countryObject (readonly)

Two-letter country code ([ISO 3166-1 alpha-2](en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).



116
117
118
# File 'lib/stripe/resources/treasury/financial_account.rb', line 116

def country
  @country
end

#createdObject (readonly)

Time at which the object was created. Measured in seconds since the Unix epoch.



118
119
120
# File 'lib/stripe/resources/treasury/financial_account.rb', line 118

def created
  @created
end

#featuresObject (readonly)

Encodes whether a FinancialAccount has access to a particular Feature, with a ‘status` enum and associated `status_details`. Stripe or the platform can control Features via the requested field.



121
122
123
# File 'lib/stripe/resources/treasury/financial_account.rb', line 121

def features
  @features
end

#financial_addressesObject (readonly)

The set of credentials that resolve to a FinancialAccount.



123
124
125
# File 'lib/stripe/resources/treasury/financial_account.rb', line 123

def financial_addresses
  @financial_addresses
end

#idObject (readonly)

Unique identifier for the object.



125
126
127
# File 'lib/stripe/resources/treasury/financial_account.rb', line 125

def id
  @id
end

#is_defaultObject (readonly)

Attribute for field is_default



127
128
129
# File 'lib/stripe/resources/treasury/financial_account.rb', line 127

def is_default
  @is_default
end

#livemodeObject (readonly)

Has the value ‘true` if the object exists in live mode or the value `false` if the object exists in test mode.



129
130
131
# File 'lib/stripe/resources/treasury/financial_account.rb', line 129

def livemode
  @livemode
end

#metadataObject (readonly)

Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.



131
132
133
# File 'lib/stripe/resources/treasury/financial_account.rb', line 131

def 
  @metadata
end

#nicknameObject (readonly)

The nickname for the FinancialAccount.



133
134
135
# File 'lib/stripe/resources/treasury/financial_account.rb', line 133

def nickname
  @nickname
end

#objectObject (readonly)

String representing the object’s type. Objects of the same type share the same value.



135
136
137
# File 'lib/stripe/resources/treasury/financial_account.rb', line 135

def object
  @object
end

#pending_featuresObject (readonly)

The array of paths to pending Features in the Features hash.



137
138
139
# File 'lib/stripe/resources/treasury/financial_account.rb', line 137

def pending_features
  @pending_features
end

#platform_restrictionsObject (readonly)

The set of functionalities that the platform can restrict on the FinancialAccount.



139
140
141
# File 'lib/stripe/resources/treasury/financial_account.rb', line 139

def platform_restrictions
  @platform_restrictions
end

#restricted_featuresObject (readonly)

The array of paths to restricted Features in the Features hash.



141
142
143
# File 'lib/stripe/resources/treasury/financial_account.rb', line 141

def restricted_features
  @restricted_features
end

#statusObject (readonly)

Status of this FinancialAccount.



143
144
145
# File 'lib/stripe/resources/treasury/financial_account.rb', line 143

def status
  @status
end

#status_detailsObject (readonly)

Attribute for field status_details



145
146
147
# File 'lib/stripe/resources/treasury/financial_account.rb', line 145

def status_details
  @status_details
end

#supported_currenciesObject (readonly)

The currencies the FinancialAccount can hold a balance in. Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase.



147
148
149
# File 'lib/stripe/resources/treasury/financial_account.rb', line 147

def supported_currencies
  @supported_currencies
end

Class Method Details

.close(financial_account, params = {}, opts = {}) ⇒ Object

Closes a FinancialAccount. A FinancialAccount can only be closed if it has a zero balance, has no pending InboundTransfers, and has canceled all attached Issuing cards.



160
161
162
163
164
165
166
167
# File 'lib/stripe/resources/treasury/financial_account.rb', line 160

def self.close(, params = {}, opts = {})
  request_stripe_object(
    method: :post,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s/close", { financial_account: CGI.escape() }),
    params: params,
    opts: opts
  )
end

.create(params = {}, opts = {}) ⇒ Object

Creates a new FinancialAccount. Each connected account can have up to three FinancialAccounts by default.



170
171
172
173
174
175
176
177
# File 'lib/stripe/resources/treasury/financial_account.rb', line 170

def self.create(params = {}, opts = {})
  request_stripe_object(
    method: :post,
    path: "/v1/treasury/financial_accounts",
    params: params,
    opts: opts
  )
end

.field_remappingsObject



248
249
250
# File 'lib/stripe/resources/treasury/financial_account.rb', line 248

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



239
240
241
242
243
244
245
246
# File 'lib/stripe/resources/treasury/financial_account.rb', line 239

def self.inner_class_types
  @inner_class_types = {
    balance: Balance,
    financial_addresses: FinancialAddress,
    platform_restrictions: PlatformRestrictions,
    status_details: StatusDetails,
  }
end

.list(params = {}, opts = {}) ⇒ Object

Returns a list of FinancialAccounts.



180
181
182
183
184
185
186
187
# File 'lib/stripe/resources/treasury/financial_account.rb', line 180

def self.list(params = {}, opts = {})
  request_stripe_object(
    method: :get,
    path: "/v1/treasury/financial_accounts",
    params: params,
    opts: opts
  )
end

.object_nameObject



14
15
16
# File 'lib/stripe/resources/treasury/financial_account.rb', line 14

def self.object_name
  "treasury.financial_account"
end

.retrieve_features(financial_account, params = {}, opts = {}) ⇒ Object

Retrieves Features information associated with the FinancialAccount.



200
201
202
203
204
205
206
207
# File 'lib/stripe/resources/treasury/financial_account.rb', line 200

def self.retrieve_features(, params = {}, opts = {})
  request_stripe_object(
    method: :get,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s/features", { financial_account: CGI.escape() }),
    params: params,
    opts: opts
  )
end

.update(financial_account, params = {}, opts = {}) ⇒ Object

Updates the details of a FinancialAccount.



210
211
212
213
214
215
216
217
# File 'lib/stripe/resources/treasury/financial_account.rb', line 210

def self.update(, params = {}, opts = {})
  request_stripe_object(
    method: :post,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s", { financial_account: CGI.escape() }),
    params: params,
    opts: opts
  )
end

.update_features(financial_account, params = {}, opts = {}) ⇒ Object

Updates the Features associated with a FinancialAccount.



230
231
232
233
234
235
236
237
# File 'lib/stripe/resources/treasury/financial_account.rb', line 230

def self.update_features(, params = {}, opts = {})
  request_stripe_object(
    method: :post,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s/features", { financial_account: CGI.escape() }),
    params: params,
    opts: opts
  )
end

Instance Method Details

#close(params = {}, opts = {}) ⇒ Object

Closes a FinancialAccount. A FinancialAccount can only be closed if it has a zero balance, has no pending InboundTransfers, and has canceled all attached Issuing cards.



150
151
152
153
154
155
156
157
# File 'lib/stripe/resources/treasury/financial_account.rb', line 150

def close(params = {}, opts = {})
  request_stripe_object(
    method: :post,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s/close", { financial_account: CGI.escape(self["id"]) }),
    params: params,
    opts: opts
  )
end

#retrieve_features(params = {}, opts = {}) ⇒ Object

Retrieves Features information associated with the FinancialAccount.



190
191
192
193
194
195
196
197
# File 'lib/stripe/resources/treasury/financial_account.rb', line 190

def retrieve_features(params = {}, opts = {})
  request_stripe_object(
    method: :get,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s/features", { financial_account: CGI.escape(self["id"]) }),
    params: params,
    opts: opts
  )
end

#update_features(params = {}, opts = {}) ⇒ Object

Updates the Features associated with a FinancialAccount.



220
221
222
223
224
225
226
227
# File 'lib/stripe/resources/treasury/financial_account.rb', line 220

def update_features(params = {}, opts = {})
  request_stripe_object(
    method: :post,
    path: format("/v1/treasury/financial_accounts/%<financial_account>s/features", { financial_account: CGI.escape(self["id"]) }),
    params: params,
    opts: opts
  )
end