Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.53 KB

File metadata and controls

37 lines (28 loc) · 1.53 KB

BlueprintsGetBlueprint200Response

Properties

Name Type Description Notes
color str [optional]
computers_count int [optional]
description str [optional]
enrollment_code BlueprintsCreateBlueprint201ResponseEnrollmentCode [optional]
icon str [optional]
id str [optional]
name str [optional]
params object [optional]
type str [optional]

Example

from kandji.models.blueprints_get_blueprint200_response import BlueprintsGetBlueprint200Response

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

# convert the object into a dict
blueprints_get_blueprint200_response_dict = blueprints_get_blueprint200_response_instance.to_dict()
# create an instance of BlueprintsGetBlueprint200Response from a dict
blueprints_get_blueprint200_response_from_dict = BlueprintsGetBlueprint200Response.from_dict(blueprints_get_blueprint200_response_dict)

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