Address Verification (On-Premises)
- Address Verification (On-Premises) 6.1.0
- All Products
IDVE_EXPORTCALL1 IDVE_StatusCode IDVE_EXPORTCALL2IDVE_GetBool( const char* const kpksCustomerID, const char* const kpksURI,IDVE_Bool* const kbValue, IDVE_Bool* const kpbIsValuePresent, char* const kpsExtStatusMsg );
Parameter
| Operation
| Comment
|
---|---|---|
const char* const kpksCustomerID
| [in]
| Pointer to the zero-terminated 7-bit ASCII-encoded customer ID. The value might not be NULL.
|
const char* const kpksURI
| [in]
| Pointer to the zero-terminated 7-bit ASCII URI, for example " AV/v1/Jobs/0/IO/Outputs/0/ResultInfo/ResultCountOverflow ". The value might not be NULL.
|
IDVE_Bool* const kbValue
| [out]
| Pointer to a boolean value that the user provides. The boolean receives a copy of the boolean value present at the given URI. The pointer must not be NULL.
|
IDVE_Bool* const kpbIsValuePresent
| [out]
| Pointer to the boolean value to be retrieved by the function call. If you provide a valid pointer for kpbIsValuePresent, the function will indicate if the value at the given URI is present by setting kpbIsValuePresent to true or false.
If you provide NULL for kpbIsValuePresent and the boolean value that you want to retrieve does not exist, the function call will report an error. If you provide NULL for kpbIsValuePresent and the boolean value exists, it is retrieved normally.
|
char* const kpsExtStatusMsg
| [out]
| Pointer to a buffer of size IDVE_EXT_STATUS_MSG_BUFFER_SIZE for an optional extended status message. The value can be NULL.
|