-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlogs.go
621 lines (551 loc) · 16.9 KB
/
logs.go
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
fmt "fmt"
internal "github.com/VapiAI/server-sdk-go/internal"
time "time"
)
type LoggingControllerLogsDeleteQueryRequest struct {
// This is the type of the log.
Type *LoggingControllerLogsDeleteQueryRequestType `json:"-" url:"type,omitempty"`
AssistantId *string `json:"-" url:"assistantId,omitempty"`
// This is the ID of the phone number.
PhoneNumberId *string `json:"-" url:"phoneNumberId,omitempty"`
// This is the ID of the customer.
CustomerId *string `json:"-" url:"customerId,omitempty"`
// This is the ID of the squad.
SquadId *string `json:"-" url:"squadId,omitempty"`
// This is the ID of the call.
CallId *string `json:"-" url:"callId,omitempty"`
}
type LogsGetRequest struct {
// This is the type of the log.
Type *LogsGetRequestType `json:"-" url:"type,omitempty"`
// This is the type of the webhook, given the log is from a webhook.
WebhookType *string `json:"-" url:"webhookType,omitempty"`
// This is the ID of the assistant.
AssistantId *string `json:"-" url:"assistantId,omitempty"`
// This is the ID of the phone number.
PhoneNumberId *string `json:"-" url:"phoneNumberId,omitempty"`
// This is the ID of the customer.
CustomerId *string `json:"-" url:"customerId,omitempty"`
// This is the ID of the squad.
SquadId *string `json:"-" url:"squadId,omitempty"`
// This is the ID of the call.
CallId *string `json:"-" url:"callId,omitempty"`
// This is the page number to return. Defaults to 1.
Page *float64 `json:"-" url:"page,omitempty"`
// This is the sort order for pagination. Defaults to 'DESC'.
SortOrder *LogsGetRequestSortOrder `json:"-" url:"sortOrder,omitempty"`
// This is the maximum number of items to return. Defaults to 100.
Limit *float64 `json:"-" url:"limit,omitempty"`
// This will return items where the createdAt is greater than the specified value.
CreatedAtGt *time.Time `json:"-" url:"createdAtGt,omitempty"`
// This will return items where the createdAt is less than the specified value.
CreatedAtLt *time.Time `json:"-" url:"createdAtLt,omitempty"`
// This will return items where the createdAt is greater than or equal to the specified value.
CreatedAtGe *time.Time `json:"-" url:"createdAtGe,omitempty"`
// This will return items where the createdAt is less than or equal to the specified value.
CreatedAtLe *time.Time `json:"-" url:"createdAtLe,omitempty"`
// This will return items where the updatedAt is greater than the specified value.
UpdatedAtGt *time.Time `json:"-" url:"updatedAtGt,omitempty"`
// This will return items where the updatedAt is less than the specified value.
UpdatedAtLt *time.Time `json:"-" url:"updatedAtLt,omitempty"`
// This will return items where the updatedAt is greater than or equal to the specified value.
UpdatedAtGe *time.Time `json:"-" url:"updatedAtGe,omitempty"`
// This will return items where the updatedAt is less than or equal to the specified value.
UpdatedAtLe *time.Time `json:"-" url:"updatedAtLe,omitempty"`
}
type Error struct {
Message string `json:"message" url:"message"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (e *Error) GetMessage() string {
if e == nil {
return ""
}
return e.Message
}
func (e *Error) GetExtraProperties() map[string]interface{} {
return e.extraProperties
}
func (e *Error) UnmarshalJSON(data []byte) error {
type unmarshaler Error
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*e = Error(value)
extraProperties, err := internal.ExtractExtraProperties(data, *e)
if err != nil {
return err
}
e.extraProperties = extraProperties
e.rawJSON = json.RawMessage(data)
return nil
}
func (e *Error) String() string {
if len(e.rawJSON) > 0 {
if value, err := internal.StringifyJSON(e.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(e); err == nil {
return value
}
return fmt.Sprintf("%#v", e)
}
type Log struct {
// This is the timestamp at which the log was written.
Time string `json:"time" url:"time"`
// This is the unique identifier for the org that this log belongs to.
OrgId string `json:"orgId" url:"orgId"`
// This is the type of the log.
Type LogType `json:"type" url:"type"`
// This is the type of the webhook, given the log is from a webhook.
WebhookType *string `json:"webhookType,omitempty" url:"webhookType,omitempty"`
// This is the specific resource, relevant only to API logs.
Resource *LogResource `json:"resource,omitempty" url:"resource,omitempty"`
// 'This is how long the request took.
RequestDurationSeconds *float64 `json:"requestDurationSeconds,omitempty" url:"requestDurationSeconds,omitempty"`
// This is the timestamp at which the request began.
RequestStartedAt *string `json:"requestStartedAt,omitempty" url:"requestStartedAt,omitempty"`
// This is the timestamp at which the request finished.
RequestFinishedAt *string `json:"requestFinishedAt,omitempty" url:"requestFinishedAt,omitempty"`
// This is the body of the request.
RequestBody map[string]interface{} `json:"requestBody,omitempty" url:"requestBody,omitempty"`
// This is the request method.
RequestHttpMethod *LogRequestHttpMethod `json:"requestHttpMethod,omitempty" url:"requestHttpMethod,omitempty"`
// This is the request URL.
RequestUrl *string `json:"requestUrl,omitempty" url:"requestUrl,omitempty"`
// This is the request path.
RequestPath *string `json:"requestPath,omitempty" url:"requestPath,omitempty"`
// This is the request query.
RequestQuery *string `json:"requestQuery,omitempty" url:"requestQuery,omitempty"`
// This the HTTP status code of the response.
ResponseHttpCode *float64 `json:"responseHttpCode,omitempty" url:"responseHttpCode,omitempty"`
// This is the request IP address.
RequestIpAddress *string `json:"requestIpAddress,omitempty" url:"requestIpAddress,omitempty"`
// This is the origin of the request
RequestOrigin *string `json:"requestOrigin,omitempty" url:"requestOrigin,omitempty"`
// This is the body of the response.
ResponseBody map[string]interface{} `json:"responseBody,omitempty" url:"responseBody,omitempty"`
// These are the headers of the request.
RequestHeaders map[string]interface{} `json:"requestHeaders,omitempty" url:"requestHeaders,omitempty"`
// This is the error, if one occurred.
Error *Error `json:"error,omitempty" url:"error,omitempty"`
// This is the ID of the assistant.
AssistantId *string `json:"assistantId,omitempty" url:"assistantId,omitempty"`
// This is the ID of the phone number.
PhoneNumberId *string `json:"phoneNumberId,omitempty" url:"phoneNumberId,omitempty"`
// This is the ID of the customer.
CustomerId *string `json:"customerId,omitempty" url:"customerId,omitempty"`
// This is the ID of the squad.
SquadId *string `json:"squadId,omitempty" url:"squadId,omitempty"`
// This is the ID of the call.
CallId *string `json:"callId,omitempty" url:"callId,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (l *Log) GetTime() string {
if l == nil {
return ""
}
return l.Time
}
func (l *Log) GetOrgId() string {
if l == nil {
return ""
}
return l.OrgId
}
func (l *Log) GetType() LogType {
if l == nil {
return ""
}
return l.Type
}
func (l *Log) GetWebhookType() *string {
if l == nil {
return nil
}
return l.WebhookType
}
func (l *Log) GetResource() *LogResource {
if l == nil {
return nil
}
return l.Resource
}
func (l *Log) GetRequestDurationSeconds() *float64 {
if l == nil {
return nil
}
return l.RequestDurationSeconds
}
func (l *Log) GetRequestStartedAt() *string {
if l == nil {
return nil
}
return l.RequestStartedAt
}
func (l *Log) GetRequestFinishedAt() *string {
if l == nil {
return nil
}
return l.RequestFinishedAt
}
func (l *Log) GetRequestBody() map[string]interface{} {
if l == nil {
return nil
}
return l.RequestBody
}
func (l *Log) GetRequestHttpMethod() *LogRequestHttpMethod {
if l == nil {
return nil
}
return l.RequestHttpMethod
}
func (l *Log) GetRequestUrl() *string {
if l == nil {
return nil
}
return l.RequestUrl
}
func (l *Log) GetRequestPath() *string {
if l == nil {
return nil
}
return l.RequestPath
}
func (l *Log) GetRequestQuery() *string {
if l == nil {
return nil
}
return l.RequestQuery
}
func (l *Log) GetResponseHttpCode() *float64 {
if l == nil {
return nil
}
return l.ResponseHttpCode
}
func (l *Log) GetRequestIpAddress() *string {
if l == nil {
return nil
}
return l.RequestIpAddress
}
func (l *Log) GetRequestOrigin() *string {
if l == nil {
return nil
}
return l.RequestOrigin
}
func (l *Log) GetResponseBody() map[string]interface{} {
if l == nil {
return nil
}
return l.ResponseBody
}
func (l *Log) GetRequestHeaders() map[string]interface{} {
if l == nil {
return nil
}
return l.RequestHeaders
}
func (l *Log) GetError() *Error {
if l == nil {
return nil
}
return l.Error
}
func (l *Log) GetAssistantId() *string {
if l == nil {
return nil
}
return l.AssistantId
}
func (l *Log) GetPhoneNumberId() *string {
if l == nil {
return nil
}
return l.PhoneNumberId
}
func (l *Log) GetCustomerId() *string {
if l == nil {
return nil
}
return l.CustomerId
}
func (l *Log) GetSquadId() *string {
if l == nil {
return nil
}
return l.SquadId
}
func (l *Log) GetCallId() *string {
if l == nil {
return nil
}
return l.CallId
}
func (l *Log) GetExtraProperties() map[string]interface{} {
return l.extraProperties
}
func (l *Log) UnmarshalJSON(data []byte) error {
type unmarshaler Log
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*l = Log(value)
extraProperties, err := internal.ExtractExtraProperties(data, *l)
if err != nil {
return err
}
l.extraProperties = extraProperties
l.rawJSON = json.RawMessage(data)
return nil
}
func (l *Log) String() string {
if len(l.rawJSON) > 0 {
if value, err := internal.StringifyJSON(l.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(l); err == nil {
return value
}
return fmt.Sprintf("%#v", l)
}
// This is the request method.
type LogRequestHttpMethod string
const (
LogRequestHttpMethodPost LogRequestHttpMethod = "POST"
LogRequestHttpMethodGet LogRequestHttpMethod = "GET"
LogRequestHttpMethodPut LogRequestHttpMethod = "PUT"
LogRequestHttpMethodPatch LogRequestHttpMethod = "PATCH"
LogRequestHttpMethodDelete LogRequestHttpMethod = "DELETE"
)
func NewLogRequestHttpMethodFromString(s string) (LogRequestHttpMethod, error) {
switch s {
case "POST":
return LogRequestHttpMethodPost, nil
case "GET":
return LogRequestHttpMethodGet, nil
case "PUT":
return LogRequestHttpMethodPut, nil
case "PATCH":
return LogRequestHttpMethodPatch, nil
case "DELETE":
return LogRequestHttpMethodDelete, nil
}
var t LogRequestHttpMethod
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (l LogRequestHttpMethod) Ptr() *LogRequestHttpMethod {
return &l
}
// This is the specific resource, relevant only to API logs.
type LogResource string
const (
LogResourceOrg LogResource = "org"
LogResourceAssistant LogResource = "assistant"
LogResourceAnalytics LogResource = "analytics"
LogResourceCredential LogResource = "credential"
LogResourcePhoneNumber LogResource = "phone-number"
LogResourceBlock LogResource = "block"
LogResourceVoiceLibrary LogResource = "voice-library"
LogResourceProvider LogResource = "provider"
LogResourceTool LogResource = "tool"
LogResourceToken LogResource = "token"
LogResourceTemplate LogResource = "template"
LogResourceSquad LogResource = "squad"
LogResourceCall LogResource = "call"
LogResourceFile LogResource = "file"
LogResourceMetric LogResource = "metric"
LogResourceLog LogResource = "log"
)
func NewLogResourceFromString(s string) (LogResource, error) {
switch s {
case "org":
return LogResourceOrg, nil
case "assistant":
return LogResourceAssistant, nil
case "analytics":
return LogResourceAnalytics, nil
case "credential":
return LogResourceCredential, nil
case "phone-number":
return LogResourcePhoneNumber, nil
case "block":
return LogResourceBlock, nil
case "voice-library":
return LogResourceVoiceLibrary, nil
case "provider":
return LogResourceProvider, nil
case "tool":
return LogResourceTool, nil
case "token":
return LogResourceToken, nil
case "template":
return LogResourceTemplate, nil
case "squad":
return LogResourceSquad, nil
case "call":
return LogResourceCall, nil
case "file":
return LogResourceFile, nil
case "metric":
return LogResourceMetric, nil
case "log":
return LogResourceLog, nil
}
var t LogResource
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (l LogResource) Ptr() *LogResource {
return &l
}
// This is the type of the log.
type LogType string
const (
LogTypeApi LogType = "API"
LogTypeWebhook LogType = "Webhook"
LogTypeCall LogType = "Call"
LogTypeProvider LogType = "Provider"
)
func NewLogTypeFromString(s string) (LogType, error) {
switch s {
case "API":
return LogTypeApi, nil
case "Webhook":
return LogTypeWebhook, nil
case "Call":
return LogTypeCall, nil
case "Provider":
return LogTypeProvider, nil
}
var t LogType
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (l LogType) Ptr() *LogType {
return &l
}
type LogsPaginatedResponse struct {
Results []*Log `json:"results,omitempty" url:"results,omitempty"`
Metadata *PaginationMeta `json:"metadata,omitempty" url:"metadata,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (l *LogsPaginatedResponse) GetResults() []*Log {
if l == nil {
return nil
}
return l.Results
}
func (l *LogsPaginatedResponse) GetMetadata() *PaginationMeta {
if l == nil {
return nil
}
return l.Metadata
}
func (l *LogsPaginatedResponse) GetExtraProperties() map[string]interface{} {
return l.extraProperties
}
func (l *LogsPaginatedResponse) UnmarshalJSON(data []byte) error {
type unmarshaler LogsPaginatedResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*l = LogsPaginatedResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *l)
if err != nil {
return err
}
l.extraProperties = extraProperties
l.rawJSON = json.RawMessage(data)
return nil
}
func (l *LogsPaginatedResponse) String() string {
if len(l.rawJSON) > 0 {
if value, err := internal.StringifyJSON(l.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(l); err == nil {
return value
}
return fmt.Sprintf("%#v", l)
}
type LoggingControllerLogsDeleteQueryRequestType string
const (
LoggingControllerLogsDeleteQueryRequestTypeApi LoggingControllerLogsDeleteQueryRequestType = "API"
LoggingControllerLogsDeleteQueryRequestTypeWebhook LoggingControllerLogsDeleteQueryRequestType = "Webhook"
LoggingControllerLogsDeleteQueryRequestTypeCall LoggingControllerLogsDeleteQueryRequestType = "Call"
LoggingControllerLogsDeleteQueryRequestTypeProvider LoggingControllerLogsDeleteQueryRequestType = "Provider"
)
func NewLoggingControllerLogsDeleteQueryRequestTypeFromString(s string) (LoggingControllerLogsDeleteQueryRequestType, error) {
switch s {
case "API":
return LoggingControllerLogsDeleteQueryRequestTypeApi, nil
case "Webhook":
return LoggingControllerLogsDeleteQueryRequestTypeWebhook, nil
case "Call":
return LoggingControllerLogsDeleteQueryRequestTypeCall, nil
case "Provider":
return LoggingControllerLogsDeleteQueryRequestTypeProvider, nil
}
var t LoggingControllerLogsDeleteQueryRequestType
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (l LoggingControllerLogsDeleteQueryRequestType) Ptr() *LoggingControllerLogsDeleteQueryRequestType {
return &l
}
type LogsGetRequestSortOrder string
const (
LogsGetRequestSortOrderAsc LogsGetRequestSortOrder = "ASC"
LogsGetRequestSortOrderDesc LogsGetRequestSortOrder = "DESC"
)
func NewLogsGetRequestSortOrderFromString(s string) (LogsGetRequestSortOrder, error) {
switch s {
case "ASC":
return LogsGetRequestSortOrderAsc, nil
case "DESC":
return LogsGetRequestSortOrderDesc, nil
}
var t LogsGetRequestSortOrder
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (l LogsGetRequestSortOrder) Ptr() *LogsGetRequestSortOrder {
return &l
}
type LogsGetRequestType string
const (
LogsGetRequestTypeApi LogsGetRequestType = "API"
LogsGetRequestTypeWebhook LogsGetRequestType = "Webhook"
LogsGetRequestTypeCall LogsGetRequestType = "Call"
LogsGetRequestTypeProvider LogsGetRequestType = "Provider"
)
func NewLogsGetRequestTypeFromString(s string) (LogsGetRequestType, error) {
switch s {
case "API":
return LogsGetRequestTypeApi, nil
case "Webhook":
return LogsGetRequestTypeWebhook, nil
case "Call":
return LogsGetRequestTypeCall, nil
case "Provider":
return LogsGetRequestTypeProvider, nil
}
var t LogsGetRequestType
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (l LogsGetRequestType) Ptr() *LogsGetRequestType {
return &l
}