Class: Stripe::AccountPersonCreateParams::Relationship

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_person_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(authorizer: nil, director: nil, executive: nil, legal_guardian: nil, owner: nil, percent_ownership: nil, representative: nil, title: nil) ⇒ Relationship

Returns a new instance of Relationship.



221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/stripe/params/account_person_create_params.rb', line 221

def initialize(
  authorizer: nil,
  director: nil,
  executive: nil,
  legal_guardian: nil,
  owner: nil,
  percent_ownership: nil,
  representative: nil,
  title: nil
)
  @authorizer = authorizer
  @director = director
  @executive = executive
  @legal_guardian = legal_guardian
  @owner = owner
  @percent_ownership = percent_ownership
  @representative = representative
  @title = title
end

Instance Attribute Details

#authorizerObject

Whether the person is the authorizer of the account’s representative.



205
206
207
# File 'lib/stripe/params/account_person_create_params.rb', line 205

def authorizer
  @authorizer
end

#directorObject

Whether the person is a director of the account’s legal entity. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.



207
208
209
# File 'lib/stripe/params/account_person_create_params.rb', line 207

def director
  @director
end

#executiveObject

Whether the person has significant responsibility to control, manage, or direct the organization.



209
210
211
# File 'lib/stripe/params/account_person_create_params.rb', line 209

def executive
  @executive
end

Whether the person is the legal guardian of the account’s representative.



211
212
213
# File 'lib/stripe/params/account_person_create_params.rb', line 211

def legal_guardian
  @legal_guardian
end

#ownerObject

Whether the person is an owner of the account’s legal entity.



213
214
215
# File 'lib/stripe/params/account_person_create_params.rb', line 213

def owner
  @owner
end

#percent_ownershipObject

The percent owned by the person of the account’s legal entity.



215
216
217
# File 'lib/stripe/params/account_person_create_params.rb', line 215

def percent_ownership
  @percent_ownership
end

#representativeObject

Whether the person is authorized as the primary representative of the account. This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.



217
218
219
# File 'lib/stripe/params/account_person_create_params.rb', line 217

def representative
  @representative
end

#titleObject

The person’s title (e.g., CEO, Support Engineer).



219
220
221
# File 'lib/stripe/params/account_person_create_params.rb', line 219

def title
  @title
end