Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

File metadata and controls

35 lines (26 loc) · 1.58 KB

CreateTemplateFromResourceResponse

Response after creating a template from a resource.

Properties

Name Type Description Notes
template_id str ID of the created template
template_name str Name of the created template
template_type TemplateType Type of template created
scope TemplateScope Template scope
source_resource_id str ID of the resource used to create this template
created_at datetime Timestamp when template was created [optional]

Example

from mixpeek.models.create_template_from_resource_response import CreateTemplateFromResourceResponse

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

# convert the object into a dict
create_template_from_resource_response_dict = create_template_from_resource_response_instance.to_dict()
# create an instance of CreateTemplateFromResourceResponse from a dict
create_template_from_resource_response_from_dict = CreateTemplateFromResourceResponse.from_dict(create_template_from_resource_response_dict)

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