Skip to main content
Omnitracs Knowledge Base

Custom Driver Attribute

Information about a attribute is implemented in the Custom Driver Attribute object. The attributes of an Custom Driver Attribute object are:

 

Attribute

 

 

Description

 

name

A string of maximum length 60 containing the name of the attribute.

value

A string of maximum length 60 containing the value of the attribute.

WSDL Definition

Below is how the Asset Identifier object is defined in the WSDL

<complexType name="CustomDriverAttribute">

  <sequence>

    <element name="name" nillable="true" type="xsd:string"/>

    <element name="value" nillable="true" type="xsd:string"/>

  </sequence>

</complexType>

Sample XML

Here is some sample XML that shows what the Asset Identifier object will look like in XML.

<CustomDriverAttribute>

  <name>Shoe size</name>

  <value>9.5</value>

</CustomDriverAttribute>

  • Was this article helpful?