/// <summary>
 /// Constructs a new ApiPermissionAttribute
 /// </summary>
 /// <param name="apiPermission">One or more possible permissions of which only one is needed to be granted in the token</param>
 public CmdletOfficeManagementApiPermissionAttribute(OfficeManagementApiPermission orApiPermissions, OfficeManagementApiPermission andApiPermissions = OfficeManagementApiPermission.None)
 {
     OrApiPermissions  = orApiPermissions;
     AndApiPermissions = andApiPermissions;
 }
 /// <summary>
 /// Constructs a new ApiPermissionAttribute
 /// </summary>
 /// <param name="apiPermission">One or more possible permissions of which only one is needed to be granted in the token</param>
 public CmdletOfficeManagementApiPermissionAttribute(OfficeManagementApiPermission apiPermission)
 {
     ApiPermission = apiPermission;
 }