API browser of generalFormRequest450 COM module


/images/arrow_right.png IGeneralFormRequest::GetStructRoles method space
This method has a Restful Webservice representation only!
Method for collecting all structure role data covered by the IGeneralFormRequest interface and returned as JSON array.
 
Please note that IGeneralCreditRequest::GetStructRoles takes over the functionality of the iterator pair IGeneralCreditRequest::GetFirstStructRole / IGeneralCreditRequest::GetNextStructRole with a single call, making the latter superfluous.
space
/images/arrow_right.png Restful webservice calling syntax
[POST] /baseURL/IGeneralFormRequest/GetStructRoles
[JSON input data] pIGeneralFormRequest: longValue,    //interface address
[JSON result array] { peStructRoleType:
pbstrStructName:
plIndex:
plMaxOccurs:
peIsDefined:
pbstrConstraint:
pbStatus:
longValue,
"utf8StringValue",
longValue,
longValue,
longValue,
"utf8StringValue",
booleanValue
  },
[HTTP result status] 200 Return status 200 signals a successful method call
204 Return status 204 (noContent) signals that the end of an iteration is reached
>= 400 Return status >= 400 signals an unsuccessful function call. The returned JSON{errorCode: code, errorText:"text"} supplies the error message the same as GetAbortInfo() would do.
space
/images/arrow_right.png Calling argument description
[out] StructRoleType *peStructRoleType The role type/typification of the structure defined by the StructRoleType enumerator.
[out] BSTR *pbstrStructName The PDF internal variable name/placeholder onto which the structure was mapped.
[out] long *plIndex The '0'-based index into the array of structures of the given structure role type.
[out] long *plMaxOccurs The maximal cardinality of this given structure role type
[out] YesNoType *peIsDefined Boolean that designates if the structure is already preset and defined (enYes) or not (enNo)
[out] BSTR *pbstrConstraint bstrConstraint is -if defined at all- a constraint onto the value space, a constraint of the time axis (appinfo machine instruction) or a natural language based instruction (annotation). The constraint of a structure is formatted by using/defining variables of the corresponding method and setting/assigning a constraint value. These token=value sets are whitespace separated, case-insensitive and the notation is exactly as in the API documentation.

Furthermore, there are situations where a constraint of the value space is defined by the applicable law. Therefore, the aforementioned token=value set can optionally be augmented by a eLawType set, e.g. eLawType=enUVG for setting the law to UVG (cf the enumeration space of eLawType for the possible set of values!).

For example the constraint on the right distant sphere of an eyeglass prescription can be defined in terms of the numericResult structure as:

eResultCodeType =enResultCodeLoinc && bstrCode=28826-6

Please note, that the constraint is not enforced by the COM module to allow other data as well - in that sense, it is more a hint than a constraint. However, it does not make any sense e.g. to add a HbA1c lab result for the aforementioned distant sphere case!

[out,retval] VARIANT_BOOL *pbStatus Return status of the method. If pbStatus is VARIANT_FALSE the end of data is reached
space