@@ -22,53 +22,43 @@ def __init__(self, client: LockstepApi):
2222 self .client = client
2323
2424 """
25- Retrieves the App Enrollment with this identifier.
26-
27- An App Enrollment
25+ Retrieves the App Enrollment with this identifier. An App Enrollment
2826 represents an app that has been enrolled to the current account. When
2927 you sign up for an app using the Lockstep Platform, you obtain an
3028 enrollment record for that app. Example types of apps include connectors
3129 and feature enhancement apps. The App Enrollment object contains
32- information about this app, its configuration, and settings.
33-
34- See
30+ information about this app, its configuration, and settings. See
3531 [Applications and
3632 Enrollments](https://developer.lockstep.io/docs/applications-and-enrollments)
3733 for more information.
34+
3835 Parameters
3936 ----------
4037 id : str
4138 The unique ID number of the App Enrollment to retrieve
4239 include : str
4340 To fetch additional data on this object, specify the list of elements to
44- retrieve.
45- Available collections: App, CustomFields
41+ retrieve. Available collections: App, CustomFields
4642 """
4743 def retrieve_app_enrollment (self , id : str , include : str ) -> LockstepResponse :
4844 path = f"/api/v1/AppEnrollments/{ id } "
4945 return self .client .send_request ("GET" , path , None , {id : str , include : str })
5046
5147 """
52- Updates an existing App Enrollment with the information supplied to this
53- PATCH call.
54-
55- The PATCH method allows you to change specific values on
56- the object while leaving other values alone. As input you should supply
57- a list of field names and new values. For example, you can provide the
48+ Updates an existing App Enrollment with the information supplied to this
49+ PATCH call. The PATCH method allows you to change specific values on the
50+ object while leaving other values alone. As input you should supply a
51+ list of field names and new values. For example, you can provide the
5852 field name "IsActive" and specify the new value "False"; this API will
59- then change the value of IsActive to false.
60-
61- An App Enrollment
62- represents an app that has been enrolled to the current account. When
63- you sign up for an app using the Lockstep Platform, you obtain an
64- enrollment record for that app. Example types of apps include connectors
65- and feature enhancement apps. The App Enrollment object contains
66- information about this app, its configuration, and settings.
67-
68- See
69- [Applications and
53+ then change the value of IsActive to false. An App Enrollment represents
54+ an app that has been enrolled to the current account. When you sign up
55+ for an app using the Lockstep Platform, you obtain an enrollment record
56+ for that app. Example types of apps include connectors and feature
57+ enhancement apps. The App Enrollment object contains information about
58+ this app, its configuration, and settings. See [Applications and
7059 Enrollments](https://developer.lockstep.io/docs/applications-and-enrollments)
7160 for more information.
61+
7262 Parameters
7363 ----------
7464 id : str
@@ -81,17 +71,16 @@ def update_app_enrollment(self, id: str, body: object) -> LockstepResponse:
8171 return self .client .send_request ("PATCH" , path , body , {id : str , body : object })
8272
8373 """
84- Deletes the App Enrollment referred to by this unique identifier. An App
74+ Deletes the App Enrollment referred to by this unique identifier. An App
8575 Enrollment represents an app that has been enrolled to the current
8676 account. When you sign up for an app using the Lockstep Platform, you
8777 obtain an enrollment record for that app. Example types of apps include
8878 connectors and feature enhancement apps. The App Enrollment object
89- contains information about this app, its configuration, and
90- settings.
91-
92- See [Applications and
79+ contains information about this app, its configuration, and settings.
80+ See [Applications and
9381 Enrollments](https://developer.lockstep.io/docs/applications-and-enrollments)
9482 for more information.
83+
9584 Parameters
9685 ----------
9786 id : str
@@ -105,19 +94,16 @@ def delete_app_enrollment(self, id: str, removeEnrollmentData: bool) -> Lockstep
10594 return self .client .send_request ("DELETE" , path , None , {id : str , removeEnrollmentData : bool })
10695
10796 """
108- Creates one or more App Enrollments within this account and returns the
109- records as created.
110-
111- An App Enrollment represents an app that has been
97+ Creates one or more App Enrollments within this account and returns the
98+ records as created. An App Enrollment represents an app that has been
11299 enrolled to the current account. When you sign up for an app using the
113100 Lockstep Platform, you obtain an enrollment record for that app. Example
114101 types of apps include connectors and feature enhancement apps. The App
115102 Enrollment object contains information about this app, its
116- configuration, and settings.
117-
118- See [Applications and
103+ configuration, and settings. See [Applications and
119104 Enrollments](https://developer.lockstep.io/docs/applications-and-enrollments)
120105 for more information.
106+
121107 Parameters
122108 ----------
123109 body : list[AppEnrollmentModel]
@@ -128,24 +114,19 @@ def create_app_enrollments(self, body: list[AppEnrollmentModel]) -> LockstepResp
128114 return self .client .send_request ("POST" , path , body , {body : list [AppEnrollmentModel ]})
129115
130116 """
131- Queries App Enrollments for this account using the specified filtering,
132- sorting, nested fetch, and pagination rules requested.
133-
134- More
135- information on querying can be found on the [Searchlight Query
117+ Queries App Enrollments for this account using the specified filtering,
118+ sorting, nested fetch, and pagination rules requested. More information
119+ on querying can be found on the [Searchlight Query
136120 Language](https://developer.lockstep.io/docs/querying-with-searchlight)
137- page on the Lockstep Developer website.
138-
139- An App Enrollment represents
140- an app that has been enrolled to the current account. When you sign up
141- for an app using the Lockstep Platform, you obtain an enrollment record
142- for that app. Example types of apps include connectors and feature
121+ page on the Lockstep Developer website. An App Enrollment represents an
122+ app that has been enrolled to the current account. When you sign up for
123+ an app using the Lockstep Platform, you obtain an enrollment record for
124+ that app. Example types of apps include connectors and feature
143125 enhancement apps. The App Enrollment object contains information about
144- this app, its configuration, and settings.
145-
146- See [Applications and
126+ this app, its configuration, and settings. See [Applications and
147127 Enrollments](https://developer.lockstep.io/docs/applications-and-enrollments)
148128 for more information.
129+
149130 Parameters
150131 ----------
151132 filter : str
@@ -169,25 +150,20 @@ def query_app_enrollments(self, filter: str, include: str, order: str, pageSize:
169150 return self .client .send_request ("GET" , path , None , {filter : str , include : str , order : str , pageSize : int , pageNumber : int })
170151
171152 """
172- Queries custom fields settings for app enrollment within the Lockstep
153+ Queries custom fields settings for app enrollment within the Lockstep
173154 platform using the specified filtering, sorting, nested fetch, and
174- pagination rules requested.
175-
176- More information on querying can be found
177- on the [Searchlight Query
155+ pagination rules requested. More information on querying can be found on
156+ the [Searchlight Query
178157 Language](https://developer.lockstep.io/docs/querying-with-searchlight)
179- page on the Lockstep Developer website.
180-
181- An App Enrollment represents
182- an app that has been enrolled to the current account. When you sign up
183- for an app using the Lockstep Platform, you obtain an enrollment record
184- for that app. Example types of apps include connectors and feature
158+ page on the Lockstep Developer website. An App Enrollment represents an
159+ app that has been enrolled to the current account. When you sign up for
160+ an app using the Lockstep Platform, you obtain an enrollment record for
161+ that app. Example types of apps include connectors and feature
185162 enhancement apps. The App Enrollment object contains information about
186- this app, its configuration, and settings.
187-
188- See [Applications and
163+ this app, its configuration, and settings. See [Applications and
189164 Enrollments](https://developer.lockstep.io/docs/applications-and-enrollments)
190165 for more information.
166+
191167 Parameters
192168 ----------
193169 id : str
0 commit comments