Skip to main content
Omnitracs Knowledge Base

SuspendedLandmark

SuspendedLandmark is implemented as the SuspendedLandmark class. A SuspendedLandmark object provides basic information of a suspended landmark within the system. The attributes of SuspendedLandmark are:

 

Attribute

 

 

Description

 

asset

An AssetIdentifier containing the Standard Carrier Alpha Code (SCAC) and identifier for the vehicle/trailer.

assetType

A string value indicating the type of equipment. Possible values are:

  • "0" - Vehicle
  • "1" - Trailer

landmarkNames

An OLOXWebServices LandmarkNames object containing the name and aliases of a landmark.

WSDL Definition

Here is how the SuspendedLandmark object is defined within the WSDL.

<complexType name="SuspendedLandmark">

   <sequence>

      <element name="asset" nillable="true" type="tns2:AssetIdentifier">

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

      <element name="landmarkNames" nillable="true" type="tns2:LandmarkNames">

   </sequence>

</complexType>

Sample XML

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

<SuspendedLandmark>

    <asset>

        <id>AVEHICLE</id>

        <scac></scac>

    </asset>

    <assetType>0</assetType>

    <landmarkNames>

        <aliases>

            <string>LMKALIAS1</string>

            <string>LMKALIAS2</string>

            <string>LMKALIAS3</string>

        </aliases>

        <name>COMPLMK</name>

    </landmarkNames>

</SuspendedLandmark>

  • Was this article helpful?