QPlaceIdReply¶
The
QPlaceIdReply
class manages operations which return an identifier such as saving and removal operations of places and categories. More…
Synopsis¶
Functions¶
def
id
()def
operationType
()def
setId
(identifier)
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
- class PySide2.QtLocation.QPlaceIdReply(operationType[, parent=None])¶
- param parent:
- param operationType:
Constructs a reply which contains the identifier of the object operated upon. The reply is for the given
operationType
and withparent
.
- 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
- PySide2.QtLocation.QPlaceIdReply.operationType()¶
- Return type:
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.
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.