Memory Related Operations

19.4.6.1 GetMemoryBookmark

DESCRIPTION

Retrieve the bookmark data in Memory within a specific date range.

INPUT

  • _user: Specify the user's login name;
  • _pwd: Password to authenticate the user's login name;
  • _fromdate: The start date to retrieve the bookmarks in Memory;
  • _todate: The end date to stop the retrieval;
  • _coduser: The user of the station.

OUTPUT

<MemoryBookmark>

 <Asset>

   <starttime>2019-02-21T14:39:07.480</starttime>

   <endtime>2019-02-21T14:39:07.480</endtime>

   <frameduration>0</frameduration>

  <timeduration>00:00:00</timeduration>

   <code>133718358</code>

   <id>5289</id>

   <description>Smart TV LED 50" Ultra HD 4K LG</description>

 </Asset>

 <Asset>

   <starttime>2019-02-21T14:42:35.880</starttime>

   <endtime>2019-02-21T14:46:34.520</endtime>

   <frameduration>5966</frameduration>  <timeduration>00:03:58.6400000</timeduration>

   <code>133453169</code>

   <id>5290</id>

   <description>Moto G6 Play Indigo</description>

 </Asset>

 <Asset>

   <starttime>2019-02-21T14:46:34.840</starttime>

   <endtime>2019-02-21T14:51:01.800</endtime>

   <frameduration>6674</frameduration>   <timeduration>00:04:26.9600000</timeduration>

   <code>133453249</code>

   <id>5291</id>

   <description>Moto G6 Play Ouro</description>

 </Asset>

</MemoryBookmark>

XSD (XML Schema Definition)

<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
 <xs:element name="MemoryBookmark">
   <xs:complexType>
     <xs: sequence>
       <xs:element name="Asset" maxOccurs="unbounded" minOccurs="0">
         <xs:complexType>
           <xs: sequence>
             <xs:element type="xs:dateTime" name="starttime"/>
             <xs:element type="xs:dateTime" name="endtime"/>
             <xs:element type="xs:int" name="frameduration"/>
             <xs:element type="xs:time" name="timeduration"/>
             <xs:element type="xs:int" name="code"/>
             <xs:element type="xs:int" name="id"/>
             <xs:element type="xs:string" name="description"/>
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
   </xs:complexType>
 </xs:element>
</xs:schema>