Location¶
The location of the client device.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| city | str | The city where the client device is located. | [optional] |
| country | str | The country where the client device is located. | [optional] |
| subdivision | str | The subdivision (e.g., state or province) where the client device is located. | [optional] |
Example¶
from scc_firewall_manager_sdk.models.location import Location
# TODO update the JSON string below
json = "{}"
# create an instance of Location from a JSON string
location_instance = Location.from_json(json)
# print the JSON string representation of the object
print(Location.to_json())
# convert the object into a dict
location_dict = location_instance.to_dict()
# create an instance of Location from a dict
location_form_dict = location.from_dict(location_dict)