@@ -101,7 +101,7 @@ Set the metadata of a transaction by its ID
101
101
102
102
``` python
103
103
import sdk
104
- from sdk.models import operations
104
+ from sdk.models import operations, shared
105
105
106
106
s = sdk.SDK(
107
107
security = shared.Security(
@@ -146,7 +146,7 @@ Add metadata to an account
146
146
147
147
``` python
148
148
import sdk
149
- from sdk.models import operations
149
+ from sdk.models import operations, shared
150
150
151
151
s = sdk.SDK(
152
152
security = shared.Security(
@@ -188,7 +188,7 @@ Count the accounts from a ledger
188
188
189
189
``` python
190
190
import sdk
191
- from sdk.models import operations
191
+ from sdk.models import operations, shared
192
192
193
193
s = sdk.SDK(
194
194
security = shared.Security(
@@ -229,7 +229,7 @@ Count the transactions from a ledger
229
229
``` python
230
230
import sdk
231
231
import dateutil.parser
232
- from sdk.models import operations
232
+ from sdk.models import operations, shared
233
233
234
234
s = sdk.SDK(
235
235
security = shared.Security(
@@ -359,7 +359,7 @@ Get account by its address
359
359
360
360
``` python
361
361
import sdk
362
- from sdk.models import operations
362
+ from sdk.models import operations, shared
363
363
364
364
s = sdk.SDK(
365
365
security = shared.Security(
@@ -398,7 +398,7 @@ Get the balances from a ledger's account
398
398
399
399
``` python
400
400
import sdk
401
- from sdk.models import operations
401
+ from sdk.models import operations, shared
402
402
403
403
s = sdk.SDK(
404
404
security = shared.Security(
@@ -440,7 +440,7 @@ Get the aggregated balances from selected accounts
440
440
441
441
``` python
442
442
import sdk
443
- from sdk.models import operations
443
+ from sdk.models import operations, shared
444
444
445
445
s = sdk.SDK(
446
446
security = shared.Security(
@@ -479,7 +479,7 @@ Show server information
479
479
480
480
``` python
481
481
import sdk
482
-
482
+ from sdk.models import shared
483
483
484
484
s = sdk.SDK(
485
485
security = shared.Security(
@@ -508,7 +508,7 @@ Get information about a ledger
508
508
509
509
``` python
510
510
import sdk
511
- from sdk.models import operations
511
+ from sdk.models import operations, shared
512
512
513
513
s = sdk.SDK(
514
514
security = shared.Security(
@@ -546,7 +546,7 @@ Get the mapping of a ledger
546
546
547
547
``` python
548
548
import sdk
549
- from sdk.models import operations
549
+ from sdk.models import operations, shared
550
550
551
551
s = sdk.SDK(
552
552
security = shared.Security(
@@ -584,7 +584,7 @@ Get transaction from a ledger by its ID
584
584
585
585
``` python
586
586
import sdk
587
- from sdk.models import operations
587
+ from sdk.models import operations, shared
588
588
589
589
s = sdk.SDK(
590
590
security = shared.Security(
@@ -623,7 +623,7 @@ List accounts from a ledger, sorted by address in descending order.
623
623
624
624
``` python
625
625
import sdk
626
- from sdk.models import operations
626
+ from sdk.models import operations, shared
627
627
628
628
s = sdk.SDK(
629
629
security = shared.Security(
@@ -670,7 +670,7 @@ List the logs from a ledger, sorted by ID in descending order.
670
670
``` python
671
671
import sdk
672
672
import dateutil.parser
673
- from sdk.models import operations
673
+ from sdk.models import operations, shared
674
674
675
675
s = sdk.SDK(
676
676
security = shared.Security(
@@ -715,7 +715,7 @@ List transactions from a ledger, sorted by txid in descending order.
715
715
``` python
716
716
import sdk
717
717
import dateutil.parser
718
- from sdk.models import operations
718
+ from sdk.models import operations, shared
719
719
720
720
s = sdk.SDK(
721
721
security = shared.Security(
@@ -765,7 +765,7 @@ Get statistics from a ledger. (aggregate metrics on accounts and transactions)
765
765
766
766
``` python
767
767
import sdk
768
- from sdk.models import operations
768
+ from sdk.models import operations, shared
769
769
770
770
s = sdk.SDK(
771
771
security = shared.Security(
@@ -803,7 +803,7 @@ Revert a ledger transaction by its ID
803
803
804
804
``` python
805
805
import sdk
806
- from sdk.models import operations
806
+ from sdk.models import operations, shared
807
807
808
808
s = sdk.SDK(
809
809
security = shared.Security(
0 commit comments