Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

CapabilityConfigRep

Properties

Name Type Description Notes
approvals ApprovalsCapabilityConfig [optional]
audit_log_events_hook AuditLogEventsHookCapabilityConfigRep [optional]

Example

from launchdarkly_api.models.capability_config_rep import CapabilityConfigRep

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

# convert the object into a dict
capability_config_rep_dict = capability_config_rep_instance.to_dict()
# create an instance of CapabilityConfigRep from a dict
capability_config_rep_from_dict = CapabilityConfigRep.from_dict(capability_config_rep_dict)

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