Skip to content

Commit 73e44b0

Browse files
committed
Bump to v0.0.3
1 parent fe0da94 commit 73e44b0

File tree

957 files changed

+67556
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

957 files changed

+67556
-11
lines changed

.openapi-generator/FILES

+927
Large diffs are not rendered by default.

README.md

+310-1
Large diffs are not rendered by default.

docs/BitesApi.md

+31-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@ Name | Type | Description | Notes
9696

9797
| Status code | Description | Response headers |
9898
|-------------|-------------|------------------|
99+
**400** | | - |
100+
**401** | | - |
101+
**403** | | - |
102+
**404** | | - |
103+
**405** | | - |
104+
**406** | | - |
105+
**415** | | - |
106+
**500** | | - |
99107
**201** | | - |
100108

101109
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
@@ -176,12 +184,20 @@ void (empty response body)
176184
### HTTP request headers
177185

178186
- **Content-Type**: Not defined
179-
- **Accept**: Not defined
187+
- **Accept**: application/json
180188

181189
### HTTP response details
182190

183191
| Status code | Description | Response headers |
184192
|-------------|-------------|------------------|
193+
**400** | | - |
194+
**401** | | - |
195+
**403** | | - |
196+
**404** | | - |
197+
**405** | | - |
198+
**406** | | - |
199+
**415** | | - |
200+
**500** | | - |
185201
**204** | No response body | - |
186202

187203
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
@@ -297,6 +313,13 @@ Name | Type | Description | Notes
297313

298314
| Status code | Description | Response headers |
299315
|-------------|-------------|------------------|
316+
**400** | | - |
317+
**401** | | - |
318+
**404** | | - |
319+
**405** | | - |
320+
**406** | | - |
321+
**415** | | - |
322+
**500** | | - |
300323
**200** | | - |
301324

302325
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
@@ -386,6 +409,13 @@ Name | Type | Description | Notes
386409

387410
| Status code | Description | Response headers |
388411
|-------------|-------------|------------------|
412+
**400** | | - |
413+
**401** | | - |
414+
**404** | | - |
415+
**405** | | - |
416+
**406** | | - |
417+
**415** | | - |
418+
**500** | | - |
389419
**200** | | - |
390420

