Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

GatewayUpdateLdapAuthConfigOutput.md

File metadata and controls

29 lines (20 loc) · 1.13 KB

GatewayUpdateLdapAuthConfigOutput

Properties

Name Type Description Notes
updated bool [optional]

Example

from akeyless.models.gateway_update_ldap_auth_config_output import GatewayUpdateLdapAuthConfigOutput

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

# convert the object into a dict
gateway_update_ldap_auth_config_output_dict = gateway_update_ldap_auth_config_output_instance.to_dict()
# create an instance of GatewayUpdateLdapAuthConfigOutput from a dict
gateway_update_ldap_auth_config_output_from_dict = GatewayUpdateLdapAuthConfigOutput.from_dict(gateway_update_ldap_auth_config_output_dict)

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