-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### What's Changed --- ##### `GET` /admin/workers/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json`
- Loading branch information
1 parent
cfd4614
commit a4252b0
Showing
10 changed files
with
313 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# Worker | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**WorkerId** | **string** | | | ||
**Version** | **string** | | | ||
**VersionMatching** | **bool** | | | ||
|
||
## Methods | ||
|
||
### NewWorker | ||
|
||
`func NewWorker(workerId string, version string, versionMatching bool, ) *Worker` | ||
|
||
NewWorker instantiates a new Worker object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewWorkerWithDefaults | ||
|
||
`func NewWorkerWithDefaults() *Worker` | ||
|
||
NewWorkerWithDefaults instantiates a new Worker object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetWorkerId | ||
|
||
`func (o *Worker) GetWorkerId() string` | ||
|
||
GetWorkerId returns the WorkerId field if non-nil, zero value otherwise. | ||
|
||
### GetWorkerIdOk | ||
|
||
`func (o *Worker) GetWorkerIdOk() (*string, bool)` | ||
|
||
GetWorkerIdOk returns a tuple with the WorkerId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetWorkerId | ||
|
||
`func (o *Worker) SetWorkerId(v string)` | ||
|
||
SetWorkerId sets WorkerId field to given value. | ||
|
||
|
||
### GetVersion | ||
|
||
`func (o *Worker) GetVersion() string` | ||
|
||
GetVersion returns the Version field if non-nil, zero value otherwise. | ||
|
||
### GetVersionOk | ||
|
||
`func (o *Worker) GetVersionOk() (*string, bool)` | ||
|
||
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetVersion | ||
|
||
`func (o *Worker) SetVersion(v string)` | ||
|
||
SetVersion sets Version field to given value. | ||
|
||
|
||
### GetVersionMatching | ||
|
||
`func (o *Worker) GetVersionMatching() bool` | ||
|
||
GetVersionMatching returns the VersionMatching field if non-nil, zero value otherwise. | ||
|
||
### GetVersionMatchingOk | ||
|
||
`func (o *Worker) GetVersionMatchingOk() (*bool, bool)` | ||
|
||
GetVersionMatchingOk returns a tuple with the VersionMatching field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetVersionMatching | ||
|
||
`func (o *Worker) SetVersionMatching(v bool)` | ||
|
||
SetVersionMatching sets VersionMatching field to given value. | ||
|
||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.