GData.ContactsQuery¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
class |
|
class |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Virtual Methods¶
- Inherited:
Properties¶
- Inherited:
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r/w |
Constrains the results to only those belonging to the group specified. |
||
r/w |
Sorting criterion. |
||
r/w |
Whether to include deleted contacts in the query feed. |
||
r/w |
Sorting order direction. |
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
parent |
r |
Class Details¶
- class GData.ContactsQuery(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
All the fields in the
GData.ContactsQuery
structure are private and should never be accessed directly.New in version 0.2.0.
- classmethod new(q)¶
- Parameters:
- Returns:
a new
GData.ContactsQuery
- Return type:
Creates a new
GData.ContactsQuery
with itsGData.Query
:q
property set to q.New in version 0.2.0.
- classmethod new_with_limits(q, start_index, max_results)¶
- Parameters:
- Returns:
a new
GData.ContactsQuery
- Return type:
Creates a new
GData.ContactsQuery
with itsGData.Query
:q
property set to q, and the limits start_index and max_results applied.New in version 0.2.0.
- get_group()¶
-
Gets the
GData.ContactsQuery
:group
property.New in version 0.2.0.
- get_order_by()¶
-
Gets the
GData.ContactsQuery
:order-by
property.New in version 0.2.0.
- get_sort_order()¶
-
Gets the
GData.ContactsQuery
:sort-order
property.New in version 0.2.0.
- set_group(group)¶
-
Sets the
GData.ContactsQuery
:group
property of theGData.ContactsQuery
to the new group ID URI, group.Set group to
None
to unset the property in the query URI.New in version 0.2.0.
- set_order_by(order_by)¶
-
Sets the
GData.ContactsQuery
:order-by
property of theGData.ContactsQuery
to the new order by string, order_by.Set order_by to
None
to unset the property in the query URI.New in version 0.2.0.
- set_show_deleted(show_deleted)¶
-
Sets the
GData.ContactsQuery
:show-deleted
property of theGData.ContactsQuery
.New in version 0.2.0.
- set_sort_order(sort_order)¶
-
Sets the
GData.ContactsQuery
:sort-order
property of theGData.ContactsQuery
to the new sort order string, sort_order.Set sort_order to
None
to unset the property in the query URI.New in version 0.2.0.
- show_deleted()¶
-
Gets the
GData.ContactsQuery
:show-deleted
property.New in version 0.2.0.
Property Details¶
- GData.ContactsQuery.props.group¶
-
Constrains the results to only those belonging to the group specified. The value of this parameter should be a group ID URI.
New in version 0.2.0.
- GData.ContactsQuery.props.order_by¶
-
Sorting criterion. The only supported value is
lastmodified
.New in version 0.2.0.
- GData.ContactsQuery.props.show_deleted¶
-
Whether to include deleted contacts in the query feed. Deleted contacts return
True
fromGData.ContactsContact.is_deleted
(), and have no other information. They do not normally appear in query results.New in version 0.2.0.