Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

BlueprintsListBlueprints200Response

Properties

Name Type Description Notes
count int [optional]
next object [optional]
previous object [optional]
results object [optional]

Example

from kandji.models.blueprints_list_blueprints200_response import BlueprintsListBlueprints200Response

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

# convert the object into a dict
blueprints_list_blueprints200_response_dict = blueprints_list_blueprints200_response_instance.to_dict()
# create an instance of BlueprintsListBlueprints200Response from a dict
blueprints_list_blueprints200_response_from_dict = BlueprintsListBlueprints200Response.from_dict(blueprints_list_blueprints200_response_dict)

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