You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the problems with the the Downtime Cause and Classification fields is that they are either ids or the names.
When reading data the Cause and Classification fields will return Cause and Classification as int when ResolveIdentifiers = false and will return the fields as string when ResolveIdentifiers = true.
When reading data in the GetData request the Cause and Classification will read either string or int depending on the ResolveIdentifiers property.
When writing data in the SubmitData the Cause and Classification will need to be int.
This makes it difficult to map the Ampla records to and from the <TModel> object, especially if there are Cause and Classification properties.
The text was updated successfully, but these errors were encountered:
One of the problems with the the Downtime Cause and Classification fields is that they are either ids or the names.
When reading data the
Cause
andClassification
fields will return Cause and Classification asint
whenResolveIdentifiers = false
and will return the fields asstring
whenResolveIdentifiers = true
.When reading data in the
GetData
request theCause
andClassification
will read eitherstring
orint
depending on theResolveIdentifiers
property.When writing data in the
SubmitData
the Cause and Classification will need to beint
.This makes it difficult to map the Ampla records to and from the
<TModel>
object, especially if there areCause
andClassification
properties.The text was updated successfully, but these errors were encountered: