Qore SalesforceRestDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
SalesforceRestTablesDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
36 static hash<DataProviderSummaryInfo> ProviderSummaryInfo = cast<hash<DataProviderSummaryInfo>>(ProviderInfo{
37 AbstractDataProvider::DataProviderSummaryInfoKeys
38 });
39
41 constructor(SalesforceRestClient rest) ;
42
43
45 constructor(*hash<auto> options);
46
47
49 string getName();
50
51
53 *string getDesc();
54
55
57 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
58
59
61
63protected:
65public:
66
67
69
73protected:
74 *AbstractDataProvider getChildProviderImpl(string name);
75public:
76
77
79protected:
80 hash<DataProviderInfo> getStaticInfoImpl();
81public:
82
83
85protected:
86 static *hash<auto> getClientOptions(*hash<auto> copts);
87public:
88
89};
90};
The SalesforceRest data provider class.
Definition SalesforceRestDataProviderBase.qc.dox.h:28
SalesforceRestClient::SalesforceRestClient rest
The REST client object for API calls.
Definition SalesforceRestDataProviderBase.qc.dox.h:48
The SalesforceRest data provider class.
Definition SalesforceRestTablesDataProvider.qc.dox.h:28
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*string getDesc()
Returns the data provider description.
constructor(SalesforceRestClient rest)
Creates the object from the arguments.
const ProviderInfo
Provider info.
Definition SalesforceRestTablesDataProvider.qc.dox.h:32
static hash< DataProviderSummaryInfo > ProviderSummaryInfo
Provider summary info.
Definition SalesforceRestTablesDataProvider.qc.dox.h:36
string getName()
Returns the data provider name.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
static *hash< auto > getClientOptions(*hash< auto > copts)
Returns options for the SalesforceRestClient.
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
constructor(*hash< auto > options)
Creates the object from constructor options.
Qore SalesforceRestDataProvider module definition.
Definition SalesforceRestDataProvider.qc.dox.h:26