Skip to content

Commit

Permalink
new fields for version v2.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-goebel committed Mar 19, 2024
1 parent 049e011 commit e65262b
Show file tree
Hide file tree
Showing 70 changed files with 246 additions and 70 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The Eliona REST API enables unified access to the resources and data of an Elion
## Overview
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.

- API version: 2.6.7
- API version: 2.6.8
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen
For more information, please visit [https://eliona.io](https://eliona.io)
Expand Down
2 changes: 1 addition & 1 deletion api_agents.go

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

2 changes: 1 addition & 1 deletion api_aggregations.go

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

2 changes: 1 addition & 1 deletion api_alarm_rules.go

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

2 changes: 1 addition & 1 deletion api_alarms.go

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

2 changes: 1 addition & 1 deletion api_apps.go

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

2 changes: 1 addition & 1 deletion api_asset_types.go

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

2 changes: 1 addition & 1 deletion api_assets.go

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

2 changes: 1 addition & 1 deletion api_communication.go

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

2 changes: 1 addition & 1 deletion api_dashboards.go

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

2 changes: 1 addition & 1 deletion api_data.go

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

2 changes: 1 addition & 1 deletion api_nodes.go

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

2 changes: 1 addition & 1 deletion api_projects.go

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

2 changes: 1 addition & 1 deletion api_qr_codes.go

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

2 changes: 1 addition & 1 deletion api_tags.go

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

2 changes: 1 addition & 1 deletion api_users.go

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

2 changes: 1 addition & 1 deletion api_version.go

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

2 changes: 1 addition & 1 deletion api_widgets.go

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

2 changes: 1 addition & 1 deletion api_widgets_types.go

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

4 changes: 2 additions & 2 deletions client.go

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

2 changes: 1 addition & 1 deletion configuration.go

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

36 changes: 36 additions & 0 deletions docs/AssetTypeAttribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Name | Type | Description | Notes
**Ar** | Pointer to **NullableBool** | Should the attribute be displayed in AR | [optional] [default to false]
**Sequence** | Pointer to **NullableInt64** | Sequence in AR display | [optional]
**Virtual** | Pointer to **NullableBool** | Is the attribute virtual or not | [optional]
**Formula** | Pointer to **NullableString** | calculation rule to calculate the value for this attribute | [optional]
**Scale** | Pointer to **NullableFloat32** | value scale | [optional]
**Zero** | Pointer to **NullableFloat32** | value scale | [optional]
**Map** | Pointer to **[]map[string]interface{}** | list of mapping between value and custom text | [optional]
Expand Down Expand Up @@ -555,6 +556,41 @@ HasVirtual returns a boolean if a field has been set.
`func (o *AssetTypeAttribute) UnsetVirtual()`

UnsetVirtual ensures that no value is present for Virtual, not even an explicit nil
### GetFormula

`func (o *AssetTypeAttribute) GetFormula() string`

GetFormula returns the Formula field if non-nil, zero value otherwise.

### GetFormulaOk

`func (o *AssetTypeAttribute) GetFormulaOk() (*string, bool)`

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

### SetFormula

`func (o *AssetTypeAttribute) SetFormula(v string)`

SetFormula sets Formula field to given value.

### HasFormula

`func (o *AssetTypeAttribute) HasFormula() bool`

HasFormula returns a boolean if a field has been set.

### SetFormulaNil

`func (o *AssetTypeAttribute) SetFormulaNil(b bool)`

SetFormulaNil sets the value for Formula to be an explicit nil

### UnsetFormula
`func (o *AssetTypeAttribute) UnsetFormula()`

UnsetFormula ensures that no value is present for Formula, not even an explicit nil
### GetScale

`func (o *AssetTypeAttribute) GetScale() float32`
Expand Down
36 changes: 36 additions & 0 deletions docs/Dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**UserId** | **string** | ID of the user who owns the dashboard |
**Sequence** | Pointer to **NullableInt32** | The sequence of the dashboard | [optional] [default to 0]
**Widgets** | Pointer to [**[]Widget**](Widget.md) | List of widgets on this dashboard (order matches the order of widgets on the dashboard) | [optional]
**Public** | Pointer to **NullableBool** | Is the dashboard public and not bound to a dedicated user | [optional] [default to false]

## Methods

Expand Down Expand Up @@ -195,6 +196,41 @@ HasWidgets returns a boolean if a field has been set.
`func (o *Dashboard) UnsetWidgets()`

UnsetWidgets ensures that no value is present for Widgets, not even an explicit nil
### GetPublic

`func (o *Dashboard) GetPublic() bool`

GetPublic returns the Public field if non-nil, zero value otherwise.

### GetPublicOk

`func (o *Dashboard) GetPublicOk() (*bool, bool)`

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

### SetPublic

`func (o *Dashboard) SetPublic(v bool)`

SetPublic sets Public field to given value.

### HasPublic

`func (o *Dashboard) HasPublic() bool`

HasPublic returns a boolean if a field has been set.

### SetPublicNil

`func (o *Dashboard) SetPublicNil(b bool)`

SetPublicNil sets the value for Public to be an explicit nil

### UnsetPublic
`func (o *Dashboard) UnsetPublic()`

UnsetPublic ensures that no value is present for Public, not even an explicit nil

[[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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/eliona-smart-building-assistant/go-eliona-api-client/v2

go 1.18

require github.com/eliona-smart-building-assistant/go-utils v1.0.62
require github.com/eliona-smart-building-assistant/go-utils v1.1.0
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/eliona-smart-building-assistant/go-utils v1.0.62 h1:ZJQLV4JJGYb3vcJJTbQkuwEG1Jg3mkNDXDvnwmp+RHs=
github.com/eliona-smart-building-assistant/go-utils v1.0.62/go.mod h1:rcRDJItD62tXkniILeEWE0LpHHitfDJbJzIDsw71AfE=
github.com/eliona-smart-building-assistant/go-utils v1.1.0 h1:vxo3JknOj7LfQ134y7X2MNJG3mgO+7snEMac/FZhprA=
github.com/eliona-smart-building-assistant/go-utils v1.1.0/go.mod h1:rcRDJItD62tXkniILeEWE0LpHHitfDJbJzIDsw71AfE=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
2 changes: 1 addition & 1 deletion model_agent.go

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

2 changes: 1 addition & 1 deletion model_agent_class.go

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

2 changes: 1 addition & 1 deletion model_agent_device.go

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

2 changes: 1 addition & 1 deletion model_agent_device_general.go

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

2 changes: 1 addition & 1 deletion model_agent_device_mapping.go

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

2 changes: 1 addition & 1 deletion model_agent_device_mapping_general.go

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

2 changes: 1 addition & 1 deletion model_aggregation.go

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

2 changes: 1 addition & 1 deletion model_alarm.go

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

2 changes: 1 addition & 1 deletion model_alarm_listen.go

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

Loading

0 comments on commit e65262b

Please sign in to comment.