You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The additional form variables for the approvals capability
[optional]
Example
fromlaunchdarkly_api.models.approvals_capability_configimportApprovalsCapabilityConfig# TODO update the JSON string belowjson="{}"# create an instance of ApprovalsCapabilityConfig from a JSON stringapprovals_capability_config_instance=ApprovalsCapabilityConfig.from_json(json)
# print the JSON string representation of the objectprint(ApprovalsCapabilityConfig.to_json())
# convert the object into a dictapprovals_capability_config_dict=approvals_capability_config_instance.to_dict()
# create an instance of ApprovalsCapabilityConfig from a dictapprovals_capability_config_from_dict=ApprovalsCapabilityConfig.from_dict(approvals_capability_config_dict)