Skip to content

Commit

Permalink
Look for details in API documentation's changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Api (Codebuild) committed Mar 28, 2024
1 parent ab8db75 commit 59bb051
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 59bb051

Please sign in to comment.