Qore GmailDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
GmailBaseDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace GmailDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
39protected:
40 const ChildMap = ...;
41
42
43public:
44
46 constructor(*hash<auto> options) ;
47
48
51
52
54 string getName();
55
56
58 *string getDesc();
59
60
62 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
63
64
66
68protected:
70public:
71
72
74
78protected:
80public:
81
82
84protected:
85 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
86public:
87
88};
89};
The parent class for Gmail REST APIs.
Definition GmailBaseDataProvider.qc.dox.h:28
const ProviderInfo
Provider info.
Definition GmailBaseDataProvider.qc.dox.h:32
constructor(*hash< auto > options)
Creates the object from constructor options.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
constructor(GoogleRestClient::GoogleRestClient rest)
Creates the object from a REST connection.
*string getDesc()
Returns the data provider description.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
const ProviderSummaryInfo
Provider summary info.
Definition GmailBaseDataProvider.qc.dox.h:36
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or NOTHING if the given child is unknown.
string getName()
Returns the data provider name.
Qore GmailDataProvider module definition.
Definition GmailAttachmentWatchDataProvider.qc.dox.h:26