1package managementgroups
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// ChildType enumerates the values for child type.
10type ChildType string
11
12const (
13	// ChildTypeManagementGroup ...
14	ChildTypeManagementGroup ChildType = "ManagementGroup"
15	// ChildTypeSubscription ...
16	ChildTypeSubscription ChildType = "Subscription"
17)
18
19// PossibleChildTypeValues returns an array of possible values for the ChildType const type.
20func PossibleChildTypeValues() []ChildType {
21	return []ChildType{ChildTypeManagementGroup, ChildTypeSubscription}
22}
23