public bool Team_GetDetails(WebServiceSimpleAuthentication Authentication, string TeamName, out APIStatus Status, out PlatformTeam PlatformTeam) { object[] results = this.Invoke("Team_GetDetails", new object[] { Authentication, TeamName }); Status = ((APIStatus)(results[1])); PlatformTeam = ((PlatformTeam)(results[2])); return((bool)(results[0])); }
public bool Team_CreateOrUpdate(WebServiceSimpleAuthentication Authentication, string TeamName, string Description, out APIStatus Status, out PlatformTeam PlatformTeam) { object[] results = this.Invoke("Team_CreateOrUpdate", new object[] { Authentication, TeamName, Description }); Status = ((APIStatus)(results[1])); PlatformTeam = ((PlatformTeam)(results[2])); return((bool)(results[0])); }