twilio 5.13.0 → 5.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/lib/rest/InsightsBase.d.ts +3 -0
  2. package/lib/rest/InsightsBase.js +5 -0
  3. package/lib/rest/insights/V2.d.ts +21 -0
  4. package/lib/rest/insights/V2.js +46 -0
  5. package/lib/rest/insights/v2/inbound.d.ts +436 -0
  6. package/lib/rest/insights/v2/inbound.js +342 -0
  7. package/lib/rest/insights/v2/outbound.d.ts +529 -0
  8. package/lib/rest/insights/v2/outbound.js +392 -0
  9. package/lib/rest/insights/v2/report.d.ts +783 -0
  10. package/lib/rest/insights/v2/report.js +550 -0
  11. package/lib/rest/messaging/v2/channelsSender.d.ts +4 -0
  12. package/lib/rest/messaging/v2/channelsSender.js +1 -0
  13. package/lib/rest/numbers/V1.d.ts +8 -0
  14. package/lib/rest/numbers/V1.js +12 -0
  15. package/lib/rest/numbers/v1/embeddedSession.d.ts +84 -0
  16. package/lib/rest/numbers/v1/embeddedSession.js +115 -0
  17. package/lib/rest/numbers/v1/senderIdRegistration.d.ts +181 -0
  18. package/lib/rest/numbers/v1/senderIdRegistration.js +146 -0
  19. package/lib/rest/numbers/v2/application.d.ts +191 -4
  20. package/lib/rest/numbers/v2/application.js +176 -3
  21. package/lib/rest/previewIam/versionless/organization/user.d.ts +65 -0
  22. package/lib/rest/previewIam/versionless/organization/user.js +72 -1
  23. package/lib/rest/studio/v2/flow/execution.d.ts +12 -0
  24. package/lib/rest/studio/v2/flow/execution.js +4 -0
  25. package/lib/rest/studio/v2/flow/flowRevision.d.ts +6 -0
  26. package/lib/rest/studio/v2/flow/flowRevision.js +2 -0
  27. package/lib/rest/studio/v2/flow.d.ts +6 -0
  28. package/lib/rest/studio/v2/flow.js +2 -0
  29. package/lib/rest/verify/v2/service/verification.d.ts +1 -1
  30. package/package.json +1 -1
@@ -1,7 +1,9 @@
1
1
  import Domain from "../base/Domain";
2
2
  import V1 from "./insights/V1";
3
+ import V2 from "./insights/V2";
3
4
  declare class InsightsBase extends Domain {
4
5
  _v1?: V1;
6
+ _v2?: V2;
5
7
  /**
6
8
  * Initialize insights domain
7
9
  *
@@ -9,5 +11,6 @@ declare class InsightsBase extends Domain {
9
11
  */
10
12
  constructor(twilio: any);
11
13
  get v1(): V1;
14
+ get v2(): V2;
12
15
  }
13
16
  export = InsightsBase;
@@ -14,6 +14,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
14
14
  };
15
15
  const Domain_1 = __importDefault(require("../base/Domain"));
16
16
  const V1_1 = __importDefault(require("./insights/V1"));
