diff --git a/docs/EzsignfoldersignerassociationCreateEmbeddedUrlV1Request.md b/docs/EzsignfoldersignerassociationCreateEmbeddedUrlV1Request.md index fe18bd1db..98e303ca9 100644 --- a/docs/EzsignfoldersignerassociationCreateEmbeddedUrlV1Request.md +++ b/docs/EzsignfoldersignerassociationCreateEmbeddedUrlV1Request.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **s_return_url** | **str** | The return Url to redirect after the signing is completed | [optional] **s_iframedomain** | **str** | Domain protection for the iFrame | [optional] -**b_isiframe** | **bool** | Whether the url would be in an iFrame or not | [optional] +**b_is_iframe** | **bool** | Whether the url would be in an iFrame or not | [optional] ## Example diff --git a/eZmaxApi/models/ezsignfoldersignerassociation_create_embedded_url_v1_request.py b/eZmaxApi/models/ezsignfoldersignerassociation_create_embedded_url_v1_request.py index 0f5378ba1..e581301d4 100644 --- a/eZmaxApi/models/ezsignfoldersignerassociation_create_embedded_url_v1_request.py +++ b/eZmaxApi/models/ezsignfoldersignerassociation_create_embedded_url_v1_request.py @@ -30,8 +30,8 @@ class EzsignfoldersignerassociationCreateEmbeddedUrlV1Request(BaseModel): """ # noqa: E501 s_return_url: Optional[Annotated[str, Field(strict=True)]] = Field(default=None, description="The return Url to redirect after the signing is completed", alias="sReturnUrl") s_iframedomain: Optional[Annotated[str, Field(strict=True)]] = Field(default=None, description="Domain protection for the iFrame", alias="sIframedomain") - b_isiframe: Optional[StrictBool] = Field(default=None, description="Whether the url would be in an iFrame or not", alias="bIsiframe") - __properties: ClassVar[List[str]] = ["sReturnUrl", "sIframedomain", "bIsiframe"] + b_is_iframe: Optional[StrictBool] = Field(default=None, description="Whether the url would be in an iFrame or not", alias="bIsIframe") + __properties: ClassVar[List[str]] = ["sReturnUrl", "sIframedomain", "bIsIframe"] @field_validator('s_return_url') def s_return_url_validate_regular_expression(cls, value): @@ -106,7 +106,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "sReturnUrl": obj.get("sReturnUrl"), "sIframedomain": obj.get("sIframedomain"), - "bIsiframe": obj.get("bIsiframe") + "bIsIframe": obj.get("bIsIframe") }) return _obj diff --git a/test/test_ezsignfoldersignerassociation_create_embedded_url_v1_request.py b/test/test_ezsignfoldersignerassociation_create_embedded_url_v1_request.py index c8e29d7fc..b514e4729 100644 --- a/test/test_ezsignfoldersignerassociation_create_embedded_url_v1_request.py +++ b/test/test_ezsignfoldersignerassociation_create_embedded_url_v1_request.py @@ -38,7 +38,7 @@ def make_instance(self, include_optional) -> EzsignfoldersignerassociationCreate return EzsignfoldersignerassociationCreateEmbeddedUrlV1Request( s_return_url = 'Https://www.example.com', s_iframedomain = '*.example.com', - b_isiframe = True + b_is_iframe = True ) else: return EzsignfoldersignerassociationCreateEmbeddedUrlV1Request(