File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Fortnox API Swagger
7
7
This SDK is automatically generated by the [ Swagger Codegen] ( https://github.com/swagger-api/swagger-codegen ) project:
8
8
9
9
- API version: 3
10
- - Package version: 2.0 .0
10
+ - Package version: 2.1 .0
11
11
- Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
13
13
## Installation
@@ -23,15 +23,15 @@ gem build standout_fortnox.gemspec
23
23
Then either install the gem locally:
24
24
25
25
``` shell
26
- gem install ./standout_fortnox-2.0 .0.gem
26
+ gem install ./standout_fortnox-2.1 .0.gem
27
27
```
28
- (for development, run ` gem install --dev ./standout_fortnox-2.0 .0.gem ` to install the development dependencies)
28
+ (for development, run ` gem install --dev ./standout_fortnox-2.1 .0.gem ` to install the development dependencies)
29
29
30
30
or publish the gem to a gem hosting service, e.g. [ RubyGems] ( https://rubygems.org/ ) .
31
31
32
32
Finally add this to the Gemfile:
33
33
34
- gem 'standout_fortnox', '~> 2.0 .0'
34
+ gem 'standout_fortnox', '~> 2.1 .0'
35
35
36
36
### Install from Git
37
37
Original file line number Diff line number Diff line change @@ -223,8 +223,8 @@ def list_invalid_properties
223
223
invalid_properties . push ( 'invalid value for "article_number", the character length must be smaller than or equal to 50.' )
224
224
end
225
225
226
- if !@description . nil? && @description . to_s . length > 50
227
- invalid_properties . push ( 'invalid value for "description", the character length must be smaller than or equal to 50 .' )
226
+ if !@description . nil? && @description . to_s . length > 255
227
+ invalid_properties . push ( 'invalid value for "description", the character length must be smaller than or equal to 255 .' )
228
228
end
229
229
230
230
invalid_properties
@@ -251,8 +251,8 @@ def article_number=(article_number)
251
251
# Custom attribute writer method with validation
252
252
# @param [Object] description Value to be assigned
253
253
def description = ( description )
254
- if !description . nil? && description . to_s . length > 50
255
- fail ArgumentError , 'invalid value for "description", the character length must be smaller than or equal to 50 .'
254
+ if !description . nil? && description . to_s . length > 255
255
+ fail ArgumentError , 'invalid value for "description", the character length must be smaller than or equal to 255 .'
256
256
end
257
257
258
258
@description = description
Original file line number Diff line number Diff line change 11
11
=end
12
12
13
13
module StandoutFortnox
14
- VERSION = '2.0 .0'
14
+ VERSION = '2.1 .0'
15
15
end
You can’t perform that action at this time.
0 commit comments