rxfoundry.clients.swifty-api 0.0.680__py3-none-any.whl → 0.1.1005__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. rxfoundry/clients/swifty_api/__init__.py +37 -3
  2. rxfoundry/clients/swifty_api/api/__init__.py +3 -1
  3. rxfoundry/clients/swifty_api/api/async_api.py +2336 -52
  4. rxfoundry/clients/swifty_api/api/code_api.py +281 -0
  5. rxfoundry/clients/swifty_api/api/default_api.py +318 -0
  6. rxfoundry/clients/swifty_api/api/medication_api.py +647 -51
  7. rxfoundry/clients/swifty_api/api/patient_api.py +1126 -35
  8. rxfoundry/clients/swifty_api/api/pharmacist_api.py +24 -24
  9. rxfoundry/clients/swifty_api/api/pharmacy_api.py +48 -48
  10. rxfoundry/clients/swifty_api/api/prescriber_api.py +24 -24
  11. rxfoundry/clients/swifty_api/api/prescription_api.py +934 -130
  12. rxfoundry/clients/swifty_api/api/task_api.py +1835 -0
  13. rxfoundry/clients/swifty_api/api/tasks_api.py +374 -0
  14. rxfoundry/clients/swifty_api/api/validation_api.py +311 -0
  15. rxfoundry/clients/swifty_api/api/virtual_pharmacy_api.py +262 -0
  16. rxfoundry/clients/swifty_api/api/workflow_api.py +633 -0
  17. rxfoundry/clients/swifty_api/models/__init__.py +34 -2
  18. rxfoundry/clients/swifty_api/models/address.py +11 -10
  19. rxfoundry/clients/swifty_api/models/code_type.py +92 -0
  20. rxfoundry/clients/swifty_api/models/formulary.py +96 -0
  21. rxfoundry/clients/swifty_api/models/insurance.py +96 -0
  22. rxfoundry/clients/swifty_api/models/medication_instruction.py +92 -0
  23. rxfoundry/clients/swifty_api/models/medication_ref.py +100 -0
  24. rxfoundry/clients/swifty_api/models/patient.py +85 -2
  25. rxfoundry/clients/swifty_api/models/patient_activity_data.py +169 -0
  26. rxfoundry/clients/swifty_api/models/patient_activity_message.py +112 -0
  27. rxfoundry/clients/swifty_api/models/patient_activity_notification.py +9 -17
  28. rxfoundry/clients/swifty_api/models/patient_activity_notification_activity_data.py +39 -8
  29. rxfoundry/clients/swifty_api/models/patient_address_activity_notification.py +105 -0
  30. rxfoundry/clients/swifty_api/models/patient_address_data.py +25 -9
  31. rxfoundry/clients/swifty_api/models/patient_allergy.py +92 -0
  32. rxfoundry/clients/swifty_api/models/patient_condition.py +92 -0
  33. rxfoundry/clients/swifty_api/models/patient_data.py +13 -2
  34. rxfoundry/clients/swifty_api/models/patient_external_identifier.py +6 -5
  35. rxfoundry/clients/swifty_api/models/patient_health_profile_data.py +127 -0
  36. rxfoundry/clients/swifty_api/models/patient_insurance.py +106 -0
  37. rxfoundry/clients/swifty_api/models/patient_insurance_data.py +105 -0
  38. rxfoundry/clients/swifty_api/models/patient_medication.py +92 -0
  39. rxfoundry/clients/swifty_api/models/patient_name.py +99 -0
  40. rxfoundry/clients/swifty_api/models/patient_name_data.py +108 -0
  41. rxfoundry/clients/swifty_api/models/patient_phone_number.py +89 -0
  42. rxfoundry/clients/swifty_api/models/patient_phone_number_data.py +98 -0
  43. rxfoundry/clients/swifty_api/models/patient_task.py +115 -0
  44. rxfoundry/clients/swifty_api/models/patient_task_status.py +105 -0
  45. rxfoundry/clients/swifty_api/models/patient_task_type.py +45 -0
  46. rxfoundry/clients/swifty_api/models/prescription.py +35 -30
  47. rxfoundry/clients/swifty_api/models/prescription_change_request.py +24 -36
  48. rxfoundry/clients/swifty_api/models/prescription_change_request_and_response.py +145 -0
  49. rxfoundry/clients/swifty_api/models/prescription_change_request_response.py +134 -0
  50. rxfoundry/clients/swifty_api/models/prescription_data.py +126 -0
  51. rxfoundry/clients/swifty_api/models/prescription_message.py +100 -0
  52. rxfoundry/clients/swifty_api/models/prescription_message_task.py +109 -0
  53. rxfoundry/clients/swifty_api/models/prescription_message_task_status.py +99 -0
  54. rxfoundry/clients/swifty_api/models/prescription_message_task_type.py +43 -0
  55. rxfoundry/clients/swifty_api/models/prescription_message_type.py +53 -0
  56. rxfoundry/clients/swifty_api/models/prescription_patch.py +6 -2
  57. rxfoundry/clients/swifty_api/models/prescription_status_type.py +40 -0
  58. rxfoundry/clients/swifty_api/models/prescription_task.py +14 -12
  59. rxfoundry/clients/swifty_api/models/prescription_task_status.py +6 -2
  60. rxfoundry/clients/swifty_api/models/prescription_task_type.py +42 -0
  61. rxfoundry/clients/swifty_api/models/prescription_transfer_request_and_response.py +145 -0
  62. rxfoundry/clients/swifty_api/models/prescription_transfer_request_response.py +128 -0
  63. rxfoundry/clients/swifty_api/models/status_type.py +92 -0
  64. rxfoundry/clients/swifty_api/models/workflow.py +108 -0
  65. rxfoundry/clients/swifty_api/models/workflow_sub_task.py +96 -0
  66. rxfoundry/clients/swifty_api/models/workflow_sub_task_sub_task.py +155 -0
  67. rxfoundry/clients/swifty_api/models/workflow_task.py +111 -0
  68. rxfoundry/clients/swifty_api/models/workflow_task_task.py +155 -0
  69. rxfoundry/clients/swifty_api/models/workflow_type.py +55 -0
  70. {rxfoundry_clients_swifty_api-0.0.680.dist-info → rxfoundry_clients_swifty_api-0.1.1005.dist-info}/METADATA +1 -1
  71. rxfoundry_clients_swifty_api-0.1.1005.dist-info/RECORD +109 -0
  72. rxfoundry_clients_swifty_api-0.0.680.dist-info/RECORD +0 -64
  73. {rxfoundry_clients_swifty_api-0.0.680.dist-info → rxfoundry_clients_swifty_api-0.1.1005.dist-info}/WHEEL +0 -0
  74. {rxfoundry_clients_swifty_api-0.0.680.dist-info → rxfoundry_clients_swifty_api-0.1.1005.dist-info}/top_level.txt +0 -0
