You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
amount: Optional[float] =Field(None, description="The user's current balance.", json_schema_extra={"example": "50.00"})
275
+
amount: Optional[float] =Field(None, description="The user's current balance.",
276
+
json_schema_extra={"example": "50.00"})
276
277
balance_type: Optional[BalanceType] =Field(
277
278
None,
278
279
description="Meaning of the balance figure for this user.\n\n* `inapplicable` means the **Adaptee** does not handle\n billing and does not have the balance data.\n* `prepaid` means the number reflects the funds that\n the user has available for spending.\n* `postpaid` means the balance reflects the amount of\n previously accumulated charges (how much the user\n owes - to be used in conjunction with a `credit_limit`).\n",
@@ -352,7 +353,8 @@ class SipInfo(BaseModel):
352
353
description="The visible identification of the caller to be included in the SIP request.\nThis will be shown to the called party as the caller's name. If not provided,\nthe `display_name` will be populated with the `username`.\n",
353
354
json_schema_extra={"example": "Thomas A. Anderson"},
354
355
)
355
-
password: str=Field(..., description="The password for the SIP account.", json_schema_extra={"example": "strong_password"})
356
+
password: str=Field(..., description="The password for the SIP account.",
357
+
json_schema_extra={"example": "strong_password"})
356
358
transport: Optional[SIPTransport] =Field(
357
359
default_factory=lambda: SIPTransport.UDP,
358
360
description="The transport protocol for SIP communication. UDP by default.",
@@ -542,7 +544,7 @@ class OtpId(RootModel[str]):
542
544
Note: This ID is NOT the code that the user will enter. It serves
543
545
to match the originally generated OTP with the one provided by the user.
0 commit comments