| Name |
Type |
Description |
Notes |
| ip |
str |
|
|
| for_admin |
bool |
|
[optional] |
| id |
int |
|
[optional] |
| tenant_id |
int |
|
[optional] |
from docspace_api_sdk.models.ip_restriction import IPRestriction
# TODO update the JSON string below
json = "{}"
# create an instance of IPRestriction from a JSON string
ip_restriction_instance = IPRestriction.from_json(json)
# print the JSON string representation of the object
print(IPRestriction.to_json())
# convert the object into a dict
ip_restriction_dict = ip_restriction_instance.to_dict()
# create an instance of IPRestriction from a dict
ip_restriction_from_dict = IPRestriction.from_dict(ip_restriction_dict)
[Back to Model list] [Back to API list] [Back to README]