Skip to content

Commit

Permalink
fix: add missing language profile id to ImportListModel
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuochi committed Jan 5, 2023
1 parent 45a1301 commit dce6273
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sonarr/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4279,7 +4279,7 @@ paths:
- SeriesImport
/api/v3/series/lookup:
get:
operationId: GetSeriesLookup
operationId: ListSeriesLookup
parameters:
- explode: true
in: query
Expand Down Expand Up @@ -11209,6 +11209,7 @@ components:
implementationName: implementationName
rootFolderPath: rootFolderPath
implementation: implementation
languageProfileId: 5
message:
message: message
type: null
Expand Down Expand Up @@ -11331,6 +11332,9 @@ components:
listOrder:
format: int32
type: integer
languageProfileId:
format: int32
type: integer
type: object
ImportListType:
enum:
Expand Down
26 changes: 26 additions & 0 deletions sonarr/docs/ImportListResource.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Name | Type | Description | Notes
**SeasonFolder** | Pointer to **bool** | | [optional]
**ListType** | Pointer to [**ImportListType**](ImportListType.md) | | [optional]
**ListOrder** | Pointer to **int32** | | [optional]
**LanguageProfileId** | Pointer to **int32** | | [optional]

## Methods

Expand Down Expand Up @@ -582,6 +583,31 @@ SetListOrder sets ListOrder field to given value.

HasListOrder returns a boolean if a field has been set.

### GetLanguageProfileId

`func (o *ImportListResource) GetLanguageProfileId() int32`

GetLanguageProfileId returns the LanguageProfileId field if non-nil, zero value otherwise.

### GetLanguageProfileIdOk

`func (o *ImportListResource) GetLanguageProfileIdOk() (*int32, bool)`

GetLanguageProfileIdOk returns a tuple with the LanguageProfileId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetLanguageProfileId

`func (o *ImportListResource) SetLanguageProfileId(v int32)`

SetLanguageProfileId sets LanguageProfileId field to given value.

### HasLanguageProfileId

`func (o *ImportListResource) HasLanguageProfileId() bool`

HasLanguageProfileId returns a boolean if a field has been set.


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

Expand Down
36 changes: 36 additions & 0 deletions sonarr/model_import_list_resource.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dce6273

Please sign in to comment.