Skip to content

Commit

Permalink
Run scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudio Loureiro committed Jun 3, 2020
1 parent 1c3eac5 commit 2bf4536
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export({{{classname}}})
{{#apis}}
export({{{classname}}})
{{/apis}}
{{/apiInfo}}
{{/apiInfo}}
2 changes: 1 addition & 1 deletion samples/client/petstore/r_test/.swagger-codegen/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.3-SNAPSHOT
2.4.15-SNAPSHOT
3 changes: 3 additions & 0 deletions samples/client/petstore/r_test/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ export(Order)
export(Pet)
export(Tag)
export(User)
export(PetApi)
export(StoreApi)
export(UserApi)
2 changes: 1 addition & 1 deletion samples/client/petstore/r_test/R/ApiResponse.r
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ ApiResponse <- R6::R6Class(
toJSONString = function() {
sprintf(
'{
"code": %s,
"code": %d,
"type": %s,
"message": %s
}',
Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/r_test/R/Order.r
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Order <- R6::R6Class(
'{
"id": %d,
"petId": %d,
"quantity": %s,
"quantity": %d,
"shipDate": %s,
"status": %s,
"complete": %s
Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/r_test/R/User.r
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ User <- R6::R6Class(
"email": %s,
"password": %s,
"phone": %s,
"userStatus": %s
"userStatus": %d
}',
self$`id`,
self$`username`,
Expand Down

0 comments on commit 2bf4536

Please sign in to comment.