Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

BlueprintInstanceRequest

Info about a single blueprint instance file

Properties

Name Type Description Notes
name str
path str [optional] [default to '']
context Dict[str, object] [optional]
enabled bool [optional]
content str [optional]

Example

from authentik_client.models.blueprint_instance_request import BlueprintInstanceRequest

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

# convert the object into a dict
blueprint_instance_request_dict = blueprint_instance_request_instance.to_dict()
# create an instance of BlueprintInstanceRequest from a dict
blueprint_instance_request_from_dict = BlueprintInstanceRequest.from_dict(blueprint_instance_request_dict)

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