@@ -304,10 +304,10 @@ class PharmacistApi:
304
304
  @validate_call
305
305
  def get_pharmacists(
306
306
  self,
307
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
308
- page: Optional[StrictInt] = None,
309
- results_per_page: Optional[StrictInt] = None,
310
- deep: Optional[StrictBool] = None,
307
+ q: Annotated[Optional[StrictStr], Field(description="Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state.")] = None,
308
+ page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
309
+ results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
310
+ deep: Annotated[Optional[StrictBool], Field(description="Returned contained objects for the pharmacist or just minimal information. Defaults to false.")] = None,
311
311
  _request_timeout: Union[
312
312
  None,
313
313
  Annotated[StrictFloat, Field(gt=0)],
@@ -324,13 +324,13 @@ class PharmacistApi:
324
324
  """Get all pharmacists
325
325
 
326
326
 
327
- :param q: Filter medications by query
327
+ :param q: Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state.
328
328
  :type q: str
329
- :param page:
329
+ :param page: Page number to return. Defaults to 1.
330
330
  :type page: int
331
- :param results_per_page:
331
+ :param results_per_page: Number of results to return per page. Defaults to 10.
332
332
  :type results_per_page: int
333
- :param deep:
333
+ :param deep: Returned contained objects for the pharmacist or just minimal information. Defaults to false.
334
334
  :type deep: bool
335
335
  :param _request_timeout: timeout setting for this request. If one
336
336
  number provided, it will be total request
@@ -383,10 +383,10 @@ class PharmacistApi:
383
383
  @validate_call
384
384
  def get_pharmacists_with_http_info(
385
385
  self,
386
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
387
- page: Optional[StrictInt] = None,
388
- results_per_page: Optional[StrictInt] = None,
389
- deep: Optional[StrictBool] = None,
386
+ q: Annotated[Optional[StrictStr], Field(description="Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state.")] = None,
387
+ page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
388
+ results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
389
+ deep: Annotated[Optional[StrictBool], Field(description="Returned contained objects for the pharmacist or just minimal information. Defaults to false.")] = None,
390
390
  _request_timeout: Union[
391
391
  None,
392
392
  Annotated[StrictFloat, Field(gt=0)],
@@ -403,13 +403,13 @@ class PharmacistApi:
403
403
  """Get all pharmacists
404
404
 
405
405
 
406
- :param q: Filter medications by query
406
+ :param q: Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state.
407
407
  :type q: str
408
- :param page:
408
+ :param page: Page number to return. Defaults to 1.
409
409
  :type page: int
410
- :param results_per_page:
410
+ :param results_per_page: Number of results to return per page. Defaults to 10.
411
411
  :type results_per_page: int
412
- :param deep:
412
+ :param deep: Returned contained objects for the pharmacist or just minimal information. Defaults to false.
413
413
  :type deep: bool
414
414
  :param _request_timeout: timeout setting for this request. If one
415
415
  number provided, it will be total request
@@ -462,10 +462,10 @@ class PharmacistApi:
462
462
  @validate_call
463
463
  def get_pharmacists_without_preload_content(
464
464
  self,
465
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
466
- page: Optional[StrictInt] = None,
467
- results_per_page: Optional[StrictInt] = None,
468
- deep: Optional[StrictBool] = None,
465
+ q: Annotated[Optional[StrictStr], Field(description="Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state.")] = None,
466
+ page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
467
+ results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
468
+ deep: Annotated[Optional[StrictBool], Field(description="Returned contained objects for the pharmacist or just minimal information. Defaults to false.")] = None,
469
469
  _request_timeout: Union[
470
470
  None,
471
471
  Annotated[StrictFloat, Field(gt=0)],
@@ -482,13 +482,13 @@ class PharmacistApi:
482
482
  """Get all pharmacists
483
483
 
484
484
 
485
- :param q: Filter medications by query
485
+ :param q: Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state.
486
486
  :type q: str
487
- :param page:
487
+ :param page: Page number to return. Defaults to 1.
488
488
  :type page: int
489
- :param results_per_page:
489
+ :param results_per_page: Number of results to return per page. Defaults to 10.
490
490
  :type results_per_page: int
491
- :param deep:
491
+ :param deep: Returned contained objects for the pharmacist or just minimal information. Defaults to false.
492
492
  :type deep: bool
493
493
  :param _request_timeout: timeout setting for this request. If one
494
494
  number provided, it will be total request
@@ -43,14 +43,14 @@ class PharmacyApi:
43
43
  @validate_call
44
44
  def get_pharmacies(
45
45
  self,
46
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
47
- networks: Optional[List[StrictStr]] = None,
48
- near: Optional[StrictStr] = None,
49
- distance: Optional[StrictInt] = None,
50
- pricing_program: Optional[StrictStr] = None,
51
- page: Optional[StrictInt] = None,
52
- results_per_page: Optional[StrictInt] = None,
53
- deep: Optional[StrictBool] = None,
46
+ q: Annotated[Optional[StrictStr], Field(description="Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state, pharmacy networks and taxonomy codes. Takes precedence over other filters if set to anything other that '*' ")] = None,
47
+ networks: Annotated[Optional[List[StrictStr]], Field(description="Filter pharmacies by network(s) using the network names. q has to be set to '*' for this to work.")] = None,
48
+ near: Annotated[Optional[StrictStr], Field(description="The lat,lon to search near. q has to be set to '*' for this to work and distance has to be set.")] = None,
49
+ distance: Annotated[Optional[StrictInt], Field(description="The distance to search, in miles from the lat,lon location. q has to be set to '*' for this to work.")] = None,
50
+ pricing_program: Annotated[Optional[StrictStr], Field(description="The pricing program to return pricing program data for. Only one pricing program can be passed in at a time.")] = None,
51
+ page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
52
+ results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
53
+ deep: Annotated[Optional[StrictBool], Field(description="Returned contained objects for the pharmacy or just minimal information. Defaults to false.")] = None,
54
54
  _request_timeout: Union[
55
55
  None,
56
56
  Annotated[StrictFloat, Field(gt=0)],
@@ -67,21 +67,21 @@ class PharmacyApi:
67
67
  """Get all pharmacies
68
68
 
69
69
 
70
- :param q: Filter medications by query
70
+ :param q: Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state, pharmacy networks and taxonomy codes. Takes precedence over other filters if set to anything other that '*'
71
71
  :type q: str
72
- :param networks:
72
+ :param networks: Filter pharmacies by network(s) using the network names. q has to be set to '*' for this to work.
73
73
  :type networks: List[str]
74
- :param near:
74
+ :param near: The lat,lon to search near. q has to be set to '*' for this to work and distance has to be set.
75
75
  :type near: str
76
- :param distance:
76
+ :param distance: The distance to search, in miles from the lat,lon location. q has to be set to '*' for this to work.
77
77
  :type distance: int
78
- :param pricing_program:
78
+ :param pricing_program: The pricing program to return pricing program data for. Only one pricing program can be passed in at a time.
79
79
  :type pricing_program: str
80
- :param page:
80
+ :param page: Page number to return. Defaults to 1.
81
81
  :type page: int
82
- :param results_per_page:
82
+ :param results_per_page: Number of results to return per page. Defaults to 10.
83
83
  :type results_per_page: int
84
- :param deep:
84
+ :param deep: Returned contained objects for the pharmacy or just minimal information. Defaults to false.
85
85
  :type deep: bool
86
86
  :param _request_timeout: timeout setting for this request. If one
87
87
  number provided, it will be total request
@@ -138,14 +138,14 @@ class PharmacyApi:
138
138
  @validate_call
139
139
  def get_pharmacies_with_http_info(
140
140
  self,
141
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
142
- networks: Optional[List[StrictStr]] = None,
143
- near: Optional[StrictStr] = None,
144
- distance: Optional[StrictInt] = None,
145
- pricing_program: Optional[StrictStr] = None,
146
- page: Optional[StrictInt] = None,
147
- results_per_page: Optional[StrictInt] = None,
148
- deep: Optional[StrictBool] = None,
141
+ q: Annotated[Optional[StrictStr], Field(description="Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state, pharmacy networks and taxonomy codes. Takes precedence over other filters if set to anything other that '*' ")] = None,
142
+ networks: Annotated[Optional[List[StrictStr]], Field(description="Filter pharmacies by network(s) using the network names. q has to be set to '*' for this to work.")] = None,
143
+ near: Annotated[Optional[StrictStr], Field(description="The lat,lon to search near. q has to be set to '*' for this to work and distance has to be set.")] = None,
144
+ distance: Annotated[Optional[StrictInt], Field(description="The distance to search, in miles from the lat,lon location. q has to be set to '*' for this to work.")] = None,
145
+ pricing_program: Annotated[Optional[StrictStr], Field(description="The pricing program to return pricing program data for. Only one pricing program can be passed in at a time.")] = None,
146
+ page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
147
+ results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
148
+ deep: Annotated[Optional[StrictBool], Field(description="Returned contained objects for the pharmacy or just minimal information. Defaults to false.")] = None,
149
149
  _request_timeout: Union[
150
150
  None,
151
151
  Annotated[StrictFloat, Field(gt=0)],
@@ -162,21 +162,21 @@ class PharmacyApi:
162
162
  """Get all pharmacies
163
163
 
164
164
 
165
- :param q: Filter medications by query
165
+ :param q: Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state, pharmacy networks and taxonomy codes. Takes precedence over other filters if set to anything other that '*'
166
166
  :type q: str
167
- :param networks:
167
+ :param networks: Filter pharmacies by network(s) using the network names. q has to be set to '*' for this to work.
168
168
  :type networks: List[str]
169
- :param near:
169
+ :param near: The lat,lon to search near. q has to be set to '*' for this to work and distance has to be set.
170
170
  :type near: str
171
- :param distance:
171
+ :param distance: The distance to search, in miles from the lat,lon location. q has to be set to '*' for this to work.
172
172
  :type distance: int
173
- :param pricing_program:
173
+ :param pricing_program: The pricing program to return pricing program data for. Only one pricing program can be passed in at a time.
174
174
  :type pricing_program: str
175
- :param page:
175
+ :param page: Page number to return. Defaults to 1.
176
176
  :type page: int
177
- :param results_per_page:
177
+ :param results_per_page: Number of results to return per page. Defaults to 10.
178
178
  :type results_per_page: int
179
- :param deep:
179
+ :param deep: Returned contained objects for the pharmacy or just minimal information. Defaults to false.
180
180
  :type deep: bool
181
181
  :param _request_timeout: timeout setting for this request. If one
182
182
  number provided, it will be total request
@@ -233,14 +233,14 @@ class PharmacyApi:
233
233
  @validate_call
234
234
  def get_pharmacies_without_preload_content(
235
235
  self,
236
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
237
- networks: Optional[List[StrictStr]] = None,
238
- near: Optional[StrictStr] = None,
239
- distance: Optional[StrictInt] = None,
240
- pricing_program: Optional[StrictStr] = None,
241
- page: Optional[StrictInt] = None,
242
- results_per_page: Optional[StrictInt] = None,
243
- deep: Optional[StrictBool] = None,
236
+ q: Annotated[Optional[StrictStr], Field(description="Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state, pharmacy networks and taxonomy codes. Takes precedence over other filters if set to anything other that '*' ")] = None,
237
+ networks: Annotated[Optional[List[StrictStr]], Field(description="Filter pharmacies by network(s) using the network names. q has to be set to '*' for this to work.")] = None,
238
+ near: Annotated[Optional[StrictStr], Field(description="The lat,lon to search near. q has to be set to '*' for this to work and distance has to be set.")] = None,
239
+ distance: Annotated[Optional[StrictInt], Field(description="The distance to search, in miles from the lat,lon location. q has to be set to '*' for this to work.")] = None,
240
+ pricing_program: Annotated[Optional[StrictStr], Field(description="The pricing program to return pricing program data for. Only one pricing program can be passed in at a time.")] = None,
241
+ page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
242
+ results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
243
+ deep: Annotated[Optional[StrictBool], Field(description="Returned contained objects for the pharmacy or just minimal information. Defaults to false.")] = None,
244
244
  _request_timeout: Union[
245
245
  None,
246
246
  Annotated[StrictFloat, Field(gt=0)],
@@ -257,21 +257,21 @@ class PharmacyApi:
257
257
  """Get all pharmacies
258
258
 
259
259
 
260
- :param q: Filter medications by query
260
+ :param q: Filter medications by query. Searches on NPI, first name, last name, practice address street one, practice address city, practice address state, pharmacy networks and taxonomy codes. Takes precedence over other filters if set to anything other that '*'
261
261
  :type q: str
262
- :param networks:
262
+ :param networks: Filter pharmacies by network(s) using the network names. q has to be set to '*' for this to work.
263
263
  :type networks: List[str]
264
- :param near:
264
+ :param near: The lat,lon to search near. q has to be set to '*' for this to work and distance has to be set.
265
265
  :type near: str
266
- :param distance:
266
+ :param distance: The distance to search, in miles from the lat,lon location. q has to be set to '*' for this to work.
267
267
  :type distance: int
268
- :param pricing_program:
268
+ :param pricing_program: The pricing program to return pricing program data for. Only one pricing program can be passed in at a time.
269
269
  :type pricing_program: str
270
- :param page:
270
+ :param page: Page number to return. Defaults to 1.
271
271
  :type page: int
272
- :param results_per_page:
272
+ :param results_per_page: Number of results to return per page. Defaults to 10.
273
273
  :type results_per_page: int
274
- :param deep:
274
+ :param deep: Returned contained objects for the pharmacy or just minimal information. Defaults to false.
275
275
  :type deep: bool
276
276
  :param _request_timeout: timeout setting for this request. If one
277
277
  number provided, it will be total request
@@ -304,10 +304,10 @@ class PrescriberApi:
304
304
  @validate_call
305
305
  def get_prescribers(
306
306
  self,
307
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
308
- page: Optional[StrictInt] = None,
309
- results_per_page: Optional[StrictInt] = None,
310
- deep: Optional[StrictBool] = None,
307
+ q: Annotated[Optional[StrictStr], Field(description="Filter prescribers by query. Searches by NPI, first name, last name, practice address street one, practice address city, practice address state.")] = None,
308
+ page: Annotated[Optional[StrictInt], Field(description="The page number to return. Defaults to 1.")] = None,
309
+ results_per_page: Annotated[Optional[StrictInt], Field(description="The number of results to return per page. Defaults to 10.")] = None,
310
+ deep: Annotated[Optional[StrictBool], Field(description="Whether to return contained objecst for the prescriber or just minimal information. Defaults to false.")] = None,
311
311
  _request_timeout: Union[
312
312
  None,
313
313
  Annotated[StrictFloat, Field(gt=0)],
@@ -324,13 +324,13 @@ class PrescriberApi:
324
324
  """Get all prescribers
325
325
 
326
326
 
327
- :param q: Filter medications by query
327
+ :param q: Filter prescribers by query. Searches by NPI, first name, last name, practice address street one, practice address city, practice address state.
328
328
  :type q: str
329
- :param page:
329
+ :param page: The page number to return. Defaults to 1.
330
330
  :type page: int
331
- :param results_per_page:
331
+ :param results_per_page: The number of results to return per page. Defaults to 10.
332
332
  :type results_per_page: int
333
- :param deep:
333
+ :param deep: Whether to return contained objecst for the prescriber or just minimal information. Defaults to false.
334
334
  :type deep: bool
335
335
  :param _request_timeout: timeout setting for this request. If one
336
336
  number provided, it will be total request
@@ -383,10 +383,10 @@ class PrescriberApi:
383
383
  @validate_call
384
384
  def get_prescribers_with_http_info(
385
385
  self,
386
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
387
- page: Optional[StrictInt] = None,
388
- results_per_page: Optional[StrictInt] = None,
389
- deep: Optional[StrictBool] = None,
386
+ q: Annotated[Optional[StrictStr], Field(description="Filter prescribers by query. Searches by NPI, first name, last name, practice address street one, practice address city, practice address state.")] = None,
387
+ page: Annotated[Optional[StrictInt], Field(description="The page number to return. Defaults to 1.")] = None,
388
+ results_per_page: Annotated[Optional[StrictInt], Field(description="The number of results to return per page. Defaults to 10.")] = None,
389
+ deep: Annotated[Optional[StrictBool], Field(description="Whether to return contained objecst for the prescriber or just minimal information. Defaults to false.")] = None,
390
390
  _request_timeout: Union[
391
391
  None,
392
392
  Annotated[StrictFloat, Field(gt=0)],
@@ -403,13 +403,13 @@ class PrescriberApi:
403
403
  """Get all prescribers
404
404
 
405
405
 
406
- :param q: Filter medications by query
406
+ :param q: Filter prescribers by query. Searches by NPI, first name, last name, practice address street one, practice address city, practice address state.
407
407
  :type q: str
408
- :param page:
408
+ :param page: The page number to return. Defaults to 1.
409
409
  :type page: int
410
- :param results_per_page:
410
+ :param results_per_page: The number of results to return per page. Defaults to 10.
411
411
  :type results_per_page: int
412
- :param deep:
412
+ :param deep: Whether to return contained objecst for the prescriber or just minimal information. Defaults to false.
413
413
  :type deep: bool
414
414
  :param _request_timeout: timeout setting for this request. If one
415
415
  number provided, it will be total request
@@ -462,10 +462,10 @@ class PrescriberApi:
462
462
  @validate_call
463
463
  def get_prescribers_without_preload_content(
464
464
  self,
465
- q: Annotated[Optional[StrictStr], Field(description="Filter medications by query")] = None,
466
- page: Optional[StrictInt] = None,
467
- results_per_page: Optional[StrictInt] = None,
468
- deep: Optional[StrictBool] = None,
465
+ q: Annotated[Optional[StrictStr], Field(description="Filter prescribers by query. Searches by NPI, first name, last name, practice address street one, practice address city, practice address state.")] = None,
466
+ page: Annotated[Optional[StrictInt], Field(description="The page number to return. Defaults to 1.")] = None,
467
+ results_per_page: Annotated[Optional[StrictInt], Field(description="The number of results to return per page. Defaults to 10.")] = None,
468
+ deep: Annotated[Optional[StrictBool], Field(description="Whether to return contained objecst for the prescriber or just minimal information. Defaults to false.")] = None,
469
469
  _request_timeout: Union[
470
470
  None,
471
471
  Annotated[StrictFloat, Field(gt=0)],
@@ -482,13 +482,13 @@ class PrescriberApi:
482
482
  """Get all prescribers
483
483
 
484
484
 
485
- :param q: Filter medications by query
485
+ :param q: Filter prescribers by query. Searches by NPI, first name, last name, practice address street one, practice address city, practice address state.
486
486
  :type q: str
487
- :param page:
487
+ :param page: The page number to return. Defaults to 1.
488
488
  :type page: int
489
- :param results_per_page:
489
+ :param results_per_page: The number of results to return per page. Defaults to 10.
490
490
  :type results_per_page: int
491
- :param deep:
491
+ :param deep: Whether to return contained objecst for the prescriber or just minimal information. Defaults to false.
492
492
  :type deep: bool
493
493
  :param _request_timeout: timeout setting for this request. If one
494
494
  number provided, it will be total request