Skip to content

Commit 59bb051

Browse files
author
Api (Codebuild)
committed
Look for details in API documentation's changelog
1 parent ab8db75 commit 59bb051

3 files changed

Lines changed: 5 additions & 5 deletions

docs/EzsignfoldersignerassociationCreateEmbeddedUrlV1Request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**s_return_url** | **str** | The return Url to redirect after the signing is completed | [optional]
1010
**s_iframedomain** | **str** | Domain protection for the iFrame | [optional]
11-
**b_isiframe** | **bool** | Whether the url would be in an iFrame or not | [optional]
11+
**b_is_iframe** | **bool** | Whether the url would be in an iFrame or not | [optional]
1212

1313
## Example
1414

eZmaxApi/models/ezsignfoldersignerassociation_create_embedded_url_v1_request.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class EzsignfoldersignerassociationCreateEmbeddedUrlV1Request(BaseModel):
3030
""" # noqa: E501
3131
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")
3232
s_iframedomain: Optional[Annotated[str, Field(strict=True)]] = Field(default=None, description="Domain protection for the iFrame", alias="sIframedomain")
33-
b_isiframe: Optional[StrictBool] = Field(default=None, description="Whether the url would be in an iFrame or not", alias="bIsiframe")
34-
__properties: ClassVar[List[str]] = ["sReturnUrl", "sIframedomain", "bIsiframe"]
33+
b_is_iframe: Optional[StrictBool] = Field(default=None, description="Whether the url would be in an iFrame or not", alias="bIsIframe")
34+
__properties: ClassVar[List[str]] = ["sReturnUrl", "sIframedomain", "bIsIframe"]
3535

3636
@field_validator('s_return_url')
3737
def s_return_url_validate_regular_expression(cls, value):
@@ -106,7 +106,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
106106
_obj = cls.model_validate({
107107
"sReturnUrl": obj.get("sReturnUrl"),
108108
"sIframedomain": obj.get("sIframedomain"),
109-
"bIsiframe": obj.get("bIsiframe")
109+
"bIsIframe": obj.get("bIsIframe")
110110
})
111111
return _obj
112112

test/test_ezsignfoldersignerassociation_create_embedded_url_v1_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def make_instance(self, include_optional) -> EzsignfoldersignerassociationCreate
3838
return EzsignfoldersignerassociationCreateEmbeddedUrlV1Request(
3939
s_return_url = 'Https://www.example.com',
4040
s_iframedomain = '*.example.com',
41-
b_isiframe = True
41+
b_is_iframe = True
4242
)
4343
else:
4444
return EzsignfoldersignerassociationCreateEmbeddedUrlV1Request(

0 commit comments

Comments
 (0)