deviceJobCreator Data Type

Namespace
http://eurotech.com/edc/2.0
Schema
edc.xsd
Properties
name data type type namespace min/max occurs constraints description
accountId long element edc 1/1 required  
jobType deviceJobType element edc 0/1    
jobDisplayName string element edc 0/1    
jobProperties string element edc 0/1    
jobAttachment jobAttachmentCreator element edc 0/1    
targetClientIds list of string element edc 0/unbounded    
targetDeviceTag list of long element edc 0/unbounded    
startOn dateTime element edc 0/1    
endOn dateTime element edc 0/1    
timezoneInMins int element edc 1/1 required  
cronRetryExpression string element edc 0/1    
retryEvery int element edc 1/1 required  
retryMaxAttempts int element edc 1/1 required  
selectAllClientIds boolean element edc 1/1 required  
jobPropertiesMap parametersMapType element edc 0/1    
requestTimeout long element edc 0/1    
processOnConnect boolean element edc 1/1 required  
sendWakeupSMS boolean element edc 1/1 required  
wakeupTimeout long element edc 0/1    
deviceInactivityTimeout long element edc 0/1    

Example

<deviceJobCreator xmlns="http://eurotech.com/edc/2.0">
  <accountId>...</accountId>
  <jobType>...</jobType>
  <jobDisplayName>...</jobDisplayName>
  <jobAttachment>
    <name>...</name>
    <contentType>...</contentType>
    <body>...</body>
  </jobAttachment>
  <targetClientIds>...</targetClientIds>
  <targetDeviceTag>...</targetDeviceTag>
  <startOn>...</startOn>
  <endOn>...</endOn>
  <timezoneInMins>...</timezoneInMins>
  <cronRetryExpression>...</cronRetryExpression>
  <retryEvery>...</retryEvery>
  <retryMaxAttempts>...</retryMaxAttempts>
  <selectAllClientIds>...</selectAllClientIds>
  <jobPropertiesMap>
    <parameter>
      <name>...</name>
      <value>...</value>
    </parameter>
  </jobPropertiesMap>
  <requestTimeout>...</requestTimeout>
  <processOnConnect>...</processOnConnect>
  <sendWakeupSMS>...</sendWakeupSMS>
  <wakeupTimeout>...</wakeupTimeout>
  <deviceInactivityTimeout>...</deviceInactivityTimeout>
</deviceJobCreator>