Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md

This file was deleted.

379 changes: 379 additions & 0 deletions README.md

Large diffs are not rendered by default.

81 changes: 81 additions & 0 deletions custom_templates/api_doc.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# {{packageName}}.{{classname}}{{#description}}
{{.}}{{/description}}

All URIs are relative to *{{basePath}}*

Method | HTTP request | Description
------------- | ------------- | -------------
{{#operations}}{{#operation}}[**{{operationId}}**]({{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{summary}}
{{/operation}}{{/operations}}

{{#operations}}
{{#operation}}
# **{{{operationId}}}**
> {{#returnType}}{{{.}}} {{/returnType}}{{{operationId}}}({{#allParams}}{{#required}}{{{paramName}}}{{/required}}{{^required}}{{{paramName}}}={{{paramName}}}{{/required}}{{^-last}}, {{/-last}}{{/allParams}})

{{#summary}}
{{{summary}}}

{{/summary}}
{{#unescapedNotes}}
{{{.}}}

{{/unescapedNotes}}
### Example

{{#hasAuthMethods}}
{{#authMethods}}
{{#isBasic}}
{{#isBasicBasic}}
* Basic Authentication ({{name}}):
{{/isBasicBasic}}
{{#isBasicBearer}}
* Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} Authentication ({{name}}):
{{/isBasicBearer}}
{{/isBasic}}
{{#isApiKey}}
* Api Key Authentication ({{name}}):
{{/isApiKey }}
{{#isOAuth}}
* OAuth Authentication ({{name}}):
{{/isOAuth }}
{{/authMethods}}
{{/hasAuthMethods}}
{{> api_doc_example }}


### Parameters

{{^allParams}}This endpoint does not need any parameter.{{/allParams}}{{#allParams}}{{#-last}}
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------{{/-last}}{{/allParams}}
{{#allParams}} **{{paramName}}** | {{#isFile}}**{{dataType}}**{{/isFile}}{{^isFile}}{{#isPrimitiveType}}**{{dataType}}**{{/isPrimitiveType}}{{^isPrimitiveType}}[**{{dataType}}**]({{baseType}}.md){{/isPrimitiveType}}{{/isFile}}| {{description}} | {{^required}}[optional] {{/required}}{{#defaultValue}}[default to {{.}}]{{/defaultValue}}
{{/allParams}}

### Return type

{{#returnType}}{{#returnTypeIsPrimitive}}**{{{returnType}}}**{{/returnTypeIsPrimitive}}{{^returnTypeIsPrimitive}}[**{{{returnType}}}**]({{returnBaseType}}.md){{/returnTypeIsPrimitive}}{{/returnType}}{{^returnType}}void (empty response body){{/returnType}}

### Authorization

{{^authMethods}}No authorization required{{/authMethods}}{{#authMethods}}[{{{name}}}](../../../README.md#{{{name}}}){{^-last}}, {{/-last}}{{/authMethods}}

### HTTP request headers

- **Content-Type**: {{#consumes}}{{{mediaType}}}{{^-last}}, {{/-last}}{{/consumes}}{{^consumes}}Not defined{{/consumes}}
- **Accept**: {{#produces}}{{{mediaType}}}{{^-last}}, {{/-last}}{{/produces}}{{^produces}}Not defined{{/produces}}

{{#responses.0}}
### HTTP response details

| Status code | Description | Response headers |
|-------------|-------------|------------------|
{{#responses}}
**{{code}}** | {{message}} | {{#headers}} * {{baseName}} - {{description}} <br> {{/headers}}{{^headers.0}} - {{/headers.0}} |
{{/responses}}
{{/responses.0}}

[[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)

{{/operation}}
{{/operations}}
4 changes: 2 additions & 2 deletions custom_templates/common_README.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ All URIs are relative to *https://api.lexmachina.com*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
{{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**]({{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** {{path}} | {{summary}}
{{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**](src/{{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** {{path}} | {{summary}}
{{/operation}}{{/operations}}{{/apis}}{{/apiInfo}}

## Documentation For Models

{{#models}}{{#model}} - [{{{classname}}}]({{modelDocPath}}{{{classname}}}.md)
{{#models}}{{#model}} - [{{{classname}}}](src/{{modelDocPath}}{{{classname}}}.md)
{{/model}}{{/models}}

<a id="documentation-for-authorization"></a>
Expand Down
40 changes: 40 additions & 0 deletions custom_templates/model_doc.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{{#models}}{{#model}}# {{classname}}

{{#description}}{{&description}}
{{/description}}

{{^isEnum}}
## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
{{#vars}}**{{name}}** | {{#isPrimitiveType}}**{{dataType}}**{{/isPrimitiveType}}{{^isPrimitiveType}}[**{{dataType}}**]({{complexType}}.md){{/isPrimitiveType}} | {{description}} | {{^required}}[optional] {{/required}}{{#isReadOnly}}[readonly] {{/isReadOnly}}{{#defaultValue}}[default to {{{.}}}]{{/defaultValue}}
{{/vars}}

## Example

```python
from {{modelPackage}}.{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}} import {{classname}}

# TODO update the JSON string below
json = "{}"
# create an instance of {{classname}} from a JSON string
{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_instance = {{classname}}.from_json(json)
# print the JSON string representation of the object
print({{classname}}.to_json())

# convert the object into a dict
{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_instance.to_dict()
# create an instance of {{classname}} from a dict
{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_from_dict = {{classname}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict)
```
{{/isEnum}}
{{#isEnum}}
## Enum
{{#allowableValues}}{{#enumVars}}
* `{{name}}` (value: `{{{value}}}`)
{{/enumVars}}{{/allowableValues}}
{{/isEnum}}
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)

{{/model}}{{/models}}
5 changes: 5 additions & 0 deletions generate-client.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#! /bin/bash
rm README.md
openapi-generator-cli generate -g python -c config/open_api_autogenerator_config.yml -i config/openapi.json -o src -t custom_templates
cp src/lexmachina_README.md README.md
rm src/lexmachina_README.md
1 change: 0 additions & 1 deletion src/lexmachina/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/lexmachina/docs/AdministrativeLawJudge.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ administrative_law_judge_dict = administrative_law_judge_instance.to_dict()
# create an instance of AdministrativeLawJudge from a dict
administrative_law_judge_from_dict = AdministrativeLawJudge.from_dict(administrative_law_judge_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AdministrativePatentJudge.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ administrative_patent_judge_dict = administrative_patent_judge_instance.to_dict(
# create an instance of AdministrativePatentJudge from a dict
administrative_patent_judge_from_dict = AdministrativePatentJudge.from_dict(administrative_patent_judge_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AdministrativePatentJudgeDetail.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ administrative_patent_judge_detail_dict = administrative_patent_judge_detail_ins
# create an instance of AdministrativePatentJudgeDetail from a dict
administrative_patent_judge_detail_from_dict = AdministrativePatentJudgeDetail.from_dict(administrative_patent_judge_detail_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/Aggregation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ aggregation_dict = aggregation_instance.to_dict()
# create an instance of Aggregation from a dict
aggregation_from_dict = Aggregation.from_dict(aggregation_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/Alert.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ alert_dict = alert_instance.to_dict()
# create an instance of Alert from a dict
alert_from_dict = Alert.from_dict(alert_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AlertItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ alert_item_dict = alert_item_instance.to_dict()
# create an instance of AlertItem from a dict
alert_item_from_dict = AlertItem.from_dict(alert_item_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AlertRunData.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ alert_run_data_dict = alert_run_data_instance.to_dict()
# create an instance of AlertRunData from a dict
alert_run_data_from_dict = AlertRunData.from_dict(alert_run_data_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AlertRunResult.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ alert_run_result_dict = alert_run_result_instance.to_dict()
# create an instance of AlertRunResult from a dict
alert_run_result_from_dict = AlertRunResult.from_dict(alert_run_result_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


12 changes: 6 additions & 6 deletions src/lexmachina/docs/AlertsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Name | Type | Description | Notes

### Authorization

[JwtAccessBearer](../README.md#JwtAccessBearer)
[JwtAccessBearer](../../../README.md#JwtAccessBearer)

### HTTP request headers

Expand All @@ -95,7 +95,7 @@ Name | Type | Description | Notes
**404** | Not found | - |
**422** | Error - 422 | - |

[[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)
[[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)

# **get_alert_runs**
> AlertRunData get_alert_runs(alert_id)
Expand Down Expand Up @@ -164,7 +164,7 @@ Name | Type | Description | Notes

### Authorization

[JwtAccessBearer](../README.md#JwtAccessBearer)
[JwtAccessBearer](../../../README.md#JwtAccessBearer)

### HTTP request headers

Expand All @@ -180,7 +180,7 @@ Name | Type | Description | Notes
**401** | Invalid or expired token | - |
**422** | Error - 422 | - |

[[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)
[[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)

# **get_alerts**
> List[Alert] get_alerts()
Expand Down Expand Up @@ -241,7 +241,7 @@ This endpoint does not need any parameter.

### Authorization

[JwtAccessBearer](../README.md#JwtAccessBearer)
[JwtAccessBearer](../../../README.md#JwtAccessBearer)

### HTTP request headers

Expand All @@ -257,5 +257,5 @@ This endpoint does not need any parameter.
**404** | Not found | - |
**422** | Error - 422 | - |

[[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)
[[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)

2 changes: 1 addition & 1 deletion src/lexmachina/docs/Amount.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ amount_dict = amount_instance.to_dict()
# create an instance of Amount from a dict
amount_from_dict = Amount.from_dict(amount_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/Amountperdefendant.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ amountperdefendant_dict = amountperdefendant_instance.to_dict()
# create an instance of Amountperdefendant from a dict
amountperdefendant_from_dict = Amountperdefendant.from_dict(amountperdefendant_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AnalyticTypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

* `LAWFIRMCOUNTBYROLE` (value: `'LawFirmCountByRole'`)

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


8 changes: 4 additions & 4 deletions src/lexmachina/docs/AnalyticsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Name | Type | Description | Notes

### Authorization

[JwtAccessBearer](../README.md#JwtAccessBearer)
[JwtAccessBearer](../../../README.md#JwtAccessBearer)

### HTTP request headers

Expand All @@ -92,7 +92,7 @@ Name | Type | Description | Notes
**404** | Not found | - |
**422** | Error - 422 | - |

[[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)
[[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)

# **analyze_district_cases_from_query**
> CaseAnalyticResult analyze_district_cases_from_query(district_case_analytic_from_query)
Expand Down Expand Up @@ -156,7 +156,7 @@ Name | Type | Description | Notes

### Authorization

[JwtAccessBearer](../README.md#JwtAccessBearer)
[JwtAccessBearer](../../../README.md#JwtAccessBearer)

### HTTP request headers

Expand All @@ -172,5 +172,5 @@ Name | Type | Description | Notes
**404** | Not found | - |
**422** | Error - 422 | - |

[[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)
[[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)

2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsAttorneyFilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ appeals_attorney_filter_dict = appeals_attorney_filter_instance.to_dict()
# create an instance of AppealsAttorneyFilter from a dict
appeals_attorney_filter_from_dict = AppealsAttorneyFilter.from_dict(appeals_attorney_filter_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ appeals_case_dict = appeals_case_instance.to_dict()
# create an instance of AppealsCase from a dict
appeals_case_from_dict = AppealsCase.from_dict(appeals_case_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsCaseData.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ appeals_case_data_dict = appeals_case_data_instance.to_dict()
# create an instance of AppealsCaseData from a dict
appeals_case_data_from_dict = AppealsCaseData.from_dict(appeals_case_data_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsCaseDates.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ appeals_case_dates_dict = appeals_case_dates_instance.to_dict()
# create an instance of AppealsCaseDates from a dict
appeals_case_dates_from_dict = AppealsCaseDates.from_dict(appeals_case_dates_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsCaseDatesFilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ appeals_case_dates_filter_dict = appeals_case_dates_filter_instance.to_dict()
# create an instance of AppealsCaseDatesFilter from a dict
appeals_case_dates_filter_from_dict = AppealsCaseDatesFilter.from_dict(appeals_case_dates_filter_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsCaseQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ appeals_case_query_dict = appeals_case_query_instance.to_dict()
# create an instance of AppealsCaseQuery from a dict
appeals_case_query_from_dict = AppealsCaseQuery.from_dict(appeals_case_query_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


2 changes: 1 addition & 1 deletion src/lexmachina/docs/AppealsCaseQueryResult.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ appeals_case_query_result_dict = appeals_case_query_result_instance.to_dict()
# create an instance of AppealsCaseQueryResult from a dict
appeals_case_query_result_from_dict = AppealsCaseQueryResult.from_dict(appeals_case_query_result_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md)


Loading
Loading