mobileDevice Data Type

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
description string element 0/1  
id string element 0/1  
last_login dateTime element 0/1  
last_wipe dateTime element 0/1  
push_token string element 0/1  
Properties inherited from baseRestObject
href string element 0/1 The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest).
link link element 0/unbounded Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

<mobile_device>
  <id>...</id>
  <description>...</description>
  <push_token>...</push_token>
  <last_login>...</last_login>
  <last_wipe>...</last_wipe>
  <href>...</href>
  <links>
    <link>
      <href>...</href>
      <rel>...</rel>
    </link>
  </links>
</mobile_device>