Interface IPoiCreateOptions
- Namespace
- XENBIT.ResQueServe.Abstractions.Interfaces
- Assembly
- RQS.Abstractions.dll
Resolves address identifiers during import / create operations by either using a known address ID or performing a lookup query to find the best matching address.
public interface IPoiCreateOptions
Properties
AddressId
Gets or sets the address identifier. When set, this value is directly assigned during import / create actions. If null, the AddressIdLookupQuery is used to resolve the address ID.
long? AddressId { get; set; }
Property Value
- long?
AddressIdLookupQuery
Gets or sets the query string used to lookup and resolve the address identifier when AddressId is not known. The query will return the first/best match for the address.
string? AddressIdLookupQuery { get; set; }
Property Value
FailIfAddressIdNotFound
Gets or sets the whenever the process should fail, if no address id could be assigned. If false, address object will be null if address id not determined. If true, ProblemInformation will throw.
bool FailIfAddressIdNotFound { get; set; }