GData.Batchable¶
- Implementations:
GData.CalendarService
,GData.ContactsService
,GData.DocumentsService
,GData.YouTubeService
Methods¶
|
Virtual Methods¶
None
Properties¶
None
Signals¶
None
Fields¶
None
Class Details¶
- class GData.Batchable¶
- Bases:
- Structure:
All the fields in the
GData.Batchable
structure are private and should never be accessed directly.New in version 0.7.0.
- create_operation(domain, feed_uri)¶
- Parameters:
domain (
GData.AuthorizationDomain
orNone
) – theGData.AuthorizationDomain
to authorize the operation, orNone
feed_uri (
str
) – the URI to send the batch operation request to
- Returns:
a new
GData.BatchOperation
; unref withGObject.Object.unref
()- Return type:
Creates a new
GData.BatchOperation
for the givenGData.Batchable
service, and with the given feed_uri. feed_uri is normally theGData.LINK_BATCH
link URI in the appropriateGData.Feed
from the service. If authorization will be required to perform any of the requests in the batch operation, domain must be non-None
, and must be an authorization domain which covers all of the requests. Otherwise, domain may beNone
if authorization is not required.New in version 0.9.0.