Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

IpAllowlistResponse

Properties

Name Type Description Notes
session_allowlist_enabled bool
api_token_allowlist_enabled bool
entries List[IpAllowlistEntryResponse]

Example

from launchdarkly_api.models.ip_allowlist_response import IpAllowlistResponse

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

# convert the object into a dict
ip_allowlist_response_dict = ip_allowlist_response_instance.to_dict()
# create an instance of IpAllowlistResponse from a dict
ip_allowlist_response_from_dict = IpAllowlistResponse.from_dict(ip_allowlist_response_dict)

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