clarified the playable ID format in the xml-rpc interface docs
This commit is contained in:
parent
ad0dd8d2bc
commit
cede8fc578
|
@ -96,6 +96,11 @@ using namespace LiveSupport::Core;
|
|||
* <li>end - datetime - the end of the scheduled item</li>
|
||||
* </ul>
|
||||
*
|
||||
* The playlistId parameter is a string containing the hexadecimal value of
|
||||
* the playlist ID.
|
||||
* It is up to 32 characters long, representing a value between 0 and 2^31-1,
|
||||
* inclusive.
|
||||
*
|
||||
* In case of an error, a standard XML-RPC fault response is generated,
|
||||
* and a { faultCode, faultString } structure is returned. The
|
||||
* possible errors are:
|
||||
|
|
|
@ -89,10 +89,15 @@ using namespace LiveSupport::Core;
|
|||
* for each play log item in the interval. An array of size 0 means there
|
||||
* are no play log entries. Each structure is as follows:
|
||||
* <ul>
|
||||
* <li>audioClipId - string - the id of the audio clip played </li>
|
||||
* <li>audioClipId - string - the id of the audio clip played </li>
|
||||
* <li>timestamp - datetime - the time the clip was played (started)</li>
|
||||
* </ul>
|
||||
*
|
||||
* The audioClipId parameter is a string containing the hexadecimal value of
|
||||
* the audio clip ID.
|
||||
* It is up to 32 characters long, representing a value between 0 and 2^31-1,
|
||||
* inclusive.
|
||||
*
|
||||
* In case of an error, a standard XML-RPC fault response is generated,
|
||||
* and a { faultCode, faultString } structure is returned. The
|
||||
* possible errors are:
|
||||
|
|
|
@ -81,6 +81,11 @@ using namespace LiveSupport::Core;
|
|||
* scheduled, an ISO 8601 DateTime field</li>
|
||||
* </ul>
|
||||
*
|
||||
* The playlistId parameter is a string containing the hexadecimal value of
|
||||
* the playlist ID.
|
||||
* It is up to 32 characters long, representing a value between 0 and 2^31-1,
|
||||
* inclusive.
|
||||
*
|
||||
* If the upload is successful, the method returns an XML-RPC structure with
|
||||
* the following members:
|
||||
* <ul>
|
||||
|
|
Loading…
Reference in New Issue