QPlaceIdReply

The QPlaceIdReply class manages operations which return an identifier such as saving and removal operations of places and categories. More

Inheritance diagram of PySide2.QtLocation.QPlaceIdReply

Synopsis

Functions

Detailed Description

The QPlaceIdReply can be considered a multipurpose reply in that it can be used to save places, save categories, remove places and remove categories. In each case it returns an identifier of the place or category that was added, modified or removed.

See Saving a place for an example of how to use an identifier reply.

See also

QPlaceManager

class PySide2.QtLocation.QPlaceIdReply(operationType[, parent=None])
param parent:

PySide2.QtCore.QObject

param operationType:

OperationType

Constructs a reply which contains the identifier of the object operated upon. The reply is for the given operationType and with parent .

PySide2.QtLocation.QPlaceIdReply.OperationType

Defines the type of operation that was used to generate this reply.

Constant

Description

QPlaceIdReply.SavePlace

The reply was created for a save place operation

QPlaceIdReply.RemovePlace

The reply was created for a remove place operation.

QPlaceIdReply.SaveCategory

The reply was created for a save category operation

QPlaceIdReply.RemoveCategory

The reply was created for a remove category operation.

PySide2.QtLocation.QPlaceIdReply.id()
Return type:

str

Returns the relevant identifier for the operation. For example for a save place operation, the identifier is that of the saved place. For a category removal operation, it is the identifier of the category that was removed.

See also

setId()

PySide2.QtLocation.QPlaceIdReply.operationType()
Return type:

OperationType

Returns the operation type of the reply. This means whether this identifier reply was for a save place operation, remove category operation and so on.

PySide2.QtLocation.QPlaceIdReply.setId(identifier)
Parameters:

identifier – str

Sets the identifier of the reply.

See also

id()