Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 981 Bytes

File metadata and controls

31 lines (23 loc) · 981 Bytes

IPRestriction

Properties

Name Type Description Notes
ip str
for_admin bool [optional]
id int [optional]
tenant_id int [optional]

Example

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]