17
+ const V2_1 = __importDefault(require("./insights/V2"));
17
18
  class InsightsBase extends Domain_1.default {
18
19
  /**
19
20
  * Initialize insights domain
@@ -27,5 +28,9 @@ class InsightsBase extends Domain_1.default {
27
28
  this._v1 = this._v1 || new V1_1.default(this);
28
29
  return this._v1;
29
30
  }
31
+ get v2() {
32
+ this._v2 = this._v2 || new V2_1.default(this);
33
+ return this._v2;
34
+ }
30
35
  }
31
36
  module.exports = InsightsBase;
@@ -0,0 +1,21 @@
1
+ import InsightsBase from "../InsightsBase";
2
+ import Version from "../../base/Version";
3
+ import { InboundListInstance } from "./v2/inbound";
4
+ import { OutboundListInstance } from "./v2/outbound";
5
+ import { ReportListInstance } from "./v2/report";
6
+ export default class V2 extends Version {
7
+ /**
8
+ * Initialize the V2 version of Insights
9
+ *
10
+ * @param domain - The Twilio (Twilio.Insights) domain
11
+ */
12
+ constructor(domain: InsightsBase);
13
+ /** reports - { Twilio.Insights.V2.ReportListInstance } resource */
14
+ protected _reports?: ReportListInstance;
15
+ /** Accessor for inbound resource */
16
+ inbound(reportId: string): InboundListInstance;
17
+ /** Accessor for outbound resource */
18
+ outbound(reportId: string): OutboundListInstance;
19
+ /** Getter for reports resource */
20
+ get reports(): ReportListInstance;
21
+ }
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ /*
3
+ * This code was generated by
4
+ * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
5
+ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
6
+ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
7
+ *
8
+ * Sample/reference Twilio API.
9
+ * This is the reference API for the rest-proxy server.
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator.
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ var __importDefault = (this && this.__importDefault) || function (mod) {
16
+ return (mod && mod.__esModule) ? mod : { "default": mod };
17
+ };
18
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ const Version_1 = __importDefault(require("../../base/Version"));
20
+ const inbound_1 = require("./v2/inbound");
21
+ const outbound_1 = require("./v2/outbound");
22
+ const report_1 = require("./v2/report");
23
+ class V2 extends Version_1.default {
24
+ /**
25
+ * Initialize the V2 version of Insights
26
+ *
27
+ * @param domain - The Twilio (Twilio.Insights) domain
28
+ */
29
+ constructor(domain) {
30
+ super(domain, "v2");
31
+ }
32
+ /** Accessor for inbound resource */
33
+ inbound(reportId) {
34
+ return (0, inbound_1.InboundListInstance)(this, reportId);
35
+ }
36
+ /** Accessor for outbound resource */
37
+ outbound(reportId) {
38
+ return (0, outbound_1.OutboundListInstance)(this, reportId);
39
+ }
40
+ /** Getter for reports resource */
41
+ get reports() {
42
+ this._reports = this._reports || (0, report_1.ReportListInstance)(this);
43
+ return this._reports;
44
+ }
45
+ }
46
+ exports.default = V2;
@@ -0,0 +1,436 @@
1
+ import { inspect, InspectOptions } from "util";
2
+ import Page, { TwilioResponsePayload } from "../../../base/Page";
3
+ import Response from "../../../http/response";
4
+ import V2 from "../V2";
5
+ import { ApiResponse } from "../../../base/ApiResponse";
6
+ export declare class InsightsV2CreatePhoneNumbersReportRequest {
7
+ "timeRange"?: InsightsV2CreatePhoneNumbersReportRequestTimeRange;
8
+ "filters"?: Array<PhoneNumberReportFilter>;
9
+ /**
10
+ * The number of max available top Phone Numbers to generate.
11
+ */
12
+ "size"?: number;
13
+ constructor(payload: any);
14
+ }
15
+ export declare class InsightsV2CreatePhoneNumbersReportRequestTimeRange {
16
+ /**
17
+ * Start time of the report
18
+ */
19
+ "startTime"?: Date;
20
+ /**
21
+ * End time of the report
22
+ */
23
+ "endTime"?: Date;
24
+ constructor(payload: any);
25
+ }
26
+ /**
27
+ * Percentage of calls made in each state.
28
+ */
29
+ export declare class InsightsV2InboundPhoneNumberReportCallStatePercentage {
30
+ /**
31
+ * Percentage of completed inbound calls.
32
+ */
33
+ "completed"?: number;
34
+ /**
35
+ * Percentage of failed inbound calls.
36
+ */
37
+ "fail"?: number;
38
+ /**
39
+ * Percentage of busy inbound calls.
40
+ */
41
+ "busy"?: number;
42
+ /**
43
+ * Percentage of no-answer inbound calls.
44
+ */
45
+ "noanswer"?: number;
46
+ /**
47
+ * Percentage of canceled inbound calls.
48
+ */
49
+ "canceled"?: number;
50
+ constructor(payload: any);
51
+ }
52
+ export declare class PhoneNumberReportFilter {
53
+ /**
54
+ * The name of the filter
55
+ */
56
+ "key"?: string;
57
+ /**
58
+ * List of supported filter values for the field name
59
+ */
60
+ "values"?: Array<string>;
61
+ constructor(payload: any);
62
+ }
63
+ export declare class ReportFilter {
64
+ /**
65
+ * The name of the filter \'call_state\', \'call_direction\', \'call_type\', \'twilio_regions\', \'caller_country_code\', \'callee_country_code\', \'silent\'
66
+ */
67
+ "key"?: string;
68
+ /**
69
+ * List of supported filter values for the field name
70
+ */
71
+ "values"?: Array<string>;
72
+ constructor(payload: any);
73
+ }
74
+ export declare class ReportMetadata {
75
+ /**
76
+ * Start time of the report
77
+ */
78
+ "startTime"?: Date;
79
+ /**
80
+ * End time of the report
81
+ */
82
+ "endTime"?: Date;
83
+ /**
84
+ * Filter values applied to the report
85
+ */
86
+ "filters"?: Array<ReportFilter>;
87
+ constructor(payload: any);
88
+ }
89
+ /**
90
+ * The status of the report.
91
+ */
92
+ export type ReportStatus = "created" | "running" | "completed";
93
+ /**
94
+ * Options to pass to create a InboundInstance
95
+ */
96
+ export interface InboundContextCreateOptions {
97
+ /** */
98
+ insightsV2CreatePhoneNumbersReportRequest?: InsightsV2CreatePhoneNumbersReportRequest;
99
+ }
100
+ /**
101
+ * Options to pass to each
102
+ */
103
+ export interface InboundListInstanceEachOptions {
104
+ /** How many resources to return in each list page. */
105
+ pageSize?: number;
106
+ /** Function to process each record. If this and a positional callback are passed, this one will be used */
107
+ callback?: (item: InboundInstance, done: (err?: Error) => void) => void;
108
+ /** Function to be called upon completion of streaming */
109
+ done?: Function;
110
+ /** Upper limit for the number of records to return. each() guarantees never to return more than limit. Default is no limit */
111
+ limit?: number;
112
+ }
113
+ /**
114
+ * Options to pass to list
115
+ */
116
+ export interface InboundListInstanceOptions {
117
+ /** How many resources to return in each list page. */
118
+ pageSize?: number;
119
+ /** Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit */
120
+ limit?: number;
121
+ }
122
+ /**
123
+ * Options to pass to page
124
+ */
125
+ export interface InboundListInstancePageOptions {
126
+ /** How many resources to return in each list page. */
127
+ pageSize?: number;
128
+ /** Page Number, this value is simply for client state */
129
+ pageNumber?: number;
130
+ /** PageToken provided by the API */
131
+ pageToken?: string;
132
+ }
133
+ export interface InboundContext {
134
+ /**
135
+ * Create a InboundInstance
136
+ *
137
+ * @param callback - Callback to handle processed record
138
+ *
139
+ * @returns Resolves to processed InboundInstance
140
+ */
141
+ create(callback?: (error: Error | null, item?: InboundInstance) => any): Promise<InboundInstance>;
142
+ /**
143
+ * Create a InboundInstance
144
+ *
145
+ * @param params - Body for request
146
+ * @param headers - header params for request
147
+ * @param callback - Callback to handle processed record
148
+ *
149
+ * @returns Resolves to processed InboundInstance
150
+ */
151
+ create(params: InsightsV2CreatePhoneNumbersReportRequest, headers?: any, callback?: (error: Error | null, item?: InboundInstance) => any): Promise<InboundInstance>;
152
+ /**
153
+ * Create a InboundInstance and return HTTP info
154
+ *
155
+ * @param callback - Callback to handle processed record
156
+ *
157
+ * @returns Resolves to processed InboundInstance with HTTP metadata
158
+ */
159
+ createWithHttpInfo(callback?: (error: Error | null, item?: ApiResponse<InboundInstance>) => any): Promise<ApiResponse<InboundInstance>>;
160
+ /**
161
+ * Create a InboundInstance and return HTTP info
162
+ *
163
+ * @param params - Body for request
164
+ * @param headers - header params for request
165
+ * @param callback - Callback to handle processed record
166
+ *
167
+ * @returns Resolves to processed InboundInstance with HTTP metadata
168
+ */
169
+ createWithHttpInfo(params: InsightsV2CreatePhoneNumbersReportRequest, headers?: any, callback?: (error: Error | null, item?: ApiResponse<InboundInstance>) => any): Promise<ApiResponse<InboundInstance>>;
170
+ /**
171
+ * Provide a user-friendly representation
172
+ */
173
+ toJSON(): any;
174
+ [inspect.custom](_depth: any, options: InspectOptions): any;
175
+ }
176
+ export interface InboundContextSolution {
177
+ reportId: string;
178
+ }
179
+ export declare class InboundContextImpl implements InboundContext {
180
+ protected _version: V2;
181
+ protected _solution: InboundContextSolution;
182
+ protected _uri: string;
183
+ constructor(_version: V2, reportId: string);
184
+ create(params?: InsightsV2CreatePhoneNumbersReportRequest | ((error: Error | null, item?: InboundInstance) => any), headers?: any, callback?: (error: Error | null, item?: InboundInstance) => any): Promise<InboundInstance>;
185
+ createWithHttpInfo(params?: InsightsV2CreatePhoneNumbersReportRequest | ((error: Error | null, item?: ApiResponse<InboundInstance>) => any), headers?: any, callback?: (error: Error | null, item?: ApiResponse<InboundInstance>) => any): Promise<ApiResponse<InboundInstance>>;
186
+ /**
187
+ * Provide a user-friendly representation
188
+ *
189
+ * @returns Object
190
+ */
191
+ toJSON(): InboundContextSolution;
192
+ [inspect.custom](_depth: any, options: InspectOptions): string;
193
+ }
194
+ interface InboundPayload extends TwilioResponsePayload {
195
+ reports: InboundResource[];
196
+ }
197
+ interface InboundResource {
198
+ account_sid: string;
199
+ report_id: string;
200
+ status: ReportStatus;
201
+ request_meta: ReportMetadata;
202
+ url: string;
203
+ handle: string;
204
+ total_calls: number;
205
+ call_answer_score: number;
206
+ call_state_percentage: InsightsV2InboundPhoneNumberReportCallStatePercentage;
207
+ silent_calls_percentage: number;
208
+ }
209
+ export declare class InboundInstance {
210
+ protected _version: V2;
211
+ protected _solution: InboundContextSolution;
212
+ protected _context?: InboundContext;
213
+ constructor(_version: V2, payload: InboundResource, reportId?: string);
214
+ /**
215
+ * The unique SID identifier of the Account.
216
+ */
217
+ accountSid: string;
218
+ /**
219
+ * The report identifier as Voice Insights Report TTID.
220
+ */
221
+ reportId: string;
222
+ status: ReportStatus;
223
+ requestMeta: ReportMetadata;
224
+ /**
225
+ * The URL of this resource.
226
+ */
227
+ url: string;
228
+ /**
229
+ * Inbound phone number handle represented in the report.
230
+ */
231
+ handle: string;
232
+ /**
233
+ * Total number of calls made with the given handle during the report period.
234
+ */
235
+ totalCalls: number;
236
+ /**
237
+ * The call answer score measures customers behavior to the delivered calls. The score is a value between 0 and 100, where 100 indicates that all calls were successfully answered.
238
+ */
239
+ callAnswerScore: number;
240
+ callStatePercentage: InsightsV2InboundPhoneNumberReportCallStatePercentage;
241
+ /**
242
+ * Percentage of inbound calls with silence tags over total outbound calls. A silent tag is indicative of a connectivity issue or muted audio.
243
+ */
244
+ silentCallsPercentage: number;
245
+ private get _proxy();
246
+ /**
247
+ * Create a InboundInstance
248
+ *
249
+ * @param callback - Callback to handle processed record
250
+ *
251
+ * @returns Resolves to processed InboundInstance
252
+ */
253
+ create(callback?: (error: Error | null, item?: InboundInstance) => any): Promise<InboundInstance>;
254
+ /**
255
+ * Create a InboundInstance
256
+ *
257
+ * @param params - Body for request
258
+ * @param headers - header params for request
259
+ * @param callback - Callback to handle processed record
260
+ *
261
+ * @returns Resolves to processed InboundInstance
262
+ */
263
+ create(params: InsightsV2CreatePhoneNumbersReportRequest, headers?: any, callback?: (error: Error | null, item?: InboundInstance) => any): Promise<InboundInstance>;
264
+ /**
265
+ * Create a InboundInstance and return HTTP info
266
+ *
267
+ * @param callback - Callback to handle processed record
268
+ *
269
+ * @returns Resolves to processed InboundInstance with HTTP metadata
270
+ */
271
+ createWithHttpInfo(callback?: (error: Error | null, item?: ApiResponse<InboundInstance>) => any): Promise<ApiResponse<InboundInstance>>;
272
+ /**
273
+ * Create a InboundInstance and return HTTP info
274
+ *
275
+ * @param params - Body for request
276
+ * @param headers - header params for request
277
+ * @param callback - Callback to handle processed record
278
+ *
279
+ * @returns Resolves to processed InboundInstance with HTTP metadata
280
+ */
281
+ createWithHttpInfo(params: InsightsV2CreatePhoneNumbersReportRequest, headers?: any, callback?: (error: Error | null, item?: ApiResponse<InboundInstance>) => any): Promise<ApiResponse<InboundInstance>>;
282
+ /**
283
+ * Provide a user-friendly representation
284
+ *
285
+ * @returns Object
286
+ */
287
+ toJSON(): {
288
+ accountSid: string;
289
+ reportId: string;
290
+ status: ReportStatus;
291
+ requestMeta: ReportMetadata;
292
+ url: string;
293
+ handle: string;
294
+ totalCalls: number;
295
+ callAnswerScore: number;
296
+ callStatePercentage: InsightsV2InboundPhoneNumberReportCallStatePercentage;
297
+ silentCallsPercentage: number;
298
+ };
299
+ [inspect.custom](_depth: any, options: InspectOptions): string;
300
+ }
301
+ export interface InboundSolution {
302
+ reportId: string;
303
+ }
304
+ export interface InboundListInstance {
305
+ _version: V2;
306
+ _solution: InboundSolution;
307
+ _uri: string;
308
+ (reportId: string): InboundContext;
309
+ get(reportId: string): InboundContext;
310
+ /**
311
+ * Streams InboundInstance records from the API.
312
+ *
313
+ * This operation lazily loads records as efficiently as possible until the limit
314
+ * is reached.
315
+ *
316
+ * The results are passed into the callback function, so this operation is memory
317
+ * efficient.
318
+ *
319
+ * If a function is passed as the first argument, it will be used as the callback
320
+ * function.
321
+ *
322
+ * @param { InboundListInstanceEachOptions } [params] - Options for request
323
+ * @param { function } [callback] - Function to process each record
324
+ */
325
+ each(callback?: (item: InboundInstance, done: (err?: Error) => void) => void): void;
326
+ each(params: InboundListInstanceEachOptions, callback?: (item: InboundInstance, done: (err?: Error) => void) => void): void;
327
+ /**
328
+ * Streams InboundInstance records from the API with HTTP metadata captured per page.
329
+ *
330
+ * This operation lazily loads records as efficiently as possible until the limit
331
+ * is reached. HTTP metadata (status code, headers) is captured for each page request.
332
+ *
333
+ * The results are passed into the callback function, so this operation is memory
334
+ * efficient.
335
+ *
336
+ * If a function is passed as the first argument, it will be used as the callback
337
+ * function.
338
+ *
339
+ * @param { InboundListInstanceEachOptions } [params] - Options for request
340
+ * @param { function } [callback] - Function to process each record
341
+ */
342
+ eachWithHttpInfo(callback?: (item: InboundInstance, done: (err?: Error) => void) => void): void;
343
+ eachWithHttpInfo(params: InboundListInstanceEachOptions, callback?: (item: InboundInstance, done: (err?: Error) => void) => void): void;
344
+ /**
345
+ * Retrieve a single target page of InboundInstance records from the API.
346
+ *
347
+ * The request is executed immediately.
348
+ *
349
+ * @param { string } [targetUrl] - API-generated URL for the requested results page
350
+ * @param { function } [callback] - Callback to handle list of records
351
+ */
352
+ getPage(targetUrl: string, callback?: (error: Error | null, items: InboundPage) => any): Promise<InboundPage>;
353
+ /**
354
+ * Retrieve a single target page of InboundInstance records from the API with HTTP metadata.
355
+ *
356
+ * The request is executed immediately.
357
+ *
358
+ * @param { string } [targetUrl] - API-generated URL for the requested results page
359
+ * @param { function } [callback] - Callback to handle list of records with metadata
360
+ */
361
+ getPageWithHttpInfo(targetUrl: string, callback?: (error: Error | null, items: ApiResponse<InboundPage>) => any): Promise<ApiResponse<InboundPage>>;
362
+ /**
363
+ * Lists InboundInstance records from the API as a list.
364
+ *
365
+ * If a function is passed as the first argument, it will be used as the callback
366
+ * function.
367
+ *
368
+ * @param { InboundListInstanceOptions } [params] - Options for request
369
+ * @param { function } [callback] - Callback to handle list of records
370
+ */
371
+ list(callback?: (error: Error | null, items: InboundInstance[]) => any): Promise<InboundInstance[]>;
372
+ list(params: InboundListInstanceOptions, callback?: (error: Error | null, items: InboundInstance[]) => any): Promise<InboundInstance[]>;
373
+ /**
374
+ * Lists InboundInstance records from the API as a list with HTTP metadata.
375
+ *
376
+ * Returns all records along with HTTP metadata from the first page fetched.
377
+ *
378
+ * If a function is passed as the first argument, it will be used as the callback
379
+ * function.
380
+ *
381
+ * @param { InboundListInstanceOptions } [params] - Options for request
382
+ * @param { function } [callback] - Callback to handle list of records with metadata
383
+ */
384
+ listWithHttpInfo(callback?: (error: Error | null, items: ApiResponse<InboundInstance[]>) => any): Promise<ApiResponse<InboundInstance[]>>;
385
+ listWithHttpInfo(params: InboundListInstanceOptions, callback?: (error: Error | null, items: ApiResponse<InboundInstance[]>) => any): Promise<ApiResponse<InboundInstance[]>>;
386
+ /**
387
+ * Retrieve a single page of InboundInstance records from the API.
388
+ *
389
+ * The request is executed immediately.
390
+ *
391
+ * If a function is passed as the first argument, it will be used as the callback
392
+ * function.
393
+ *
394
+ * @param { InboundListInstancePageOptions } [params] - Options for request
395
+ * @param { function } [callback] - Callback to handle list of records
396
+ */
397
+ page(callback?: (error: Error | null, items: InboundPage) => any): Promise<InboundPage>;
398
+ page(params: InboundListInstancePageOptions, callback?: (error: Error | null, items: InboundPage) => any): Promise<InboundPage>;
399
+ /**
400
+ * Retrieve a single page of InboundInstance records from the API with HTTP metadata.
401
+ *
402
+ * The request is executed immediately.
403
+ *
404
+ * If a function is passed as the first argument, it will be used as the callback
405
+ * function.
406
+ *
407
+ * @param { InboundListInstancePageOptions } [params] - Options for request
408
+ * @param { function } [callback] - Callback to handle list of records with metadata
409
+ */
410
+ pageWithHttpInfo(callback?: (error: Error | null, items: ApiResponse<InboundPage>) => any): Promise<ApiResponse<InboundPage>>;
411
+ pageWithHttpInfo(params: InboundListInstancePageOptions, callback?: (error: Error | null, items: ApiResponse<InboundPage>) => any): Promise<ApiResponse<InboundPage>>;
412
+ /**
413
+ * Provide a user-friendly representation
414
+ */
415
+ toJSON(): any;
416
+ [inspect.custom](_depth: any, options: InspectOptions): any;
417
+ }
418
+ export declare function InboundListInstance(version: V2, reportId: string): InboundListInstance;
419
+ export declare class InboundPage extends Page<V2, InboundPayload, InboundResource, InboundInstance> {
420
+ /**
421
+ * Initialize the InboundPage
422
+ *
423
+ * @param version - Version of the resource
424
+ * @param response - Response from the API
425
+ * @param solution - Path solution
426
+ */
427
+ constructor(version: V2, response: Response<string>, solution: InboundSolution);
428
+ /**
429
+ * Build an instance of InboundInstance
430
+ *
431
+ * @param payload - Payload response from the API
432
+ */
433
+ getInstance(payload: InboundResource): InboundInstance;
434
+ [inspect.custom](depth: any, options: InspectOptions): string;
435
+ }
436
+ export {};