@@ -301,37 +301,40 @@ class KYBDelegatedBusinessEntity(TypedDict, total=False):
301301
302302
303303class KYBDelegatedBeneficialOwnerIndividual (TypedDict , total = False ):
304- """Individuals associated with a KYB application. Phone number is optional."""
304+ """Individuals associated with a KYB_DELEGATED application.
305305
306- address : Required [Address ]
306+ Only first and last name are required.
307+ """
308+
309+ first_name : Required [str ]
310+ """Individual's first name, as it appears on government-issued identity documents."""
311+
312+ last_name : Required [str ]
313+ """Individual's last name, as it appears on government-issued identity documents."""
314+
315+ address : Address
307316 """
308317 Individual's current address - PO boxes, UPS drops, and FedEx drops are not
309318 acceptable; APO/FPO are acceptable. Only USA addresses are currently supported.
310319 """
311320
312- dob : Required [ str ]
321+ dob : str
313322 """Individual's date of birth, as an RFC 3339 date."""
314323
315- email : Required [ str ]
324+ email : str
316325 """
317326 Individual's email address. If utilizing Lithic for chargeback processing, this
318327 customer email address may be used to communicate dispute status and resolution.
319328 """
320329
321- first_name : Required [str ]
322- """Individual's first name, as it appears on government-issued identity documents."""
323-
324- government_id : Required [str ]
330+ government_id : str
325331 """
326332 Government-issued identification number (required for identity verification and
327333 compliance with banking regulations). Social Security Numbers (SSN) and
328334 Individual Taxpayer Identification Numbers (ITIN) are currently supported,
329335 entered as full nine-digits, with or without hyphens
330336 """
331337
332- last_name : Required [str ]
333- """Individual's last name, as it appears on government-issued identity documents."""
334-
335338 phone_number : str
336339 """Individual's phone number, entered in E.164 format."""
337340
@@ -344,35 +347,35 @@ class KYBDelegatedControlPerson(TypedDict, total=False):
344347 See [FinCEN requirements](https://www.fincen.gov/sites/default/files/shared/CDD_Rev6.7_Sept_2017_Certificate.pdf) (Section II) for more background.
345348 """
346349
347- address : Required [Address ]
350+ first_name : Required [str ]
351+ """Individual's first name, as it appears on government-issued identity documents."""
352+
353+ last_name : Required [str ]
354+ """Individual's last name, as it appears on government-issued identity documents."""
355+
356+ address : Address
348357 """
349358 Individual's current address - PO boxes, UPS drops, and FedEx drops are not
350359 acceptable; APO/FPO are acceptable. Only USA addresses are currently supported.
351360 """
352361
353- dob : Required [ str ]
362+ dob : str
354363 """Individual's date of birth, as an RFC 3339 date."""
355364
356- email : Required [ str ]
365+ email : str
357366 """
358367 Individual's email address. If utilizing Lithic for chargeback processing, this
359368 customer email address may be used to communicate dispute status and resolution.
360369 """
361370
362- first_name : Required [str ]
363- """Individual's first name, as it appears on government-issued identity documents."""
364-
365- government_id : Required [str ]
371+ government_id : str
366372 """
367373 Government-issued identification number (required for identity verification and
368374 compliance with banking regulations). Social Security Numbers (SSN) and
369375 Individual Taxpayer Identification Numbers (ITIN) are currently supported,
370376 entered as full nine-digits, with or without hyphens
371377 """
372378
373- last_name : Required [str ]
374- """Individual's last name, as it appears on government-issued identity documents."""
375-
376379 phone_number : str
377380 """Individual's phone number, entered in E.164 format."""
378381
0 commit comments