You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
386 B
13 lines
386 B
4 months ago
|
package requests
|
||
|
|
||
|
// GetTemplateRequest struct to get details of a template.
|
||
|
type GetTemplateRequest struct {
|
||
|
// Id of source template
|
||
|
// Required: true
|
||
|
TemplateID int `url:"template" json:"template" validate:"required"`
|
||
|
|
||
|
// If true, include VM's hierarchy information.
|
||
|
// Required: false
|
||
|
WithParentTree bool `url:"with_parent_tree,omitempty" json:"with_parent_tree,omitempty"`
|
||
|
}
|