| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | Pagination | ||
| results | List[ProxyOutpostConfig] | ||
| autocomplete | Dict[str, object] |
from authentik_client.models.paginated_proxy_outpost_config_list import PaginatedProxyOutpostConfigList
# TODO update the JSON string below
json = "{}"
# create an instance of PaginatedProxyOutpostConfigList from a JSON string
paginated_proxy_outpost_config_list_instance = PaginatedProxyOutpostConfigList.from_json(json)
# print the JSON string representation of the object
print(PaginatedProxyOutpostConfigList.to_json())
# convert the object into a dict
paginated_proxy_outpost_config_list_dict = paginated_proxy_outpost_config_list_instance.to_dict()
# create an instance of PaginatedProxyOutpostConfigList from a dict
paginated_proxy_outpost_config_list_from_dict = PaginatedProxyOutpostConfigList.from_dict(paginated_proxy_outpost_config_list_dict)