-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathAccountApi.cs
311 lines (272 loc) · 13.7 KB
/
AccountApi.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
* SendinBlue API
*
* SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/sendinblue **Possible responses** | Code | Message | | :- -- -- -- -- -- --: | - -- -- -- -- -- -- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable |
*
* OpenAPI spec version: 3.0.0
* Contact: [email protected]
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using RestSharp.Portable;
using sib_api_v3_sdk.Client;
using sib_api_v3_sdk.Model;
namespace sib_api_v3_sdk.Api
{
/// <summary>
/// Represents a collection of functions to interact with the API endpoints
/// </summary>
public interface IAccountApi : IApiAccessor
{
#region Synchronous Operations
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <remarks>
///
/// </remarks>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>GetAccount</returns>
GetAccount GetAccount ();
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <remarks>
///
/// </remarks>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>ApiResponse of GetAccount</returns>
ApiResponse<GetAccount> GetAccountWithHttpInfo ();
#endregion Synchronous Operations
#region Asynchronous Operations
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <remarks>
///
/// </remarks>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>Task of GetAccount</returns>
System.Threading.Tasks.Task<GetAccount> GetAccountAsync ();
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <remarks>
///
/// </remarks>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>Task of ApiResponse (GetAccount)</returns>
System.Threading.Tasks.Task<ApiResponse<GetAccount>> GetAccountAsyncWithHttpInfo ();
#endregion Asynchronous Operations
}
/// <summary>
/// Represents a collection of functions to interact with the API endpoints
/// </summary>
public partial class AccountApi : IAccountApi
{
private sib_api_v3_sdk.Client.ExceptionFactory _exceptionFactory = (name, response) => null;
/// <summary>
/// Initializes a new instance of the <see cref="AccountApi"/> class.
/// </summary>
/// <returns></returns>
public AccountApi(String basePath)
{
this.Configuration = new sib_api_v3_sdk.Client.Configuration { BasePath = basePath };
ExceptionFactory = sib_api_v3_sdk.Client.Configuration.DefaultExceptionFactory;
}
/// <summary>
/// Initializes a new instance of the <see cref="AccountApi"/> class
/// using Configuration object
/// </summary>
/// <param name="configuration">An instance of Configuration</param>
/// <returns></returns>
public AccountApi(sib_api_v3_sdk.Client.Configuration configuration = null)
{
if (configuration == null) // use the default one in Configuration
this.Configuration = sib_api_v3_sdk.Client.Configuration.Default;
else
this.Configuration = configuration;
ExceptionFactory = sib_api_v3_sdk.Client.Configuration.DefaultExceptionFactory;
}
/// <summary>
/// Gets the base path of the API client.
/// </summary>
/// <value>The base path</value>
public String GetBasePath()
{
return this.Configuration.ApiClient.RestClient.BaseUrl.ToString();
}
/// <summary>
/// Sets the base path of the API client.
/// </summary>
/// <value>The base path</value>
[Obsolete("SetBasePath is deprecated, please do 'Configuration.ApiClient = new ApiClient(\"http://new-path\")' instead.")]
public void SetBasePath(String basePath)
{
// do nothing
}
/// <summary>
/// Gets or sets the configuration object
/// </summary>
/// <value>An instance of the Configuration</value>
public sib_api_v3_sdk.Client.Configuration Configuration {get; set;}
/// <summary>
/// Provides a factory method hook for the creation of exceptions.
/// </summary>
public sib_api_v3_sdk.Client.ExceptionFactory ExceptionFactory
{
get
{
if (_exceptionFactory != null && _exceptionFactory.GetInvocationList().Length > 1)
{
throw new InvalidOperationException("Multicast delegate for ExceptionFactory is unsupported.");
}
return _exceptionFactory;
}
set { _exceptionFactory = value; }
}
/// <summary>
/// Gets the default header.
/// </summary>
/// <returns>Dictionary of HTTP header</returns>
[Obsolete("DefaultHeader is deprecated, please use Configuration.DefaultHeader instead.")]
public IDictionary<String, String> DefaultHeader()
{
return new ReadOnlyDictionary<string, string>(this.Configuration.DefaultHeader);
}
/// <summary>
/// Add default header.
/// </summary>
/// <param name="key">Header field name.</param>
/// <param name="value">Header field value.</param>
/// <returns></returns>
[Obsolete("AddDefaultHeader is deprecated, please use Configuration.AddDefaultHeader instead.")]
public void AddDefaultHeader(string key, string value)
{
this.Configuration.AddDefaultHeader(key, value);
}
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>GetAccount</returns>
public GetAccount GetAccount ()
{
ApiResponse<GetAccount> localVarResponse = GetAccountWithHttpInfo();
return localVarResponse.Data;
}
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>ApiResponse of GetAccount</returns>
public ApiResponse< GetAccount > GetAccountWithHttpInfo ()
{
var localVarPath = "./account";
var localVarPathParams = new Dictionary<String, String>();
var localVarQueryParams = new List<KeyValuePair<String, String>>();
var localVarHeaderParams = new Dictionary<String, String>(this.Configuration.DefaultHeader);
var localVarFormParams = new Dictionary<String, String>();
var localVarFileParams = new Dictionary<String, FileParameter>();
Object localVarPostBody = null;
// to determine the Content-Type header
String[] localVarHttpContentTypes = new String[] {
"application/json"
};
String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);
// to determine the Accept header
String[] localVarHttpHeaderAccepts = new String[] {
"application/json"
};
String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);
if (localVarHttpHeaderAccept != null)
localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
// authentication (api-key) required
if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("api-key")))
{
localVarHeaderParams["api-key"] = this.Configuration.GetApiKeyWithPrefix("api-key");
}
// authentication (partner-key) required
if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("partner-key")))
{
localVarHeaderParams["partner-key"] = this.Configuration.GetApiKeyWithPrefix("partner-key");
}
// make the HTTP request
IRestResponse localVarResponse = (IRestResponse) this.Configuration.ApiClient.CallApi(localVarPath,
Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
localVarPathParams, localVarHttpContentType);
int localVarStatusCode = (int) localVarResponse.StatusCode;
if (ExceptionFactory != null)
{
Exception exception = ExceptionFactory("GetAccount", localVarResponse);
if (exception != null) throw exception;
}
return new ApiResponse<GetAccount>(localVarStatusCode,
localVarResponse.Headers.ToDictionary(x => x.Key, x => x.Value.ToString()),
(GetAccount) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(GetAccount)));
}
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>Task of GetAccount</returns>
public async System.Threading.Tasks.Task<GetAccount> GetAccountAsync ()
{
ApiResponse<GetAccount> localVarResponse = await GetAccountAsyncWithHttpInfo();
return localVarResponse.Data;
}
/// <summary>
/// Get your account information, plan and credits details
/// </summary>
/// <exception cref="sib_api_v3_sdk.Client.ApiException">Thrown when fails to make API call</exception>
/// <returns>Task of ApiResponse (GetAccount)</returns>
public async System.Threading.Tasks.Task<ApiResponse<GetAccount>> GetAccountAsyncWithHttpInfo ()
{
var localVarPath = "./account";
var localVarPathParams = new Dictionary<String, String>();
var localVarQueryParams = new List<KeyValuePair<String, String>>();
var localVarHeaderParams = new Dictionary<String, String>(this.Configuration.DefaultHeader);
var localVarFormParams = new Dictionary<String, String>();
var localVarFileParams = new Dictionary<String, FileParameter>();
Object localVarPostBody = null;
// to determine the Content-Type header
String[] localVarHttpContentTypes = new String[] {
"application/json"
};
String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);
// to determine the Accept header
String[] localVarHttpHeaderAccepts = new String[] {
"application/json"
};
String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);
if (localVarHttpHeaderAccept != null)
localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
// authentication (api-key) required
if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("api-key")))
{
localVarHeaderParams["api-key"] = this.Configuration.GetApiKeyWithPrefix("api-key");
}
// authentication (partner-key) required
if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("partner-key")))
{
localVarHeaderParams["partner-key"] = this.Configuration.GetApiKeyWithPrefix("partner-key");
}
// make the HTTP request
IRestResponse localVarResponse = (IRestResponse) await this.Configuration.ApiClient.CallApiAsync(localVarPath,
Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
localVarPathParams, localVarHttpContentType);
int localVarStatusCode = (int) localVarResponse.StatusCode;
if (ExceptionFactory != null)
{
Exception exception = ExceptionFactory("GetAccount", localVarResponse);
if (exception != null) throw exception;
}
return new ApiResponse<GetAccount>(localVarStatusCode,
localVarResponse.Headers.ToDictionary(x => x.Key, x => x.Value.ToString()),
(GetAccount) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(GetAccount)));
}
}
}