Skip to content

Commit

Permalink
fix(model/driver): mark fields as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
stakach committed Sep 5, 2024
1 parent 67b39ed commit 4560da9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/placeos/api/models/driver.cr
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ module PlaceOS::Client::API::Models
getter id : String

getter name : String
getter description : String
getter description : String?

getter default_uri : String
getter default_port : Int32
getter default_uri : String?
getter default_port : Int32?

getter role : Int32

Expand Down

0 comments on commit 4560da9

Please sign in to comment.