Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

IpAllowlistResponse

Properties

Name Type Description Notes
links IPAllowlistSelfLink [optional]
session_allowlist_enabled bool
api_token_allowlist_enabled bool
total_count int The total number of entries matching the query, before pagination. [optional]
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]