@@ -23,7 +23,7 @@ Use the [List Integrations](https://docs.codat.io/codat-api#/operations/list-int
2323
2424``` python
2525import codatcommon
26- from codatcommon.models import operations
26+ from codatcommon.models import operations, shared
2727
2828s = codatcommon.CodatCommon(
2929 security = shared.Security(
@@ -66,7 +66,7 @@ This operation is not reversible. The end user would need to reauthorize a new d
6666
6767``` python
6868import codatcommon
69- from codatcommon.models import operations
69+ from codatcommon.models import operations, shared
7070
7171s = codatcommon.CodatCommon(
7272 security = shared.Security(
@@ -106,7 +106,7 @@ if res.status_code == 200:
106106
107107``` python
108108import codatcommon
109- from codatcommon.models import operations
109+ from codatcommon.models import operations, shared
110110
111111s = codatcommon.CodatCommon(
112112 security = shared.Security(
@@ -146,7 +146,7 @@ if res.connection is not None:
146146
147147``` python
148148import codatcommon
149- from codatcommon.models import operations
149+ from codatcommon.models import operations, shared
150150
151151s = codatcommon.CodatCommon(
152152 security = shared.Security(
@@ -189,7 +189,7 @@ if res.connections is not None:
189189
190190``` python
191191import codatcommon
192- from codatcommon.models import operations
192+ from codatcommon.models import operations, shared
193193
194194s = codatcommon.CodatCommon(
195195 security = shared.Security(
@@ -232,7 +232,7 @@ Update data connection's authorization.
232232
233233``` python
234234import codatcommon
235- from codatcommon.models import operations
235+ from codatcommon.models import operations, shared
236236
237237s = codatcommon.CodatCommon(
238238 security = shared.Security(
0 commit comments