Clarifies equity account name generation
Adds a comment to the `equity_account_name` field in the `CreateUserEquityStatus` model, clarifying that it is auto-generated if not provided. This improves clarity for developers using the API.
This commit is contained in:
parent
988d7fdf20
commit
fc12dae435
1 changed files with 1 additions and 1 deletions
|
|
@ -264,7 +264,7 @@ class CreateUserEquityStatus(BaseModel):
|
||||||
"""Create or update user equity eligibility"""
|
"""Create or update user equity eligibility"""
|
||||||
user_id: str
|
user_id: str
|
||||||
is_equity_eligible: bool
|
is_equity_eligible: bool
|
||||||
equity_account_name: Optional[str] = None
|
equity_account_name: Optional[str] = None # Auto-generated as "Equity:User-{user_id}" if not provided
|
||||||
notes: Optional[str] = None
|
notes: Optional[str] = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue