Class IdToKnownIdMapping
- Namespace
- Geotab.Checkmate.ObjectModel
- Assembly
- Geotab.Checkmate.ObjectModel.dll
The mapping for an encoded Id to an KnownId.
public class IdToKnownIdMapping
- Inheritance
-
IdToKnownIdMapping
- Inherited Members
Constructors
IdToKnownIdMapping(string, Id)
Initializes a new instance of the IdToKnownIdMapping class.
public IdToKnownIdMapping(string id, Id knownId)
Parameters
Properties
Id
Gets or sets the encoded Id.
public string Id { get; set; }
Property Value
KnownId
Gets or sets the KnownId.
public Id KnownId { get; set; }
Property Value
Methods
GetKnownIdMappings(Id?)
Gets a mapping of known Id and the corresponding database Id.
public static IEnumerable<IdToKnownIdMapping> GetKnownIdMappings(Id? inputId = null)
Parameters
inputId
IdThe inputId.
Returns
- IEnumerable<IdToKnownIdMapping>
A collection of IdToKnownIdMapping.