Description
Retrieves the keys and names of all the service call solution statuses.
Syntax
Example
| Getting a list of service call solution statuses (C#) | Copy Code |
|---|
ServiceCallSolutionStatusParamsCollection solutionParamsCollection = solutionStatusService.GetServiceCallSolutionStatusList(); int i = 1; foreach (ServiceCallSolutionStatusParams solutionStatusParams in solutionParamsCollection) { Console.WriteLine("item {0}: statusId:{1}, Name:{2}", i++, solutionStatusParams.StatusId, solutionStatusParams.Name); }
|
|
See Also