rustenium-bidi-definitions 0.1.1

Generated WebDriver BiDi protocol type definitions for Rustenium
Documentation
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
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddDataCollectorParams {
    #[serde(rename = "dataTypes")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub data_types: Vec<super::types::DataType>,
    #[serde(rename = "maxEncodedDataSize")]
    pub max_encoded_data_size: u64,
    #[serde(rename = "collectorType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub collector_type: Option<super::types::CollectorType>,
    #[serde(rename = "contexts")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub contexts: Option<Vec<crate::browsing_context::types::BrowsingContext>>,
    #[serde(rename = "userContexts")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub user_contexts: Option<Vec<crate::browser::types::UserContext>>,
}
impl AddDataCollectorParams {
    pub fn new(
        data_types: Vec<super::types::DataType>,
        max_encoded_data_size: impl Into<u64>,
    ) -> Self {
        Self {
            data_types,
            max_encoded_data_size: max_encoded_data_size.into(),
            collector_type: None,
            contexts: None,
            user_contexts: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum AddDataCollectorMethod {
    #[serde(rename = "network.addDataCollector")]
    AddDataCollector,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddDataCollector {
    pub method: AddDataCollectorMethod,
    pub params: AddDataCollectorParams,
}
impl AddDataCollector {
    pub const IDENTIFIER: &'static str = "network.addDataCollector";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for AddDataCollector {
    type Result = super::results::AddDataCollectorResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddInterceptParams {
    #[serde(rename = "phases")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub phases: Vec<super::types::InterceptPhase>,
    #[serde(rename = "contexts")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub contexts: Option<Vec<crate::browsing_context::types::BrowsingContext>>,
    #[serde(rename = "urlPatterns")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub url_patterns: Option<Vec<super::types::UrlPattern>>,
}
impl AddInterceptParams {
    pub fn new(phases: Vec<super::types::InterceptPhase>) -> Self {
        Self {
            phases,
            contexts: None,
            url_patterns: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum AddInterceptMethod {
    #[serde(rename = "network.addIntercept")]
    AddIntercept,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddIntercept {
    pub method: AddInterceptMethod,
    pub params: AddInterceptParams,
}
impl AddIntercept {
    pub const IDENTIFIER: &'static str = "network.addIntercept";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for AddIntercept {
    type Result = super::results::AddInterceptResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContinueRequestParams {
    #[serde(rename = "request")]
    pub request: super::types::Request,
    #[serde(rename = "body")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub body: Option<super::types::BytesValue>,
    #[serde(rename = "cookies")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub cookies: Option<Vec<super::types::CookieHeader>>,
    #[serde(rename = "headers")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub headers: Option<Vec<super::types::Header>>,
    #[serde(rename = "method")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub method: Option<String>,
    #[serde(rename = "url")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub url: Option<String>,
}
impl ContinueRequestParams {
    pub fn new(request: impl Into<super::types::Request>) -> Self {
        Self {
            request: request.into(),
            body: None,
            cookies: None,
            headers: None,
            method: None,
            url: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ContinueRequestMethod {
    #[serde(rename = "network.continueRequest")]
    ContinueRequest,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContinueRequest {
    pub method: ContinueRequestMethod,
    pub params: ContinueRequestParams,
}
impl ContinueRequest {
    pub const IDENTIFIER: &'static str = "network.continueRequest";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ContinueRequest {
    type Result = super::results::ContinueRequestResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContinueResponseParams {
    #[serde(rename = "request")]
    pub request: super::types::Request,
    #[serde(rename = "cookies")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub cookies: Option<Vec<super::types::SetCookieHeader>>,
    #[serde(rename = "credentials")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub credentials: Option<super::types::AuthCredentials>,
    #[serde(rename = "headers")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub headers: Option<Vec<super::types::Header>>,
    #[serde(rename = "reasonPhrase")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub reason_phrase: Option<String>,
    #[serde(rename = "statusCode")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub status_code: Option<u64>,
}
impl ContinueResponseParams {
    pub fn new(request: impl Into<super::types::Request>) -> Self {
        Self {
            request: request.into(),
            cookies: None,
            credentials: None,
            headers: None,
            reason_phrase: None,
            status_code: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ContinueResponseMethod {
    #[serde(rename = "network.continueResponse")]
    ContinueResponse,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContinueResponse {
    pub method: ContinueResponseMethod,
    pub params: ContinueResponseParams,
}
impl ContinueResponse {
    pub const IDENTIFIER: &'static str = "network.continueResponse";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ContinueResponse {
    type Result = super::results::ContinueResponseResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContinueWithAuthParams {
    #[serde(rename = "request")]
    pub request: super::types::Request,
    #[serde(flatten)]
    #[serde(default)]
    pub continue_with_auth_credentials_continue_with_auth_no_credentials_union:
        super::types::ContinueWithAuthCredentialsContinueWithAuthNoCredentialsUnion,
}
impl ContinueWithAuthParams {
    pub fn new(
        request: impl Into<super::types::Request>,
        continue_with_auth_credentials_continue_with_auth_no_credentials_union: impl Into<
            super::types::ContinueWithAuthCredentialsContinueWithAuthNoCredentialsUnion,
        >,
    ) -> Self {
        Self {
            request: request.into(),
            continue_with_auth_credentials_continue_with_auth_no_credentials_union:
                continue_with_auth_credentials_continue_with_auth_no_credentials_union.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ContinueWithAuthMethod {
    #[serde(rename = "network.continueWithAuth")]
    ContinueWithAuth,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContinueWithAuth {
    pub method: ContinueWithAuthMethod,
    pub params: ContinueWithAuthParams,
}
impl ContinueWithAuth {
    pub const IDENTIFIER: &'static str = "network.continueWithAuth";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ContinueWithAuth {
    type Result = super::results::ContinueWithAuthResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DisownDataParams {
    #[serde(rename = "dataType")]
    pub data_type: super::types::DataType,
    #[serde(rename = "collector")]
    pub collector: super::types::Collector,
    #[serde(rename = "request")]
    pub request: super::types::Request,
}
impl DisownDataParams {
    pub fn new(
        data_type: impl Into<super::types::DataType>,
        collector: impl Into<super::types::Collector>,
        request: impl Into<super::types::Request>,
    ) -> Self {
        Self {
            data_type: data_type.into(),
            collector: collector.into(),
            request: request.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum DisownDataMethod {
    #[serde(rename = "network.disownData")]
    DisownData,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DisownData {
    pub method: DisownDataMethod,
    pub params: DisownDataParams,
}
impl DisownData {
    pub const IDENTIFIER: &'static str = "network.disownData";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for DisownData {
    type Result = super::results::DisownDataResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct FailRequestParams {
    #[serde(rename = "request")]
    pub request: super::types::Request,
}
impl FailRequestParams {
    pub fn new(request: impl Into<super::types::Request>) -> Self {
        Self {
            request: request.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum FailRequestMethod {
    #[serde(rename = "network.failRequest")]
    FailRequest,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct FailRequest {
    pub method: FailRequestMethod,
    pub params: FailRequestParams,
}
impl FailRequest {
    pub const IDENTIFIER: &'static str = "network.failRequest";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for FailRequest {
    type Result = super::results::FailRequestResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetDataParams {
    #[serde(rename = "dataType")]
    pub data_type: super::types::DataType,
    #[serde(rename = "collector")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub collector: Option<super::types::Collector>,
    #[serde(rename = "disown")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "default_get_data_params_disown")]
    pub disown: Option<bool>,
    #[serde(rename = "request")]
    pub request: super::types::Request,
}
fn default_get_data_params_disown() -> Option<bool> {
    Some(false)
}
impl GetDataParams {
    pub fn new(
        data_type: impl Into<super::types::DataType>,
        request: impl Into<super::types::Request>,
    ) -> Self {
        Self {
            data_type: data_type.into(),
            request: request.into(),
            collector: None,
            disown: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetDataMethod {
    #[serde(rename = "network.getData")]
    GetData,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetData {
    pub method: GetDataMethod,
    pub params: GetDataParams,
}
impl GetData {
    pub const IDENTIFIER: &'static str = "network.getData";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetData {
    type Result = super::results::GetDataResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ProvideResponseParams {
    #[serde(rename = "request")]
    pub request: super::types::Request,
    #[serde(rename = "body")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub body: Option<super::types::BytesValue>,
    #[serde(rename = "cookies")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub cookies: Option<Vec<super::types::SetCookieHeader>>,
    #[serde(rename = "headers")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub headers: Option<Vec<super::types::Header>>,
    #[serde(rename = "reasonPhrase")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub reason_phrase: Option<String>,
    #[serde(rename = "statusCode")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub status_code: Option<u64>,
}
impl ProvideResponseParams {
    pub fn new(request: impl Into<super::types::Request>) -> Self {
        Self {
            request: request.into(),
            body: None,
            cookies: None,
            headers: None,
            reason_phrase: None,
            status_code: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ProvideResponseMethod {
    #[serde(rename = "network.provideResponse")]
    ProvideResponse,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ProvideResponse {
    pub method: ProvideResponseMethod,
    pub params: ProvideResponseParams,
}
impl ProvideResponse {
    pub const IDENTIFIER: &'static str = "network.provideResponse";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ProvideResponse {
    type Result = super::results::ProvideResponseResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RemoveDataCollectorParams {
    #[serde(rename = "collector")]
    pub collector: super::types::Collector,
}
impl RemoveDataCollectorParams {
    pub fn new(collector: impl Into<super::types::Collector>) -> Self {
        Self {
            collector: collector.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum RemoveDataCollectorMethod {
    #[serde(rename = "network.removeDataCollector")]
    RemoveDataCollector,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RemoveDataCollector {
    pub method: RemoveDataCollectorMethod,
    pub params: RemoveDataCollectorParams,
}
impl RemoveDataCollector {
    pub const IDENTIFIER: &'static str = "network.removeDataCollector";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for RemoveDataCollector {
    type Result = super::results::RemoveDataCollectorResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RemoveInterceptParams {
    #[serde(rename = "intercept")]
    pub intercept: super::types::Intercept,
}
impl RemoveInterceptParams {
    pub fn new(intercept: impl Into<super::types::Intercept>) -> Self {
        Self {
            intercept: intercept.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum RemoveInterceptMethod {
    #[serde(rename = "network.removeIntercept")]
    RemoveIntercept,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RemoveIntercept {
    pub method: RemoveInterceptMethod,
    pub params: RemoveInterceptParams,
}
impl RemoveIntercept {
    pub const IDENTIFIER: &'static str = "network.removeIntercept";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for RemoveIntercept {
    type Result = super::results::RemoveInterceptResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetCacheBehaviorParams {
    #[serde(rename = "cacheBehavior")]
    pub cache_behavior: SetCacheBehaviorCacheBehavior,
    #[serde(rename = "contexts")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub contexts: Option<Vec<crate::browsing_context::types::BrowsingContext>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum SetCacheBehaviorCacheBehavior {
    #[serde(rename = "default")]
    Default,
    #[serde(rename = "bypass")]
    Bypass,
}
impl SetCacheBehaviorParams {
    pub fn new(cache_behavior: impl Into<SetCacheBehaviorCacheBehavior>) -> Self {
        Self {
            cache_behavior: cache_behavior.into(),
            contexts: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetCacheBehaviorMethod {
    #[serde(rename = "network.setCacheBehavior")]
    SetCacheBehavior,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetCacheBehavior {
    pub method: SetCacheBehaviorMethod,
    pub params: SetCacheBehaviorParams,
}
impl SetCacheBehavior {
    pub const IDENTIFIER: &'static str = "network.setCacheBehavior";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetCacheBehavior {
    type Result = super::results::SetCacheBehaviorResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetExtraHeadersParams {
    #[serde(rename = "headers")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub headers: Vec<super::types::Header>,
    #[serde(rename = "contexts")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub contexts: Option<Vec<crate::browsing_context::types::BrowsingContext>>,
    #[serde(rename = "userContexts")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub user_contexts: Option<Vec<crate::browser::types::UserContext>>,
}
impl SetExtraHeadersParams {
    pub fn new(headers: Vec<super::types::Header>) -> Self {
        Self {
            headers,
            contexts: None,
            user_contexts: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetExtraHeadersMethod {
    #[serde(rename = "network.setExtraHeaders")]
    SetExtraHeaders,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetExtraHeaders {
    pub method: SetExtraHeadersMethod,
    pub params: SetExtraHeadersParams,
}
impl SetExtraHeaders {
    pub const IDENTIFIER: &'static str = "network.setExtraHeaders";
    pub const DOMAIN_DIRECTION: &'static str = "remote";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetExtraHeaders {
    type Result = super::results::SetExtraHeadersResult;
}
group_enum ! (NetworkCommand { AddDataCollector (AddDataCollector) , AddIntercept (AddIntercept) , ContinueRequest (ContinueRequest) , ContinueResponse (ContinueResponse) , ContinueWithAuth (ContinueWithAuth) , DisownData (DisownData) , FailRequest (FailRequest) , GetData (GetData) , ProvideResponse (ProvideResponse) , RemoveDataCollector (RemoveDataCollector) , RemoveIntercept (RemoveIntercept) , SetCacheBehavior (SetCacheBehavior) , SetExtraHeaders (SetExtraHeaders) } + identifiable);