Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.49 KB

SubnetRequestCompound.md

File metadata and controls

35 lines (26 loc) · 1.49 KB

SubnetRequestCompound

A Subnet Object and children

Properties

Name Type Description Notes
pki_subnet_id int The unique ID of the Subnet [optional]
fki_user_id int The unique ID of the User [optional]
fki_apikey_id int The unique ID of the Apikey [optional]
obj_subnet_description MultilingualSubnetDescription
i_subnet_network int The network of the Subnet in integer form. For example 8.8.8.0 would be 134744064
i_subnet_mask int The mask of the Subnet in integer form. For example 255.255.255.0 would be 4294967040

Example

from eZmaxApi.models.subnet_request_compound import SubnetRequestCompound

# TODO update the JSON string below
json = "{}"
# create an instance of SubnetRequestCompound from a JSON string
subnet_request_compound_instance = SubnetRequestCompound.from_json(json)
# print the JSON string representation of the object
print(SubnetRequestCompound.to_json())

# convert the object into a dict
subnet_request_compound_dict = subnet_request_compound_instance.to_dict()
# create an instance of SubnetRequestCompound from a dict
subnet_request_compound_form_dict = subnet_request_compound.from_dict(subnet_request_compound_dict)

[Back to Model list] [Back to API list] [Back to README]