blpapi.Request¶
-
class
blpapi.Request¶ A single request to a single service.
Requestobjects are created usingService.createRequest()orService.createAuthorizationRequest(). They are used withSession.sendRequest()orSession.sendAuthorizationRequest().The
Requestobject contains the parameters for a single request to a single service. Once aRequesthas been created its fields can be populated directly using the functions provided byElementor using theElementinterface on theElementreturned byasElement().The schema for the
Requestcan be queried using theElementinterface.-
append(name, value)¶ Equivalent to
getElement(name).appendValue(value).
-
destroy()¶ Destructor.
-
getElement(name)¶ Equivalent to
asElement().getElement(name).
-
set(name, value)¶ Equivalent to
asElement().setElement(name, value).
-
toString(level=0, spacesPerLevel=4)¶ Equivalent to
asElement().toString(level, spacesPerLevel).
-