391421
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateChestBiteCountErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_chest_bite_count_error_component import BitesCreateChestBiteCountErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateChestBiteCountErrorComponent from a JSON string
20+
bites_create_chest_bite_count_error_component_instance = BitesCreateChestBiteCountErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateChestBiteCountErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_chest_bite_count_error_component_dict = bites_create_chest_bite_count_error_component_instance.to_dict()
26+
# create an instance of BitesCreateChestBiteCountErrorComponent from a dict
27+
bites_create_chest_bite_count_error_component_from_dict = BitesCreateChestBiteCountErrorComponent.from_dict(bites_create_chest_bite_count_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateCreatedAtErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_created_at_error_component import BitesCreateCreatedAtErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateCreatedAtErrorComponent from a JSON string
20+
bites_create_created_at_error_component_instance = BitesCreateCreatedAtErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateCreatedAtErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_created_at_error_component_dict = bites_create_created_at_error_component_instance.to_dict()
26+
# create an instance of BitesCreateCreatedAtErrorComponent from a dict
27+
bites_create_created_at_error_component_from_dict = BitesCreateCreatedAtErrorComponent.from_dict(bites_create_created_at_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

docs/BitesCreateError.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateError
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_error import BitesCreateError
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateError from a JSON string
20+
bites_create_error_instance = BitesCreateError.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateError.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_error_dict = bites_create_error_instance.to_dict()
26+
# create an instance of BitesCreateError from a dict
27+
bites_create_error_from_dict = BitesCreateError.from_dict(bites_create_error_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

docs/BitesCreateErrorResponse400.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# BitesCreateErrorResponse400
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**type** | **str** | |
9+
**errors** | [**List[ParseError]**](ParseError.md) | |
10+
11+
## Example
12+
13+
```python
14+
from mosquito_alert.models.bites_create_error_response400 import BitesCreateErrorResponse400
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of BitesCreateErrorResponse400 from a JSON string
19+
bites_create_error_response400_instance = BitesCreateErrorResponse400.from_json(json)
20+
# print the JSON string representation of the object
21+
print(BitesCreateErrorResponse400.to_json())
22+
23+
# convert the object into a dict
24+
bites_create_error_response400_dict = bites_create_error_response400_instance.to_dict()
25+
# create an instance of BitesCreateErrorResponse400 from a dict
26+
bites_create_error_response400_from_dict = BitesCreateErrorResponse400.from_dict(bites_create_error_response400_dict)
27+
```
28+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29+
30+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateEventEnvironmentErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_event_environment_error_component import BitesCreateEventEnvironmentErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateEventEnvironmentErrorComponent from a JSON string
20+
bites_create_event_environment_error_component_instance = BitesCreateEventEnvironmentErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateEventEnvironmentErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_event_environment_error_component_dict = bites_create_event_environment_error_component_instance.to_dict()
26+
# create an instance of BitesCreateEventEnvironmentErrorComponent from a dict
27+
bites_create_event_environment_error_component_from_dict = BitesCreateEventEnvironmentErrorComponent.from_dict(bites_create_event_environment_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateEventMomentErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_event_moment_error_component import BitesCreateEventMomentErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateEventMomentErrorComponent from a JSON string
20+
bites_create_event_moment_error_component_instance = BitesCreateEventMomentErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateEventMomentErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_event_moment_error_component_dict = bites_create_event_moment_error_component_instance.to_dict()
26+
# create an instance of BitesCreateEventMomentErrorComponent from a dict
27+
bites_create_event_moment_error_component_from_dict = BitesCreateEventMomentErrorComponent.from_dict(bites_create_event_moment_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateHeadBiteCountErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_head_bite_count_error_component import BitesCreateHeadBiteCountErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateHeadBiteCountErrorComponent from a JSON string
20+
bites_create_head_bite_count_error_component_instance = BitesCreateHeadBiteCountErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateHeadBiteCountErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_head_bite_count_error_component_dict = bites_create_head_bite_count_error_component_instance.to_dict()
26+
# create an instance of BitesCreateHeadBiteCountErrorComponent from a dict
27+
bites_create_head_bite_count_error_component_from_dict = BitesCreateHeadBiteCountErrorComponent.from_dict(bites_create_head_bite_count_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateLeftArmBiteCountErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_left_arm_bite_count_error_component import BitesCreateLeftArmBiteCountErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateLeftArmBiteCountErrorComponent from a JSON string
20+
bites_create_left_arm_bite_count_error_component_instance = BitesCreateLeftArmBiteCountErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateLeftArmBiteCountErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_left_arm_bite_count_error_component_dict = bites_create_left_arm_bite_count_error_component_instance.to_dict()
26+
# create an instance of BitesCreateLeftArmBiteCountErrorComponent from a dict
27+
bites_create_left_arm_bite_count_error_component_from_dict = BitesCreateLeftArmBiteCountErrorComponent.from_dict(bites_create_left_arm_bite_count_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateLeftLegBiteCountErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_left_leg_bite_count_error_component import BitesCreateLeftLegBiteCountErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateLeftLegBiteCountErrorComponent from a JSON string
20+
bites_create_left_leg_bite_count_error_component_instance = BitesCreateLeftLegBiteCountErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateLeftLegBiteCountErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_left_leg_bite_count_error_component_dict = bites_create_left_leg_bite_count_error_component_instance.to_dict()
26+
# create an instance of BitesCreateLeftLegBiteCountErrorComponent from a dict
27+
bites_create_left_leg_bite_count_error_component_from_dict = BitesCreateLeftLegBiteCountErrorComponent.from_dict(bites_create_left_leg_bite_count_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# BitesCreateLocationNonFieldErrorsErrorComponent
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**attr** | **str** | |
9+
**code** | **str** | |
10+
**detail** | **str** | |
11+
12+
## Example
13+
14+
```python
15+
from mosquito_alert.models.bites_create_location_non_field_errors_error_component import BitesCreateLocationNonFieldErrorsErrorComponent
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of BitesCreateLocationNonFieldErrorsErrorComponent from a JSON string
20+
bites_create_location_non_field_errors_error_component_instance = BitesCreateLocationNonFieldErrorsErrorComponent.from_json(json)
21+
# print the JSON string representation of the object
22+
print(BitesCreateLocationNonFieldErrorsErrorComponent.to_json())
23+
24+
# convert the object into a dict
25+
bites_create_location_non_field_errors_error_component_dict = bites_create_location_non_field_errors_error_component_instance.to_dict()
26+
# create an instance of BitesCreateLocationNonFieldErrorsErrorComponent from a dict
27+
bites_create_location_non_field_errors_error_component_from_dict = BitesCreateLocationNonFieldErrorsErrorComponent.from_dict(bites_create_location_non_field_errors_error_component_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

0 commit comments

Comments
 (0)