toList | String List Optional. List to which you want to append Strings. If the value of toList is null, a null pointer exception error is thrown. If you do not specify toList, the service creates a new list. |
fromList | String List Optional. List of Strings to add to toList. Strings are added after the entries of toList. |
fromItem | String Optional. String you want to append to the end of toList. If you specify both fromList and fromItem, the service adds the String specified in fromItem after the Strings specified in fromList. |
toList | String List The toList String list with the Strings from fromList and fromItem appended to it. |