Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.32 KB

File metadata and controls

34 lines (25 loc) · 1.32 KB

PatchedBlueprintInstanceRequest

Info about a single blueprint instance file

Properties

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

Example

from authentik_client.models.patched_blueprint_instance_request import PatchedBlueprintInstanceRequest

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

# convert the object into a dict
patched_blueprint_instance_request_dict = patched_blueprint_instance_request_instance.to_dict()
# create an instance of PatchedBlueprintInstanceRequest from a dict
patched_blueprint_instance_request_from_dict = PatchedBlueprintInstanceRequest.from_dict(patched_blueprint_instance_request_dict)

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