3550
3550
"originTxHash" : {
3551
3551
"type" : "string"
3552
3552
},
3553
+ "label" : {
3554
+ "type" : "string"
3555
+ },
3553
3556
"stateOverrides" : {
3554
3557
"type" : "object",
3555
3558
"additionalProperties" : {
@@ -12236,7 +12239,7 @@ <h3>Usage and SDK Samples</h3>
12236
12239
<pre class="prettyprint"><code class="language-bsh">curl -X GET \
12237
12240
-H "Api-Key: [[apiKey]]" \
12238
12241
-H "Accept: application/json" \
12239
- "https://app.sentio.xyz/api/v1/solidity/simulate?projectOwner=projectOwner_example&projectSlug=projectSlug_example&page=56&pageSize=56"
12242
+ "https://app.sentio.xyz/api/v1/solidity/simulate?projectOwner=projectOwner_example&projectSlug=projectSlug_example&labelContains=labelContains_example& page=56&pageSize=56"
12240
12243
</code></pre>
12241
12244
</div>
12242
12245
<div class="tab-pane" id="examples-DebugAndSimulation-getSimulations-0-java">
@@ -12262,11 +12265,12 @@ <h3>Usage and SDK Samples</h3>
12262
12265
DebugAndSimulationApi apiInstance = new DebugAndSimulationApi();
12263
12266
String projectOwner = projectOwner_example; // String |
12264
12267
String projectSlug = projectSlug_example; // String |
12268
+ String labelContains = labelContains_example; // String |
12265
12269
Integer page = 56; // Integer |
12266
12270
Integer pageSize = 56; // Integer |
12267
12271
12268
12272
try {
12269
- solidity_service.GetSimulationsResponse result = apiInstance.getSimulations(projectOwner, projectSlug, page, pageSize);
12273
+ solidity_service.GetSimulationsResponse result = apiInstance.getSimulations(projectOwner, projectSlug, labelContains, page, pageSize);
12270
12274
System.out.println(result);
12271
12275
} catch (ApiException e) {
12272
12276
System.err.println("Exception when calling DebugAndSimulationApi#getSimulations");
@@ -12284,11 +12288,12 @@ <h3>Usage and SDK Samples</h3>
12284
12288
12285
12289
final String projectOwner = new String(); // String |
12286
12290
final String projectSlug = new String(); // String |
12291
+ final String labelContains = new String(); // String |
12287
12292
final Integer page = new Integer(); // Integer |
12288
12293
final Integer pageSize = new Integer(); // Integer |
12289
12294
12290
12295
try {
12291
- final result = await api_instance.getSimulations(projectOwner, projectSlug, page, pageSize);
12296
+ final result = await api_instance.getSimulations(projectOwner, projectSlug, labelContains, page, pageSize);
12292
12297
print(result);
12293
12298
} catch (e) {
12294
12299
print('Exception when calling DefaultApi->getSimulations: $e\n');
@@ -12305,11 +12310,12 @@ <h3>Usage and SDK Samples</h3>
12305
12310
DebugAndSimulationApi apiInstance = new DebugAndSimulationApi();
12306
12311
String projectOwner = projectOwner_example; // String |
12307
12312
String projectSlug = projectSlug_example; // String |
12313
+ String labelContains = labelContains_example; // String |
12308
12314
Integer page = 56; // Integer |
12309
12315
Integer pageSize = 56; // Integer |
12310
12316
12311
12317
try {
12312
- solidity_service.GetSimulationsResponse result = apiInstance.getSimulations(projectOwner, projectSlug, page, pageSize);
12318
+ solidity_service.GetSimulationsResponse result = apiInstance.getSimulations(projectOwner, projectSlug, labelContains, page, pageSize);
12313
12319
System.out.println(result);
12314
12320
} catch (ApiException e) {
12315
12321
System.err.println("Exception when calling DebugAndSimulationApi#getSimulations");
@@ -12335,12 +12341,14 @@ <h3>Usage and SDK Samples</h3>
12335
12341
DebugAndSimulationApi *apiInstance = [[DebugAndSimulationApi alloc] init];
12336
12342
String *projectOwner = projectOwner_example; // (optional) (default to null)
12337
12343
String *projectSlug = projectSlug_example; // (optional) (default to null)
12344
+ String *labelContains = labelContains_example; // (optional) (default to null)
12338
12345
Integer *page = 56; // (optional) (default to null)
12339
12346
Integer *pageSize = 56; // (optional) (default to null)
12340
12347
12341
12348
// Get existing transaction simulations
12342
12349
[apiInstance getSimulationsWith:projectOwner
12343
12350
projectSlug:projectSlug
12351
+ labelContains:labelContains
12344
12352
page:page
12345
12353
pageSize:pageSize
12346
12354
completionHandler: ^(solidity_service.GetSimulationsResponse output, NSError* error) {
@@ -12369,6 +12377,7 @@ <h3>Usage and SDK Samples</h3>
12369
12377
var opts = {
12370
12378
'projectOwner': projectOwner_example, // {String}
12371
12379
'projectSlug': projectSlug_example, // {String}
12380
+ 'labelContains': labelContains_example, // {String}
12372
12381
'page': 56, // {Integer}
12373
12382
'pageSize': 56 // {Integer}
12374
12383
};
@@ -12409,12 +12418,13 @@ <h3>Usage and SDK Samples</h3>
12409
12418
var apiInstance = new DebugAndSimulationApi();
12410
12419
var projectOwner = projectOwner_example; // String | (optional) (default to null)
12411
12420
var projectSlug = projectSlug_example; // String | (optional) (default to null)
12421
+ var labelContains = labelContains_example; // String | (optional) (default to null)
12412
12422
var page = 56; // Integer | (optional) (default to null)
12413
12423
var pageSize = 56; // Integer | (optional) (default to null)
12414
12424
12415
12425
try {
12416
12426
// Get existing transaction simulations
12417
- solidity_service.GetSimulationsResponse result = apiInstance.getSimulations(projectOwner, projectSlug, page, pageSize);
12427
+ solidity_service.GetSimulationsResponse result = apiInstance.getSimulations(projectOwner, projectSlug, labelContains, page, pageSize);
12418
12428
Debug.WriteLine(result);
12419
12429
} catch (Exception e) {
12420
12430
Debug.Print("Exception when calling DebugAndSimulationApi.getSimulations: " + e.Message );
@@ -12438,11 +12448,12 @@ <h3>Usage and SDK Samples</h3>
12438
12448
$api_instance = new OpenAPITools\Client\Api\DebugAndSimulationApi();
12439
12449
$projectOwner = projectOwner_example; // String |
12440
12450
$projectSlug = projectSlug_example; // String |
12451
+ $labelContains = labelContains_example; // String |
12441
12452
$page = 56; // Integer |
12442
12453
$pageSize = 56; // Integer |
12443
12454
12444
12455
try {
12445
- $result = $api_instance->getSimulations($projectOwner, $projectSlug, $page, $pageSize);
12456
+ $result = $api_instance->getSimulations($projectOwner, $projectSlug, $labelContains, $ page, $pageSize);
12446
12457
print_r($result);
12447
12458
} catch (Exception $e) {
12448
12459
echo 'Exception when calling DebugAndSimulationApi->getSimulations: ', $e->getMessage(), PHP_EOL;
@@ -12464,11 +12475,12 @@ <h3>Usage and SDK Samples</h3>
12464
12475
my $api_instance = WWW::OPenAPIClient::DebugAndSimulationApi->new();
12465
12476
my $projectOwner = projectOwner_example; # String |
12466
12477
my $projectSlug = projectSlug_example; # String |
12478
+ my $labelContains = labelContains_example; # String |
12467
12479
my $page = 56; # Integer |
12468
12480
my $pageSize = 56; # Integer |
12469
12481
12470
12482
eval {
12471
- my $result = $api_instance->getSimulations(projectOwner => $projectOwner, projectSlug => $projectSlug, page => $page, pageSize => $pageSize);
12483
+ my $result = $api_instance->getSimulations(projectOwner => $projectOwner, projectSlug => $projectSlug, labelContains => $labelContains, page => $page, pageSize => $pageSize);
12472
12484
print Dumper($result);
12473
12485
};
12474
12486
if ($@) {
@@ -12492,12 +12504,13 @@ <h3>Usage and SDK Samples</h3>
12492
12504
api_instance = openapi_client.DebugAndSimulationApi()
12493
12505
projectOwner = projectOwner_example # String | (optional) (default to null)
12494
12506
projectSlug = projectSlug_example # String | (optional) (default to null)
12507
+ labelContains = labelContains_example # String | (optional) (default to null)
12495
12508
page = 56 # Integer | (optional) (default to null)
12496
12509
pageSize = 56 # Integer | (optional) (default to null)
12497
12510
12498
12511
try:
12499
12512
# Get existing transaction simulations
12500
- api_response = api_instance.get_simulations(projectOwner=projectOwner, projectSlug=projectSlug, page=page, pageSize=pageSize)
12513
+ api_response = api_instance.get_simulations(projectOwner=projectOwner, projectSlug=projectSlug, labelContains=labelContains, page=page, pageSize=pageSize)
12501
12514
pprint(api_response)
12502
12515
except ApiException as e:
12503
12516
print("Exception when calling DebugAndSimulationApi->getSimulations: %s\n" % e)</code></pre>
@@ -12509,11 +12522,12 @@ <h3>Usage and SDK Samples</h3>
12509
12522
pub fn main() {
12510
12523
let projectOwner = projectOwner_example; // String
12511
12524
let projectSlug = projectSlug_example; // String
12525
+ let labelContains = labelContains_example; // String
12512
12526
let page = 56; // Integer
12513
12527
let pageSize = 56; // Integer
12514
12528
12515
12529
let mut context = DebugAndSimulationApi::Context::default();
12516
- let result = client.getSimulations(projectOwner, projectSlug, page, pageSize, &context).wait();
12530
+ let result = client.getSimulations(projectOwner, projectSlug, labelContains, page, pageSize, &context).wait();
12517
12531
12518
12532
println!("{:?}", result);
12519
12533
}
@@ -12570,6 +12584,23 @@ <h2>Parameters</h2>
12570
12584
</div>
12571
12585
</div>
12572
12586
</td>
12587
+ </tr>
12588
+
12589
+ <tr><td style="width:150px;">labelContains</td>
12590
+ <td>
12591
+
12592
+
12593
+ <div id="d2e199_getSimulations_labelContains">
12594
+ <div class="json-schema-view">
12595
+ <div class="primitive">
12596
+ <span class="type">
12597
+ String
12598
+ </span>
12599
+
12600
+ </div>
12601
+ </div>
12602
+ </div>
12603
+ </td>
12573
12604
</tr>
12574
12605
12575
12606
<tr><td style="width:150px;">page</td>
0 commit comments