Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

CreateHookRequestConfig.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

CreateHookRequestConfig

Properties

Name Type Description Notes
url str
headers Dict[str, str] [optional]
retries float Now the retry times is fixed to 3. Keep for backward compatibility. [optional]

Example

from py_logto.models.create_hook_request_config import CreateHookRequestConfig

# TODO update the JSON string below
json = "{}"
# create an instance of CreateHookRequestConfig from a JSON string
create_hook_request_config_instance = CreateHookRequestConfig.from_json(json)
# print the JSON string representation of the object
print(CreateHookRequestConfig.to_json())

# convert the object into a dict
create_hook_request_config_dict = create_hook_request_config_instance.to_dict()
# create an instance of CreateHookRequestConfig from a dict
create_hook_request_config_from_dict = CreateHookRequestConfig.from_dict(create_hook_request_config_dict)

[Back to Model list] [Back to API list] [Back to README]