Exemple #1
0
        public Command BuildTeamCommand()
        {
            var command = new Command("team");
            var builder = new TeamRequestBuilder(PathParameters, RequestAdapter);

            command.AddCommand(builder.BuildGetCommand());
            return(command);
        }
        public Command BuildTeamCommand()
        {
            var command = new Command("team");
            var builder = new TeamRequestBuilder(PathParameters, RequestAdapter);

            command.AddCommand(builder.BuildChannelsCommand());
            command.AddCommand(builder.BuildDeleteCommand());
            command.AddCommand(builder.BuildGetCommand());
            command.AddCommand(builder.BuildGroupCommand());
            command.AddCommand(builder.BuildInstalledAppsCommand());
            command.AddCommand(builder.BuildMembersCommand());
            command.AddCommand(builder.BuildOperationsCommand());
            command.AddCommand(builder.BuildPatchCommand());
            command.AddCommand(builder.BuildPrimaryChannelCommand());
            command.AddCommand(builder.BuildScheduleCommand());
            command.AddCommand(builder.BuildTemplateCommand());
            return(command);
        }